/* Conteneur principal */
.club-container {
    min-height: 361px;
    padding: 40px 15px 15px 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    gap: 12px;
}

/* Titres */
.titre-club {
    font-size: clamp(25px,2.778vw,40px);
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display';  
    text-align: center;  
}

.titre-club .text-copyright {
    line-height: 1.5;
}

.sous-titre-club {
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Playfair Display';
    font-size: 35px;
    font-style:italic;
    line-height: 0;
}

/* Conteneur des items - Disposition horizontale */
.container-item-club {
    position: static;
    bottom: 0;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    border-radius: 16px;
    z-index: 3;
}

/* Disposition horizontale des items */
.item-club-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 41px 10px 41px;
}

/* Style de la scrollbar pour WebKit */
.item-club-wrapper::-webkit-scrollbar {
    height: 6px;
}
.item-club-wrapper::-webkit-scrollbar-thumb {
    background-color: #E3B6A0;
    border-radius: 3px;
}

/* Items individuels */
.item-club {
    flex: 0 0 auto;
    display: flex;
    text-align: center;
    width: 90%;
    min-height: 200px;
    padding: 50px 17px;
    background: var(--clear-sand);
    border-radius: 16px;
    transition: transform 0.3s ease;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 0 10px;
}

.item-club:hover {
    transform: translateY(-5px);
}

/* Éléments des items */
.item-club-logo {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 69px;
    height: 69px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
    background-color: var(--dark-sand);
}

.item-club-logo img {
    width: 39px;
    height: 39px;
    object-fit: cover;
}

.item-club-titre {
    font-size: clamp(15px,1.111vw,16px);
    font-family: 'Inter bold';
    margin: 0px 0px;
    color: var(--title-color);
    line-height: 1.5;
}

.item-club-contenu {
    font-size: 15px;
    color: var(--title-color);
    font-family: 'Inter light';
}

.container-item-club .slick-track {
    padding-top: 50px;
}

.titre-club .text-copyright::after {
   top: unset;
}
.slick-initialized .item-club.slick-slide {
    display: flex;
}
/* Responsive */
@media screen and (min-width: 992px){
    .item-club-wrapper {
        flex-wrap: nowrap;
        padding: 10px;
    }

    .container-item-club {
        position: absolute;
        bottom: -25%;
        left: 49%;
        top: unset;
        transform: translateX(-50%);
        width: 95%;
    }
    .item-club {       
        width: calc(25% - 10px);
        margin-left: auto;
        margin-right: auto;
    }

    .titre-club {
        text-align: start;
    }

    .titre-club .text-copyright {
        line-height: 0.5;
    }

}
@media screen and (max-width: 991px) and (min-width: 768px){
    .container-item-club {
        width: 100%;
        position: static;
        transform: unset;
        margin-top: 35px;
    }
    .item-club {
        width: calc(48% - 20px);
    }
    .item-club-wrapper {
        gap: 50px 20px;
    }
    body .elementor-element.section-temoignages .e-con-inner {
        padding-top: 0;
    }
}
@media screen and (min-width: 768px){

    .item-club-titre {
        font-family: 'Inter semibold';
    }

    .club-container {
        min-height: 545px;
        padding: 130px 60px 60px 60px;
    }
}
