.cards-infos {
    background-color: var(--beige);
    overflow: hidden;
}

.cards-infos--container {
    padding: 56px 0;
}

@media screen and (min-width: 992px) {
    .cards-infos--container {
        padding: 104px 0;
    }
}

.cards-infos--layout {
    position: relative;
    display: grid;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .cards-infos--layout {
        grid-template-columns: minmax(150px, 550px) minmax(520px, 650px);
        align-items: center;
        gap: 64px;
    }
}

.cards-infos--content {
    min-width: 0;
}

@media screen and (min-width: 992px) {
    .cards-infos--content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}

.cards-infos--header {
    margin-bottom: 32px;
}

.cards-infos--header h2 {
    color: var(--brown);
    font-size: 32px;
    line-height: 0.95;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .cards-infos--header h2 {
        font-size: 40px;
    }
}

.cards-infos--header img {
    display: block;
    width: 112px;
    height: auto;
    margin-top: 6px;
}

@media screen and (min-width: 992px) {
    .cards-infos--header img {
        width: 200px;
    }
}

@media screen and (min-width: 992px) {
    .cards-infos--details {
        border-top: 1px solid rgba(53, 37, 25, 0.16);
        padding-top: 40px;
    }
}

.cards-infos--details .btn-more {
    max-width: calc(100% - 120px);
}

.cards-infos--name {
    color: var(--framb-mid);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

@media screen and (min-width: 992px) {
    .cards-infos--name {
        font-size: 26px;
    }
}

.cards-infos--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.cards-infos--tag {
    border: 1px solid rgba(53, 37, 25, 0.2);
    border-radius: 48px;
    padding: 4px 8px;
    background-color: #FFF;
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.14px;
}

.cards-infos--description {
    max-width: 360px;
    margin-top: 24px;
    color: var(--black);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.16px;
}

@media screen and (min-width: 992px) {
    .cards-infos--description {
        font-size: 18px;
        max-width: 405px;
    }
}

.cards-infos--link {
    margin-top: 24px;
}

.cards-infos--nav {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 99px;
    left: 24px;
    justify-content: space-between;
    pointer-events: none;
    max-width: 230px;
    margin: auto;
}

@media screen and (min-width: 992px) {
    .cards-infos--nav {
        right: unset;
        bottom: -12px;
        left: 420px;
    }
}

.cards-infos--nav button {
    pointer-events: auto;
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(274deg, #B47869 0%, #6E2919 123.98%);
    cursor: pointer;
}

.cards-infos--nav button::before {
    content: "";
    width: 14px;
    height: 14px;
    background: white;
}

.cards-infos--nav button.prev::before {
    -webkit-mask: url("../images/chevron-left.svg") no-repeat center;
    mask: url("../images/chevron-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cards-infos--nav button.next::before {
    -webkit-mask: url("../images/chevron-right.svg") no-repeat center;
    mask: url("../images/chevron-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cards-infos--slider {
    min-width: 0;
    overflow: visible;
    padding-block: 24px;
}

@media screen and (max-width: 991px) {
    .cards-infos--slider {
        margin-right: -24px;
        margin-left: -24px;
        padding: 0 24px;
    }
}

@media screen and (min-width: 992px) {
    .cards-infos--track {
        display: grid;
        grid-template-columns: repeat(3, 190px);
        grid-auto-rows: 249px;
        justify-content: center;
        gap: 16px;
        min-height: 408px;
        transform: translateY(-8px);
    }
}

.cards-infos--slide {
    width: 190px;
    height: 249px;
}

@media screen and (min-width: 992px) {
    .cards-infos--slide {
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .cards-infos--slide:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        transform: translateY(0);
    }

    .cards-infos--slide:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        transform: translateY(32px);
    }

    .cards-infos--slide:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
        transform: translateY(0);
    }

    .cards-infos--slide:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
        transform: translateY(-8px);
    }

    .cards-infos--slide:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
        transform: translateY(22px);
    }

    .cards-infos--slide:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
        transform: translateY(-8px);
    }
}

