.ds_home_bloc_03 {
    padding: 50px 0;
    background-color: #FFFDF6;
    background-repeat: no-repeat;
    width: 100%;
    background-position-y: bottom;
    background-size: cover;
    height: fit-content;
    padding-bottom: 100px;
}

.ds_home_bloc_03_titre h2 {
    text-align: center;
}

.ds_home_bloc_03_titre span {
    color: #fff;
}

.ds_home_bloc_03_cartes {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 25px;
    padding: 20px 0;
    margin-left: 0;
    margin-right: 0;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: auto;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.ds_home_bloc_03_cartes::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.ds_home_bloc_03_cartes::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.ds_home_bloc_03_cartes::-webkit-scrollbar-track {
    max-height: 50%;
    height: 50%;
}

.ds_home_bloc_03_box_item {
    width: 350px;
    flex-shrink: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    min-width: 320px;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.ds_home_bloc_03_box_item:first-child {
    margin-left: 100px;
}

/* hover sur la carte */
.ds_home_bloc_03_box_item:hover {
    transform: rotate(3deg);
}

.ds_home_bloc_03_cartes.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.ds_home_bloc_03_cartes img,
.ds_home_bloc_03_cartes p,
.ds_home_bloc_03_cartes span {
    pointer-events: none;
}

.ds_home_bloc_03_box_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Dégradé sombre en bas + légère ambiance globale */
.ds_home_bloc_03_box_item .carte_overlay {
    border-radius: 25px;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.28) 38%,
            rgba(0, 0, 0, 0.08) 100%);
}

.ds_home_bloc_03_box_item .carte_content {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 2;
}

.carte_content p {
    font-family: "BaseNeue-WideBoldOblique", sans-serif;
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
}

.carte_content span {
    color: #ff7100;
}

@media (max-width: 580px) {
    .ds_home_bloc_03 {
        height: 800px;
    }

    .ds_home_bloc_03_titre h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .ds_home_bloc_03_cartes {
        gap: 10px;
        scrollbar-width: thin;
        scrollbar-color: #E6CEAD transparent;
        scrollbar-gutter: auto;

    }

    .ds_home_bloc_03_box_item {
        width: 300px;
    }

    .ds_home_bloc_03_box_item:first-child {
        margin-left: 10px;
    }

    /* hover sur la carte */
    .ds_home_bloc_03_box_item:hover {
        transform: rotate(0deg);
    }


}