/* ============================================================
   ACTUALITÉS PAGE — Styles spécifiques
   ============================================================ */

/* Header override */
.header--scrolled-init .nav-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.header--scrolled-init .logo {
    color: var(--text-dark);
}

.header--scrolled-init .nav-links a {
    color: var(--text-dark);
}

.header--scrolled-init .menu-toggle span {
    background: var(--text-dark);
}

.nav-active {
    position: relative;
}

.nav-active::after {
    width: 100% !important;
    background: var(--cyan-electric) !important;
}

/* ============================================================
   HERO — La Vie du Club
   ============================================================ */
.actu-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: #3a2a1a;
}

.actu-hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #8B6914 0%, #6B4E12 40%, #3a2a1a 100%);
    z-index: 0;
}

.actu-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.45;
}

.actu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58, 42, 26, 0.3) 0%, rgba(58, 42, 26, 0.75) 100%);
    z-index: 2;
}

.actu-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 620px;
    margin: 0 auto;
}

.actu-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-style: italic;
}

.actu-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================================================
   COMMON — Tag & Read More
   ============================================================ */
.actu-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.actu-tag--yellow {
    background: var(--golden-yellow);
    color: var(--text-dark);
}

.actu-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--golden-yellow);
    transition: var(--transition);
    margin-top: 8px;
}

.actu-read-more:hover {
    color: #e6c000;
    gap: 10px;
}

.actu-read-more svg {
    fill: currentColor;
}

/* ============================================================
   ARTICLE VEDETTE — Featured Article
   ============================================================ */
.actu-featured-section {
    padding: 80px 0 40px;
    background: var(--white);
}

.actu-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.actu-featured-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, #e0e7ef 0%, #c8d6e5 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.actu-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.actu-featured-body h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.actu-featured-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   GRILLE D'ACTUALITÉS — 3 Cards
   ============================================================ */
.actu-grid-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.actu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.actu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.actu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.actu-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #e0e7ef 0%, #c8d6e5 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: var(--transition-slow);
}

.actu-card:hover .actu-card-img img {
    transform: scale(1.05);
}

.actu-card-body {
    padding: 24px;
}

.actu-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.actu-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   ARTICLE SECONDAIRE — Thumbnails + Text
   ============================================================ */
.actu-secondary-section {
    padding: 0 0 80px;
    background: var(--white);
}

.actu-secondary {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.actu-secondary-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.actu-secondary-thumb {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(145deg, #e0e7ef 0%, #c8d6e5 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actu-secondary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.actu-secondary-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-style: italic;
}

.actu-secondary-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .actu-featured {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .actu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .actu-hero {
        padding: 140px 0 60px;
    }
}

@media (max-width: 600px) {
    .actu-hero {
        padding: 120px 0 48px;
    }

    .actu-hero-content h1 {
        font-size: 1.8rem;
    }

    .actu-grid {
        grid-template-columns: 1fr;
    }

    .actu-secondary {
        padding: 20px;
    }

    .actu-secondary-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .actu-featured-body h2 {
        font-size: 1.3rem;
    }

    .actu-card-body {
        padding: 16px;
    }
}