css
/*
Theme Name: Hagerwodad Dispatch
Theme URI: https://hagerwodad.com
Description: Editorial-newspaper style child theme for Hagerwodad — bilingual masthead, dispatch-numbered posts, and a card-based archive grid. Child theme of Twenty Twenty-Four.
Author: Hagerwodad
Template: twentytwentyfour
Version: 1.0.0
Text Domain: hagerwodad-dispatch
*/

@import url("../twentytwentyfour/style.css");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap");

:root {
  --hw-ink: #1c1f26;
  --hw-paper: #f6f3ec;
  --hw-paper-raised: #ffffff;
  --hw-gold: #b8863a;
  --hw-clay: #9c3f2c;
  --hw-muted: #6b6f76;
  --hw-hair: #dedace;
}

body {
  background: var(--hw-paper);
  color: var(--hw-ink);
  font-family: "IBM Plex Sans", sans-serif;
}

h1, h2, h3, h4,
.hw-headline {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--hw-ink);
}

.hw-kicker,
.hw-dispatch-no,
.hw-meta {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--hw-muted);
}

/* Masthead */
.hw-masthead {
  border-bottom: 3px solid var(--hw-ink);
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  background: var(--hw-paper);
}
.hw-masthead .hw-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0;
}
.hw-masthead .hw-amharic {
  font-family: "Noto Sans Ethiopic", "IBM Plex Sans", sans-serif;
  color: var(--hw-muted);
  margin: 0.25rem 0 0.75rem;
}
.hw-masthead .hw-tagline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--hw-clay);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hw-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hw-hair);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hw-nav a {
  color: var(--hw-ink);
  text-decoration: none;
}
.hw-nav a:hover { color: var(--hw-clay); }

/* Featured hero */
.hw-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  align-items: center;
}
.hw-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--hw-hair);
}
.hw-hero .hw-headline { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0.5rem 0; }
.hw-hero .hw-dek { color: var(--hw-muted); font-size: 1.05rem; margin-bottom: 0.75rem; }

/* Dispatch grid */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
}
.hw-card {
  border-top: 3px solid var(--hw-ink);
  padding-top: 0.75rem;
}
.hw-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 0.6rem;
  background: var(--hw-paper-raised);
}
.hw-card .hw-headline {
  font-size: 1.15rem;
  margin: 0.3rem 0;
}
.hw-card a { color: inherit; text-decoration: none; }
.hw-card a:hover { color: var(--hw-clay); }
.hw-card .hw-excerpt {
  font-size: 0.9rem;
  color: var(--hw-muted);
}

/* Single post */
.hw-single {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}
.hw-single .hw-headline { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.hw-single .hw-content {
  font-size: 1.1rem;
  line-height: 1.75;
}
.hw-single .hw-content p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.35rem;
  color: var(--hw-clay);
}

/* Footer */
.hw-footer {
  border-top: 1px solid var(--hw-hair);
  padding: 1.5rem;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--hw-muted);
}

@media (max-width: 780px) {
  .hw-hero { grid-template-columns: 1fr; }
  .hw-grid { grid-template-columns: 1fr; }