.newsroom-page{
    padding:60px 0;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:30px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.news-card:hover{
    transform:translateY(-5px);
}

.news-thumb img{
    width:100%;
    display:block;
}

.news-content{
    padding:20px;
}

.news-content h3{
    font-size:22px;
    margin-bottom:15px;
}

.read-more{
    display:inline-block;
    margin-top:15px;
    font-weight:600;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    gap:20px;
}

.newsroom-year-filter{
    min-width:180px;
    height:44px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-size:14px;
    cursor:pointer;
}