/* The Morning Horsehide Herald — period broadsheet stylesheet */

:root {
  --paper: #efe7d5;          /* aged newsprint (chosen, not the default #f4f1ea) */
  --ink: #201b14;            /* warm near-black, letterpress */
  --ink-soft: #4b4335;
  --rule: #9a8f78;           /* sepia hairline */
  --red: #6e241c;            /* oxblood — used sparingly */
  --nameplate: "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", Times, serif;
  --body: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; font-size: 110%; }

body {
  margin: 0;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(120, 105, 75, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;   /* faint newsprint tooth */
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.12rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.sheet {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 3.5rem;
}

/* ---- Nameplate ---- */
.masthead {
  text-align: center;
  border-top: 3px solid var(--ink);
  border-bottom: 4px double var(--ink);
  padding: 0.85rem 0 0.7rem;
  margin-bottom: 1.75rem;
}
.masthead__title {
  font-family: var(--nameplate);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0.1rem 0 0.35rem;
}
.masthead__motto { font-style: italic; color: var(--ink-soft); margin: 0.15rem 0; }
.masthead__subtitle {
  font-variant: small-caps;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 0.6rem;
}
.masthead__line {
  font-variant: small-caps;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  border-top: 1px solid var(--rule);
  padding-top: 0.5rem;
  margin: 0.4rem auto 0;
  max-width: 34rem;
}
.masthead__note { font-style: italic; color: var(--red); margin: 0.3rem 0 0; font-size: 0.92rem; }
.masthead--mini { border-bottom-width: 3px; }
.masthead--mini .masthead__title { font-size: clamp(1.6rem, 6vw, 2.6rem); }

/* ---- Section heads: centered small-caps flanked by rules ---- */
.section__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 2.5rem 0 1rem;
}
.section__label::before,
.section__label::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--rule);
}

/* ---- Game of the Day ---- */
.gotd__headline {
  font-family: var(--nameplate);
  font-weight: 700;
  font-size: clamp(1.5rem, 4.5vw, 2.15rem);
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
  text-align: center;
  margin: 0 0 0.4rem;
}
.gotd__subtitle {
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  text-wrap: balance;
  margin: 0 0 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.gotd__subtitle + p::first-letter {
  float: left;
  font-family: var(--nameplate);
  font-weight: 700;
  font-size: 3.6em;
  line-height: 0.74;
  padding: 0.05em 0.12em 0 0;
  color: var(--red);
}

/* ---- News Around the League ---- */
.news__item { margin-bottom: 1.15rem; }
.news__subhead {
  font-variant: small-caps;
  letter-spacing: 0.06em;
  font-size: 1.08rem;
  color: var(--red);
  margin: 0 0 0.25rem;
}

/* ---- The Rest of the Card: broadsheet columns on wide screens ---- */
.card__game { margin-bottom: 1.1rem; break-inside: avoid; }
.rest-of-the-card .card__headline {
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.2rem;
}
@media (min-width: 42rem) {
  .rest-of-the-card {
    column-count: 2;
    column-gap: 2.2rem;
    column-rule: 1px solid var(--rule);
  }
  .rest-of-the-card .section__label { column-span: all; }
}

/* ---- Countdown (hot-stove editions) ---- */
.countdown__line {
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.75rem;
  margin: 1.5rem 0;
}

/* ---- Desk note & sign-off ---- */
.desk-note { margin-top: 2.5rem; font-style: italic; color: var(--ink-soft); }
.signoff {
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0.35em;
  color: var(--red);
  margin-top: 1.5rem;
  padding-left: 0.35em;   /* optical balance for the tracking */
}

/* ---- Archive ---- */
.archive__list { list-style: none; padding: 0; margin: 0; }
.archive__item { padding: 0.5rem 0; border-bottom: 1px dotted var(--rule); }
.archive__item a {
  color: var(--ink);
  text-decoration: none;
  font-variant: small-caps;
  letter-spacing: 0.04em;
}
.archive__item a:hover { color: var(--red); }

.placeholder { text-align: center; font-style: italic; color: var(--ink-soft); margin-top: 3rem; }

/* ---- Colophon ---- */
.colophon {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.2rem 1.4rem 2.5rem;
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 3px double var(--ink);
}
.colophon a { color: var(--red); text-decoration: none; }
.colophon a:hover { text-decoration: underline; }

p { margin: 0 0 0.85rem; }

@media print { body { background: #fff; } }
