/* ================= HEADER ================= */


/* HERO */

.news-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../Media/Gallery/champs2.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
}

.hero-content p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.btn-primary {
    padding: 14px 30px;
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
}


/* GRID */

.gallery-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: .4s;
}

.gallery a:hover img {
    transform: scale(1.08);
    filter: brightness(70%);
}


/* RESPONSIVE */

@media(max-width:900px) {
    .news-hero {
        height: 80vh;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .news-hero {
        height: 70vh;
        padding: 0 18px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .btn-primary {
        padding: 12px 22px;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .gallery-container {
        margin: 40px auto;
    }
}