:root {
    --swiper-theme-color: #20446c !important;
}

.flaveo-container {
    padding: 40px 0;
}

/* Slider principal */
.flaveo-main-slider{
    padding: 20px 0 50px 0;
    overflow: visible !important; /* IMPORTANT pour voir les slides dépasser */
}

.flaveo-thumbs-slider {

    overflow: visible !important; /* IMPORTANT pour voir les slides dépasser */
}

.flaveo-card {
    opacity: 0.4; /* Slide inactif */
}

.swiper-slide-active .flaveo-card {
    opacity: 1;
    transform: scale(1.05);
}

.flaveo-img-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Slider contrôleur */
.flaveo-thumbs-slider {
    user-select: none;
    margin-top: 80px;
}

.flaveo-thumbs-slider .swiper-slide {
    width: 150px !important;
    height: auto;
    text-align: center;
    cursor: pointer;
}

 .flaveo-thumbs-slider .swiper-slide .thumb-dot {
    background: #8fa1b5;
     width: 12px;
     height: 12px;
     border-radius: 50%;
     margin: 5px auto;
 }
.flaveo-thumbs-slider .swiper-slide-thumb-active .thumb-dot {
    outline: 4px solid #20446c;
    background: white;
}

.flaveo-thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
}

@media (min-width: 728px) {
    .flaveo-card {
        display: grid;
        gap: 1rem;
        grid-template-columns: 400px 1fr;
        padding: 0 8rem;
    }
}

.flaveo-date {
    font-weight: 900;
    font-size: 5rem;
    color: #20446c;
    opacity: 0.3;
    line-height: 1em;
}

.flaveo-text {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.flaveo-thumbs-slider:before {
    content: '';
    position: absolute;
    background: #20446c;
    height: 1px;
    top: 0.625rem;
    width: 100vw;
    opacity: 0.5;
    left: 50%;
    transform: translateX(-50%);
}