.featured-bloc {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.featured-bloc .featured-element {
    position: relative;
    flex-basis: 33%;
    box-sizing: border-box;
    width: 259px;
    height: 40vh;
    padding: 10px;
    min-height: 300px;
    -ms-flex: auto;
    margin-bottom: 20px;
}

.featured-bloc .featured-element.resort {
    flex-basis: 16%;
}

.burger-menu .featured-bloc .featured-element.resort {
        flex-basis: 33.33%;
    }

@media(max-width:1333px) {
    .featured-bloc .featured-element,
    .featured-bloc .featured-element.resort {
        flex-basis: 33.33%;
    }
}

@media(max-width:1073px) {
    .featured-bloc .featured-element,
    .featured-bloc .featured-element.resort {
        flex-basis: 33.33%;
    }
}

@media(max-width:815px) {
    .featured-bloc .featured-element,
    .featured-bloc .featured-element.resort {
        flex-basis: 50%;
    }
}

@media(max-width:555px) {
    .featured-bloc .featured-element,
    .featured-bloc .featured-element.resort {
        flex-basis: 100%;
    }
}

.featured-bloc .featured-element .wrapping-link {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: currentColor;
}

.featured-bloc .featured-element .content-wrapper {
    z-index: 0;
    position: relative;
    box-sizing: initial;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    transition: 250ms cubic-bezier(0.4,0,0.2,1);
}


.featured-bloc .featured-element.resort:nth-child(odd) {
    margin-top: 25px;
    margin-bottom: -45px;
}

.featured-bloc .featured-element:hover .content-wrapper {
    z-index: 1;
    transform: translateY(-25px) scale(1.05);
}

.featured-bloc .featured-element img {
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% + 200px);
    height: calc(100% + 20px);
    max-width: unset;
    opacity: 0.85;
    transition: transform 250ms;
    object-fit: cover;
}

.featured-bloc .featured-element:hover .content-wrapper img {
    opacity: 1;
    transition: transform 8000ms;
    transform: translateX(50px);
}

.featured-bloc .featured-element .img-overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(rgba(0, 0, 0, 0) 20%, var(--alternate-gradient-end) 90%);
}

.featured-bloc .featured-element .content {
    z-index: 3;
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: var(--alternate-color-text);
    pointer-events: none;
    box-sizing: unset;
}

.featured-bloc .featured-element .content a {
    pointer-events: initial;
}

main .featured-bloc .featured-element .content a {
    display: inline-block;
    z-index: 3;
    color: var(--alternate-color-link);
    transition: 250ms cubic-bezier(0.4,0,0.2,1);
}

main .featured-bloc .featured-element .content a:hover,
main .featured-bloc .featured-element h3 a {
    color: var(--alternate-color-link-hover);
}

main .featured-bloc .featured-element .content a:hover {
    transform: translateX(5px);
}

main .featured-bloc .featured-element h3 {
    font-size: calc(12px + 0.8vw);
    color: var(--alternate-color-title);
}

.infographie {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.element-infographie {
    display: block;
    position: relative;
    flex: 1 1 0%;
    padding: 10px 30px;
}

.infographie + .infographie {
    margin-top: 20px;
}

.element-infographie + .element-infographie {
    border-left: 1px solid var(--alternate-border);
}

.element-infographie h4 {
    margin-bottom: 0 !important;
    font-size: 0.95em !important;
}

.element-infographie p {
    font-size: 1.15em !important;
    font-weight: bold !important;
}

.element-infographie .nb-post {
    font-size: 0.7em;
    opacity: 0.8;
}

.element-infographie .nb-post:after {
    content: '/';
}

/* MAP */

.map-loading {
    display: block;
    position: relative;
    width: 100%;
    height: 450px;
    text-align: center;
    vertical-align: middle;
    background-image: var(--fallback-featured-url);
    background-position: center center;
    background-size: cover;
}

.map-loading h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--alternate-color-title);
    transform: translate(-50%, -50%);
}

/* Liste de post / cpt */

/*Sur les pages de lieux */
.post-list.Lieu {
    display: flex;
    flex-wrap: wrap;
}

.post-view {
    display: inline-block;
    position: relative;
    margin: 0 0 10px 0;
    border-radius: 5px;
    background: var(--main-background);
    box-shadow: 0 10px 60px -15px rgba(0, 0, 0, 0.33);
    margin: 1em;
    width: 340px;
}

.post-view small {
    font-size: 0.65em;
    line-height: 1.45em;
}

.post-view img {
    float: left;
    width: 80px;
    margin: -10px 0 0 -10px;
    border-radius: 5px !important;
}

.post-view h4 {
    margin-top: 0;
    margin-bottom: 0;
}

.post-view .header-content {
    float: right;
    width: calc(100% - 70px);
    padding: 20px 20px 0 20px;
}

.post-view .content {
    float: left;
    width: 100%;
    padding: 0 20px;
}

.post-view .content p {
    font-size: 0.8em;
    line-height: 1.45em;
}

/*breadcrumbs-dgi-lieux*/

ul.breadcrumbs-dgi-lieux {
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

ul.breadcrumbs-dgi-lieux li {
    display: inline-block;
}

ul.breadcrumbs-dgi-lieux li + li {
    position: relative;
    padding-left: 10px;
}

ul.breadcrumbs-dgi-lieux li + li:before {
    content: '|';
    position: absolute;
    left: 0;
}




/* Blocs de liste d'éléments */
.list-dgi-entite {
    background: var(--main-background);
    border-radius: 5px;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.list-dgi-entite ul {
    column-count: 4;
    column-gap: 1em;
    padding: 0;
    column-rule: 1px solid var(--main-border);
}

@media(max-width:768px) {
.list-dgi-entite ul {
    column-count: 2;
}
}

@media(max-width:360px) {
.list-dgi-entite ul {
    column-count: 1;
}
}

.list-dgi-entite li {
    display: block;
    padding: 0;
    margin-bottom: 10px;

}

.list-dgi-entite a {
    display: inline-block;
    padding: 5px 20px;
    line-height: 1.25em;
    transition: 150ms ease-in;
}

.list-dgi-entite a:hover {
    transform: translateX(5px)
}