* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bold {
    font-weight: 600;
}

.has-global-padding {
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #FEF5E4;
}

.has-global-padding .bloc_01_defilement_global {
    padding: 0;
    margin: 0;
}

div .ds_blog_01 {
    margin: 0;
    padding: 0;
}

.ds_blog_01 {
    position: relative;
    overflow: hidden;
    height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    width: 100%;
    background-position-y: bottom;
    background-size: cover;
    padding: 0;
}

/* texture legere */
.ds_blog_01::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0) 35%),
        radial-gradient(circle at 20% 80%,
            rgba(255, 255, 255, 0.05) 0,
            rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}


.ds_blog_01_global {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

/* COLONNE VISUEL */
.ds_blog_01_bouteille {
    position: relative;
    min-height: 430px;
}

.ds_blog_01_bouteille_avant {
    position: absolute;
    left: 300px;
    top: 36px;
    width: 240px;
    transform: rotate(-1deg);
    filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.25));
    z-index: 3;
}

/* COLONNE TEXTE */
.ds_blog_01_contenu {
    max-width: 560px;
    z-index: 5;
}

.ds_blog_01_titre .blanc {
    color: #fff;
    display: block;
}

.ds_blog_01_titre .noir {
    color: #000;
    display: block;
}

.ds_blog_01_contenu .ds_blog_01_text {
    font-family: 'roc-grotesk', sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    letter-spacing: 0;
    margin: 0;
    text-transform: initial;
}

.ds_blog_01_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 20px;
}

.ds_blog_01_btn {
    font-size: 16px;
    line-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ds_blog_01_btn:hover {
    transform: translatex(5px);
    opacity: 0.95;
}


/*bandeau defilant*/
.bloc_01_defilement_global {
    position: relative;
    padding: 50px 0;
}

.bloc_01_defilement_global img {
    width: 100%;
}

.bloc_01_defilement_bandeau {
    position: absolute;
    width: 100%;
    background-color: #00C5F1;
    overflow: hidden;
    top: -48px;
    transform: rotate(-1deg);
    z-index: 2;
}

.defilement {
    display: flex;
    width: max-content;
    animation: defilement 30s linear infinite;
}

.liste_defilante {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
}

.liste_defilante p {
    flex-shrink: 0;
    margin: 0;
    padding: 18px 40px;
    font-family: 'BaseNeue-WideBoldOblique', sans-serif;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

@keyframes defilement {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 980px) {
    /*  .ds_blog_01_global {
        grid-template-columns: 1fr;
        padding: 40px 22px 65px;
    }

    .ds_blog_01_bouteille {
        min-height: 360px;
        order: 1;
    }

    .ds_blog_01_contenu {
        order: 2;
    }

    .ds_blog_01_bouteille_avant {
        left: 50%;
        top: -53px;
        width: 260px;
        transform: translateX(-50%) rotate(-1deg);
    }

    .ds_blog_01_bouteille_arriere {
        left: -142px;
        top: 75px;
        width: 95px;
        transform: rotate(-12deg);
    }

}
*/
    @media (max-width: 580px) {
        .ds_blog_01_bouteille_avant {
            top: 16px;
            width: 156px;
        }

        .ds_blog_01 {
            min-height: auto;
        }

        .ds_blog_01_bouteille {
            min-height: 300px;
            left: -50%;
        }

        .ds_blog_01_titre {
            font-size: 38px;
            line-height: 38px;
        }

        .ds_blog_01_text {
            font-size: 16px;
            line-height: 20px;
        }

        .ds_blog_01_actions {
            flex-direction: column;
            align-items: flex-start;
        }

        /*inversement image et texte*/
        .ds_blog_01_global {
            display: flex;
        }

        .ds_blog_01_contenu {
            display: block;
        }

        .bloc_01_defilement_bandeau {
            top: -50px;
        }

        .liste_defilante p {
            font-size: 26px;
            line-height: 26px;
        }
    }