:root{
  --bg:#001348;
  --panel:#0a1f5c;
  --panel-border:#2a4a8f;
  --text:#e8ecf7;
  --muted:#9fb0d6;
  --accent:#ff3355;
  --heading:#ffd23f;
  --radius:10px;
  --maxw:1080px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font-family:Verdana,Arial,Helvetica,sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-text-size-adjust:100%;
}
img{max-width:100%;height:auto;display:block;border:0}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 8px;
}

.hero{
  text-align:center;
  padding:24px 0 4px;
}
.hero h1{
  font-size:clamp(18px,4.4vw,26px);
  line-height:1.25;
  margin:0 0 8px;
  color:var(--heading);
  font-weight:700;
}
.hero p{
  margin:0 auto;
  max-width:640px;
  color:var(--muted);
  font-size:14px;
}

.posts{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin:22px 0;
}

.post-card{
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.post-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  border-color:var(--accent);
}

.post-card .thumb{
  display:block;
  background:#000;
}
.post-card .thumb img{
  width:100%;
  height:auto;
  display:block;
}

.post-card .body{
  padding:16px;
}
.post-card h2{
  font-size:clamp(15px,3.4vw,18px);
  line-height:1.3;
  margin:0 0 8px;
  color:var(--heading);
  font-weight:700;
}
.post-card h2 a{
  color:var(--heading);
  text-decoration:none;
}
.post-card h2 a:hover{
  color:var(--accent);
}
.post-card p{
  margin:0;
  color:var(--text);
  font-size:14px;
  line-height:1.6;
}
.post-card .more{
  display:inline-block;
  margin-top:12px;
  font-size:13px;
  font-weight:700;
  color:var(--accent);
}

.site-footer{
  margin:40px 0 30px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  padding:0 12px;
}
.site-footer a{color:var(--accent)}
.site-footer .copy{
  color:#8f9dbf;
  margin-top:18px;
}

@media (min-width:640px){
  .posts{
    grid-template-columns:1fr 1fr;
  }
}
@media (min-width:900px){
  .wrap{padding:0}
}

.post-date {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
}
.post-card .body h2 { margin-top: 0; }