*{
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
line-height:1.7;
margin:0;
background:linear-gradient(180deg,#eef3f8,#e5edf5);
color:#1d2a36;
}

header{
background:linear-gradient(180deg,#0b2d4d,#13446f);
text-align:center;
color:white;
box-shadow:0 4px 20px rgba(0,0,0,.15);
}

header img{
width:100%;
max-height:420px;
object-fit:cover;
}

.hero-copy{
max-width:1100px;
margin:auto;
padding:30px 20px;
}

header h1{
margin:0 0 10px;
font-size:2.2rem;
}

header p{
color:#d9e7f6;
}

main{
max-width:1100px;
margin:auto;
padding:20px 15px;
}

section{
background:white;
padding:28px;
margin:20px 0;
border-radius:10px;
box-shadow:0 4px 16px rgba(0,0,0,.07);
}

section h2{
margin-top:0;
color:#0c2f52;
border-bottom:2px solid #e3edf7;
padding-bottom:8px;
}

.lead{
font-size:1.08rem;
}

.status-box{
background:#f3f8fd;
border-left:5px solid #1e73be;
padding:15px;
margin-top:15px;
border-radius:6px;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:14px;
margin-top:18px;
}

.highlight-card{
background:#f8fbff;
border:1px solid #d8e6f4;
padding:16px;
border-radius:8px;
}

.timeline li{
margin-bottom:18px;
}

.map-container{
border-radius:8px;
overflow:hidden;
margin-top:15px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:15px;
margin-top:20px;
}

.related-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,.07);
display:flex;
flex-direction:column;
transition:.25s;
}

.related-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 28px rgba(0,0,0,.12);
}

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

.related-card-content{
padding:18px;
display:flex;
flex-direction:column;
flex-grow:1;
}

.related-card-content h3{
margin:0 0 10px;
color:#0c2f52;
line-height: 20px;
}

.related-card-content p{
flex-grow:1;
}

.related-btn{
display:block;
width:100%;
text-align:center;
background:linear-gradient(180deg,#1e73be,#0c4f8a);
color:white;
padding:11px;
border-radius:6px;
font-weight:bold;
text-decoration:none;
}

.related-btn:hover{
transform:translateY(-1px);
}

.highlight-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sources{
    background: #f8fbff;
    border-top: 2px solid #dbe6f2;
    padding: 20px;
    font-size: .9rem;
    color: #1666aa;
    max-width: 1070px;
    margin: 20px auto;
}

footer{
background:#b4c3d9;
color:white;
text-align:center;
padding:20px;
}

@media(max-width:768px){

header h1{
font-size:1.7rem;
}

section{
padding:22px 18px;
}

}