/* ===== PAGE HERO ===== */

.page-hero{
background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('../assets/images/hero.jpg') center/cover;
padding:120px 20px;
text-align:center;
color:#fff;
}

.page-hero h1{
font-size:65px;
margin-bottom:25px;
font-weight:800;
}

.page-hero p{
font-size:26px;
line-height:2;
max-width:900px;
margin:auto;
}

/* ===== ANNOUNCEMENTS PAGE ===== */

.announcements-page{
padding:100px 0;
background:#f5f7fb;
}

.announcements-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

/* ===== CARD ===== */

.announcement-card-modern{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
display:flex;
flex-direction:column;
}

.announcement-card-modern:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.announcement-card-modern img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}

/* ===== INFO ===== */

.announcement-info{
padding:30px;
display:flex;
flex-direction:column;
height:100%;
}

.announcement-meta{
margin-bottom:18px;
}

.announcement-meta span{
background:#eef7dd;
color:#6ba300;
padding:10px 18px;
border-radius:30px;
font-size:15px;
font-weight:700;
display:inline-flex;
align-items:center;
gap:8px;
}

.announcement-info h3{
font-size:30px;
line-height:1.8;
margin-bottom:18px;
color:#111827;
font-weight:800;
}

.announcement-info p{
font-size:19px;
line-height:2;
color:#555;
margin-bottom:28px;
flex-grow:1;
}

/* ===== BUTTON ===== */

.announcement-info a{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:14px 24px;
background:#84cc16;
color:#fff;
border-radius:14px;
font-size:17px;
font-weight:700;
transition:0.3s;
width:fit-content;
}

.announcement-info a:hover{
background:#65a30d;
transform:translateY(-3px);
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.announcements-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.page-hero{
padding:80px 20px;
}

.page-hero h1{
font-size:40px;
}

.page-hero p{
font-size:18px;
}

.announcement-info h3{
font-size:24px;
}

.announcement-info p{
font-size:17px;
}

}