/* actualites-hero.css */
.news-hero-container {
    position: relative;
    width: 100%;
    min-height: 450px; /* Ajuste selon tes besoins */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Fond de secours */
}

/* La vidéo en arrière-plan */
.news-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay pour l'effet de flou et de contraste */
.news-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Assombrit un peu pour la lisibilité */
    backdrop-filter: blur(1px); /* Effet flou léger */
    -webkit-backdrop-filter: blur(1px);
    z-index: 2;
}

/* Contenu textuel par-dessus la vidéo */
.news-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    color: white;
}

.news-hero-title {
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
