/* =============================================================================
   MONTH IN REVIEW — editorial section on completed /wordle-answers/<y>/<m> pages
   Loaded only when the month is finished; extends the archive components with
   month-review modifiers and never redefines base classes.
   ============================================================================= */

.month-review__lead {
  margin: 0 0 var(--space-3);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
}

.month-review__subhead {
  margin: var(--space-5) 0 var(--space-3);
  font-family: var(--font-display, var(--font-sans));
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
}

.month-review__prose {
  margin: 0 0 var(--space-3);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg);
}

.month-review__postscript {
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* ── Hardest / easiest cards ─────────────────────────────────────────────── */
.month-review__extremes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
}

.month-review__extreme {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-left: 4px solid var(--muted);
  border-radius: var(--radius-lg, 10px);
  background: var(--panel);
}

.month-review__extreme--hardest {
  border-left-color: var(--diff-hard-bg, #fb8c00);
}

.month-review__extreme--easiest {
  border-left-color: var(--diff-easy-bg, #4caf50);
}

.month-review__kicker {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.month-review__word {
  margin: 0 0 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.month-review__word a {
  font-family: var(--font-mono, monospace);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
}

.month-review__word a:hover,
.month-review__word a:focus-visible {
  text-decoration: underline;
}

.month-review__word-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.month-review__why {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--fg);
}

/* ── Notable-day link lists ──────────────────────────────────────────────── */
.month-review__days {
  margin: 0 0 var(--space-3);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

.month-review__days a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.month-review__days a:hover,
.month-review__days a:focus-visible {
  text-decoration: underline;
}

/* ── Crowd table ─────────────────────────────────────────────────────────── */
.month-review__crowd-table td {
  white-space: nowrap;
}

.month-review__sample {
  font-variant-numeric: tabular-nums;
}