.cards-infos--card,
.cards-infos--placeholder {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cards-infos--card {
    border: 0;
    display: block;
    padding: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

.cards-infos--card img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cards-infos--slide.is-active .cards-infos--card,
.swiper-slide-active .cards-infos--card {
    opacity: 1;
    border: 4px solid var(--framb-mid);
}

.cards-infos--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #C66A60 0%, #A94B42 100%);
}

.cards-infos--placeholder img {
    width: 88px;
    height: auto;
}

@media screen and (max-width: 991px) {
    .cards-infos--slide-placeholder {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */


.acf-block-preview .cards-infos {
    background-color: var(--beige);
    overflow: hidden;
}

.acf-block-preview .cards-infos--container {
    padding: 56px 0;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--container {
        padding: 104px 0;
    }
}

.acf-block-preview .cards-infos--layout {
    position: relative;
    display: grid;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--layout {
        grid-template-columns: minmax(150px, 550px) minmax(520px, 650px);
        align-items: center;
        gap: 64px;
    }
}

.acf-block-preview .cards-infos--content {
    min-width: 0;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}

.acf-block-preview .cards-infos--header {
    margin-bottom: 32px;
}

.acf-block-preview .cards-infos--header h2 {
    color: var(--brown);
    font-size: 32px;
    line-height: 0.95;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--header h2 {
        font-size: 40px;
    }
}

.acf-block-preview .cards-infos--header img {
    display: block;
    width: 112px;
    height: auto;
    margin-top: 6px;
}


@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--header img {
        width: 200px;
    }
}


@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--details {
        border-top: 1px solid rgba(53, 37, 25, 0.16);
        padding-top: 40px;
    }
}

.acf-block-preview .cards-infos--details .btn-more {
    max-width: calc(100% - 120px);
}

.acf-block-preview .cards-infos--name {
    color: var(--framb-mid);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--name {
        font-size: 26px;
    }
}

.acf-block-preview .cards-infos--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.acf-block-preview .cards-infos--tag {
    border: 1px solid rgba(53, 37, 25, 0.2);
    border-radius: 48px;
    padding: 4px 8px;
    background-color: #FFF;
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.14px;
}

.acf-block-preview .cards-infos--description {
    max-width: 360px;
    margin-top: 24px;
    color: var(--black);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.16px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--description {
        font-size: 18px;
        max-width: 405px;
    }
}

.acf-block-preview .cards-infos--link {
    margin-top: 24px;
}

.acf-block-preview .cards-infos--nav {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 99px;
    left: 24px;
    justify-content: space-between;
    pointer-events: none;
    max-width: 230px;
    margin: auto;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--nav {
        right: unset;
        bottom: -12px;
        left: 420px;
    }
}

.acf-block-preview .cards-infos--nav button {
    pointer-events: auto;
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(274deg, #B47869 0%, #6E2919 123.98%);
    cursor: pointer;
}

.acf-block-preview .cards-infos--nav button::before {
    content: "";
    width: 14px;
    height: 14px;
    background: white;
}

.acf-block-preview .cards-infos--nav button.prev::before {
    -webkit-mask: url("../images/chevron-left.svg") no-repeat center;
    mask: url("../images/chevron-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.acf-block-preview .cards-infos--nav button.next::before {
    -webkit-mask: url("../images/chevron-right.svg") no-repeat center;
    mask: url("../images/chevron-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.acf-block-preview .cards-infos--slider {
    min-width: 0;
    overflow: visible;
    padding-block: 24px;
}

@media screen and (max-width: 991px) {
    .acf-block-preview .cards-infos--slider {
        margin-right: -24px;
        margin-left: -24px;
        padding: 0 24px;
    }
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--track {
        display: grid;
        grid-template-columns: repeat(3, 190px);
        grid-auto-rows: 249px;
        justify-content: center;
        gap: 16px;
        min-height: 408px;
        transform: translateY(-8px);
    }
}

.acf-block-preview .cards-infos--slide {
    width: 190px;
    height: 249px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .cards-infos--slide {
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .acf-block-preview .cards-infos--slide:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        transform: translateY(0);
    }

    .acf-block-preview .cards-infos--slide:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        transform: translateY(32px);
    }

    .acf-block-preview .cards-infos--slide:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
        transform: translateY(0);
    }

    .acf-block-preview .cards-infos--slide:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
        transform: translateY(-8px);
    }

    .acf-block-preview .cards-infos--slide:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
        transform: translateY(22px);
    }

    .acf-block-preview .cards-infos--slide:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
        transform: translateY(-8px);
    }
}

.acf-block-preview .cards-infos--card,
.acf-block-preview .cards-infos--placeholder {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.acf-block-preview .cards-infos--card {
    border: 0;
    display: block;
    padding: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

.acf-block-preview .cards-infos--card img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.acf-block-preview .cards-infos--slide.is-active .acf-block-preview .cards-infos--card,
.swiper-slide-active .acf-block-preview .cards-infos--card {
    opacity: 1;
    border: 4px solid var(--framb-mid);
}

.acf-block-preview .cards-infos--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #C66A60 0%, #A94B42 100%);
}

.acf-block-preview .cards-infos--placeholder img {
    width: 88px;
    height: auto;
}

@media screen and (max-width: 991px) {
    .acf-block-preview .cards-infos--slide-placeholder {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */