.actualites-wrapper {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111;
}

.actus-container {
    position: relative;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.actu-slide {
    display: flex;
}

.actu-image-col {
    flex: 1 1 55%;
    position: relative;
    min-height: 400px;
}

.actu-image-col img.-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bandeau titre superposé sur l'image (effet visuel de l'image) */
.badge-title {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: #257d74; /* Couleur type turquoise/sarcelle */
    color: #fff;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 80%;
}

.actu-content-col {
    flex: 1 1 45%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.actu-content-col h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: none; /* Masqué car déjà présent dans le bandeau image, ou à afficher selon préférence */
}

.excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.dates {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-lire {
    display: inline-block;
    background: #00b0ff; /* Bleu vif type capture */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-lire:hover {
    background: #0091ea;
}

/* Barre de navigation inférieure */
.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    margin-top: 15px;
}

.all-news {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plus-icon {
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.dot.active {
    background: #00b0ff;
    opacity: 1;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .actu-slide {
        flex-direction: column;
    }
    .actu-image-col {
        min-height: 250px;
    }
    .badge-title {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
    .actu-content-col {
        padding: 30px 20px;
    }
}