*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    color:#333;
}

/* HERO */

.news-hero{
    height:70vh;
    background:url("images/cwag4.jpeg") center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
    max-width:900px;
    padding:20px;
}

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

.badge-news{
    background:#F5C857;
    color:black;
    padding:10px 20px;
    border-radius:50px;
}

/* SECTIONS */

section{
    padding:80px 20px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:rgb(20,6,99);
    font-weight:700;
}

/* FEATURED */

.featured-card{
    display:flex;
    gap:30px;
    align-items:center;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:15px;
    overflow:hidden;
}

.featured-image img{
    width:500px;
    height:350px;
    object-fit:cover;
}

.featured-content{
    padding:30px;
}

.featured-content a{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    background:#F5C857;
    color:black;
    padding:10px 20px;
    border-radius:5px;
}

/* NEWS GRID */

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.news-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.news-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.news-content{
    padding:20px;
}

/* PRESS */

.release-list{
    max-width:900px;
    margin:auto;
}

.release-item{
    padding:25px;
    border-left:5px solid #F5C857;
    margin-bottom:15px;
    background:#f8f9fa;
}

/* ARTICLES */

.articles-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.article-card{
    padding:30px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:15px;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* NEWSLETTER */

.newsletter{
    background:rgb(20,6,99);
    color:white;
    text-align:center;
}

.newsletter form{
    margin-top:20px;
}

.newsletter input{
    width:350px;
    max-width:100%;
    padding:15px;
    border:none;
}

.newsletter button{
    padding:15px 25px;
    background:#F5C857;
    border:none;
}

/* MEDIA CONTACT */

.media-contact{
    text-align:center;
}

.media-contact a{
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background:#F5C857;
    color:black;
    text-decoration:none;
    border-radius:5px;
}

/* ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:.8s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */

@media(max-width:768px){

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

    .featured-card{
        flex-direction:column;
    }

    .featured-image img{
        width:100%;
    }
}