﻿/* Conteneur global */
.autosize-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.cbk_diaporama-produit-sm__main {
    display: flex;
    flex-direction: column;
    row-gap: 150px;
    align-items: center;
}

.cbk_diaporama-produit-sm__wrapper {
    width: 100%;
    display: flex;
    column-gap: 88px;
    align-items: center;
}

.cbk_diaporama-produit-sm__left-wrapper {
    width: 40%;
}

.cbk_diaporama-produit-sm__right-wrapper {
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.cbk_diaporama-produit-sm__wrapper--position-right {
    display: flex;
    flex-direction: row-reverse;
}

/* Conteneur d'images */
.cbk_diaporama-produit-sm__image-container {
    height: 373px;
}

.cbk_diaporama-produit-sm__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Conteneur de titre et textes */
.cbk_diaporama-produit-sm__content-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.cbk_diaporama-produit-sm__title {
    color: var(--blanc);
    font-size: 36px;
    font-weight: var(--medium);
}

.cbk_diaporama-produit-sm__content-wrapper p {
    color: #878787;
    font-weight: var(--medium);
    line-height: 1.5;
}

.cbk_diaporama-produit-sm__content-wrapper strong {
    color: var(--blanc);
}

.cbk_diaporama-produit-sm__content-wrapper a {
    color: var(--blanc);
    text-decoration: underline;
}

.cbk_diaporama-produit-sm__content-wrapper ul {
    display: flex;
    flex-direction: column;
}

.cbk_diaporama-produit-sm__content-wrapper li {
    color: var(--blanc);
    list-style: inside;
}
/* CTA */
.cbk_diaporama-produit-sm__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.14);
    width: 100%;
    max-width: 190px;
    transition: all 0.2s ease
}

    .cbk_diaporama-produit-sm__link:hover {
        background: #1D1D1F
    }

        .cbk_diaporama-produit-sm__link:hover .cbk_diaporama-produit-sm__text-link {
            color: white;
        }

.cbk_diaporama-produit-sm__text-link {
    color: #1D1D1F;
    font-weight: 500;
    width: fit-content;
}
@media screen and (max-width : 1920px) {
    .autosize-container {
        max-width: 1280px;
    }
}
@media screen and (max-width: 1000px) {
    .cbk_diaporama-produit-sm__main {
        row-gap: 75px;
    }

    .cbk_diaporama-produit-sm__wrapper {
        flex-direction: column-reverse;
        padding: 20px;
        row-gap: 30px;
    }

    .cbk_diaporama-produit-sm__left-wrapper, .cbk_diaporama-produit-sm__right-wrapper {
        width: 100%;
    }

    .cbk_diaporama-produit-sm__right-wrapper {
        row-gap: 30px;
    }

    .cbk_diaporama-produit-sm__image-container {
        height: 212px;
    }

    .cbk_diaporama-produit-sm__title {
        font-size: 24px;
    }

    .cbk_diaporama-produit-sm__content-wrapper p {
        font-size: 14px;
    }

    .cbk_diaporama-produit-sm__link {
        max-width: unset;
    }
}
