:root {
  --bg: #fff;
  --text: #111;
  --sub: #555;
  --accent: #0066cc;
  --soft: #f0f4f8;
  --radius: 12px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
.b-head {
  background: var(--soft);
  padding: 1.5rem 1.25rem 2rem;
}
.b-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.b-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.b-logo {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--text);
}
.b-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
}
.b-nav a { color: var(--sub); text-decoration: none; }
.b-nav a:hover,
.b-nav a[aria-current="page"] { color: var(--accent); }
.b-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.b-sub {
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--sub);
  font-size: 1rem;
  margin: 0;
  max-width: 50ch;
}
.b-main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.post {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e5e9ee;
}
.post:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 720px) {
  .post { grid-template-columns: 1fr; }
}
.post figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meta {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.post h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.post p {
  font-size: 1rem;
  color: var(--sub);
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
}
.b-foot {
  text-align: center;
  padding: 2rem 1rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--sub);
}
.b-foot a { color: var(--accent); margin: 0 0.5rem; }
