/* Layout: Chronicle (Glass Broadsheet). Built for The Macon Chronicle; applies to any
   paper whose theme_config layout is "chronicle". Paper sheets override the flag only. */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Outfit:wght@300;400;500&family=IBM+Plex+Mono:wght@400&display=swap');

:root {
  --bg: #FAFAF7;
  --card-bg: #FFFFFF;
  --surface-warm: #F6F5F0;
  --surface-accent: #F0F4FA;
  --primary: #1A1A18;
  --text-secondary: #555550;
  --muted: #999994;
  --accent: #0066FF;
  --accent-light: #3388FF;
  --accent-bg: rgba(0,102,255,0.07);
  --accent-border: rgba(0,102,255,0.12);
  --link: #0066FF;
  --border: #E8E6E0;
  --border-light: rgba(0,0,0,0.05);
  --severity-injury: #E24B4A;
  --severity-moderate: #D4A545;
  --severity-minor: #639922;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-pill: 20px;
}

body.layout-chronicle {
  background: var(--bg);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
}

.layout-chronicle .site-wrapper { max-width: 1440px; margin: 0 auto; padding: 0 1rem; }

/* ─── HEADER ─── */
.layout-chronicle .site-header {
  text-align: center;
  padding: 1.5rem 0 0.75rem;
  position: relative;
}
.layout-chronicle .site-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
  text-decoration: none;
  line-height: 1;
  display: block;
}
.layout-chronicle .site-title:hover { color: var(--accent); }
.layout-chronicle .site-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  font-weight: 300;
}
.layout-chronicle .site-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.layout-chronicle .masthead-rule {
  height: 2px;
  background: var(--primary);
  margin: 0;
}

/* ─── NAVIGATION ─── */
.layout-chronicle .site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0.6rem 0 0.65rem;
  margin-top: 0;
  background: transparent;
  border-bottom: 0.5px solid var(--border);
}
.layout-chronicle .site-nav a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.layout-chronicle .site-nav a:hover { color: var(--accent); }
.layout-chronicle .site-nav a.current {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

/* ─── BREAKING NEWS ─── */
.layout-chronicle .breaking-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--accent-bg);
  border-bottom: 0.5px solid var(--accent-border);
  border-radius: 0;
  margin: 0 -1rem;
}
.layout-chronicle .breaking-badge {
  font-size: 0.5rem;
  font-family: var(--font-mono);
  background: var(--accent);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.layout-chronicle .breaking-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ─── MAIN LAYOUT: Content + Sidebar ─── */
.chronicle-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
@media (max-width: 800px) { .chronicle-layout { grid-template-columns: 1fr; } }

/* ─── CONTENT COLUMN ─── */
.chronicle-content { display: flex; flex-direction: column; gap: 1rem; }

/* Lead story */
.chronicle-lead {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 0.5px solid var(--border-light);
}
.chronicle-lead__img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
}
.chronicle-lead__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-family: var(--font-mono);
  background: var(--accent-bg);
  color: var(--accent);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chronicle-lead__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: var(--primary);
}
.chronicle-lead__title a { color: inherit; text-decoration: none; }
.chronicle-lead__title a:hover { color: var(--accent); }
.chronicle-lead__excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.chronicle-lead__meta {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.6rem;
  font-family: var(--font-mono);
}

/* Story cards */
.chronicle-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  border: 0.5px solid var(--border-light);
}
.chronicle-card__tag {
  display: inline-block;
  font-size: 0.55rem;
  font-family: var(--font-mono);
  background: var(--accent-bg);
  color: var(--accent);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chronicle-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.3rem;
  color: var(--primary);
}
.chronicle-card__title a { color: inherit; text-decoration: none; }
.chronicle-card__title a:hover { color: var(--accent); }
.chronicle-card__excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
}
.chronicle-card__meta {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-family: var(--font-mono);
}

/* ─── SIDEBAR ─── */
.chronicle-sidebar { display: flex; flex-direction: column; gap: 1rem; }

/* Ad slot */
.chronicle-ad {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border-light);
  overflow: hidden;
}
.chronicle-ad iframe { display: block; border: none; max-width: 100%; }
.chronicle-ad__label {
  font-size: 0.45rem;
  color: var(--muted);
  text-align: right;
  padding: 0.15rem 0.5rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.chronicle-ad-placeholder {
  background: var(--surface-accent);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.chronicle-ad-placeholder__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 0.2rem;
}
.chronicle-ad-placeholder__sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}
.chronicle-ad-placeholder__cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.chronicle-ad-placeholder__cta:hover { text-decoration: underline; }

/* ─── DATA STRIP ─── */
.chronicle-data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  background: var(--surface-warm);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin: 1.25rem 0;
  border-radius: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 600px) { .chronicle-data-strip { grid-template-columns: repeat(2, 1fr); } }
.chronicle-datum { text-align: center; }
.chronicle-datum__label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-bottom: 0.2rem;
}
.chronicle-datum__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
}
.chronicle-datum__sub {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ─── SECTION HEADS ─── */
.layout-chronicle .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem 0 0.5rem;
}
.layout-chronicle .section-head__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
}
.layout-chronicle .section-head__link {
  font-size: 0.7rem;
  color: var(--accent);
  text-decoration: none;
}
.layout-chronicle .section-head__link:hover { text-decoration: underline; }

/* ─── STORY GRID ─── */
.chronicle-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .chronicle-story-grid { grid-template-columns: 1fr; } }

/* ─── COLUMNS SECTION ─── */
.chronicle-column-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  border: 0.5px solid var(--border-light);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.chronicle-column-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.chronicle-column-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.15rem;
  color: var(--primary);
}
.chronicle-column-body h3 a { color: inherit; text-decoration: none; }
.chronicle-column-body h3 a:hover { color: var(--accent); }
.chronicle-column-byline {
  font-size: 0.7rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 0.4rem;
}
.chronicle-column-excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ─── COMMUNITY BOARD ─── */
.chronicle-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .chronicle-community-grid { grid-template-columns: 1fr; } }
a.chronicle-community-item {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.chronicle-community-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.chronicle-community-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 0.5px solid var(--border-light);
  text-align: center;
}
.chronicle-community-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 0.4rem;
}
.chronicle-community-item h4 {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0 0 0.15rem;
}
.chronicle-community-item p {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

/* ─── CTA BANNER ─── */
.chronicle-cta {
  background: var(--accent-bg);
  border: 0.5px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.chronicle-cta h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 0.25rem;
}
.chronicle-cta p {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  margin: 0 0 0.6rem;
}
.chronicle-cta__btn {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 400;
}
.chronicle-cta__btn:hover { background: var(--accent-light); }

/* ─── FOOTER ─── */
.layout-chronicle .site-footer {
  border-top: 0.5px solid var(--border);
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 1rem;
}
.layout-chronicle .site-footer__name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.layout-chronicle .site-footer__sub {
  font-size: 0.65rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}
.layout-chronicle .site-footer a { color: var(--accent); text-decoration: none; }
.layout-chronicle .site-footer a:hover { text-decoration: underline; }

/* ─── TWIN CARDS (Crashes / Arrests) ─── */
.chronicle-twin-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 700px) { .chronicle-twin-cards { grid-template-columns: 1fr; } }

/* Crash items */
.chronicle-crash-item {
  background: var(--surface-warm);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  margin-bottom: 0.5rem;
}
.chronicle-crash-item:last-child { margin-bottom: 0; }
.chronicle-crash-item__header { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.2rem; }
.chronicle-crash-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 500;
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: 9px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.chronicle-crash-badge--fatal, .chronicle-crash-badge--serious { background: var(--severity-injury); }
.chronicle-crash-badge--moderate { background: var(--severity-moderate); }
.chronicle-crash-badge--minor { background: var(--severity-minor); }
.chronicle-crash-item__loc { font-size: 0.8rem; font-weight: 500; color: var(--primary); }
.chronicle-crash-item__meta { font-size: 0.65rem; color: var(--muted); }
.chronicle-crash-item__meta a { color: var(--link); text-decoration: none; }
.chronicle-crash-item__meta a:hover { text-decoration: underline; }

/* Arrest items */
.chronicle-arrest-item {
  background: var(--surface-warm);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  margin-bottom: 0.5rem;
}
.chronicle-arrest-item:last-child { margin-bottom: 0; }
.chronicle-arrest-item__name { font-size: 0.82rem; font-weight: 500; color: var(--primary); }
.chronicle-arrest-item__meta { font-size: 0.65rem; color: var(--muted); margin-top: 0.1rem; }

.chronicle-more-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.6rem;
}
.chronicle-more-link:hover { text-decoration: underline; }

/* ─── AD SLOT (standard) ─── */
.layout-chronicle .ad-slot { margin-bottom: 0.85rem; }
.layout-chronicle .ad-slot iframe { display: block; border: none; max-width: 100%; border-radius: var(--radius-sm); }
.layout-chronicle .ad-slot__label {
  font-size: 0.45rem;
  color: var(--muted);
  text-align: center;
  margin: 0.3rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

/* ─── ADVERTISE PAGE ─── */
.layout-chronicle .adv-intro { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; font-weight: 300; }
.layout-chronicle .adv-section-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.4rem;
  margin: 2rem 0 1rem;
}
.layout-chronicle .adv-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
}
.layout-chronicle .adv-cta-btn:hover { background: var(--accent-light); }

/* ─── DISCLAIMER ─── */
.layout-chronicle .disclaimer {
  font-size: 0.6rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ─── WEATHER BAR ─── */
.layout-chronicle .weather-bar {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
}

/* Story card thumbnails (front page, non-lead stories) */
.chronicle-card__thumb {
  display: block;
  float: left;
  width: 38%;
  max-width: 300px;
  margin: 0.35rem 1rem 0.5rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  line-height: 0;
}
.chronicle-card__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}
.chronicle-card::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 600px) {
  .chronicle-card__thumb {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0.45rem 0 0.6rem;
  }
  .chronicle-card__img { max-height: 180px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   CHRONICLE FRONT PAGE — broadsheet well (2026-09-03)
   Replaces the card-stack front page. Classes prefixed .cfp-
   ══════════════════════════════════════════════════════════════════════════ */

/* Dateline ear */
.layout-chronicle .cfp-ear {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.6rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--primary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.layout-chronicle .cfp-ear__date { font-weight: 500; color: var(--primary); }
.layout-chronicle .cfp-ear__spacer { flex: 1; }
.layout-chronicle .cfp-ear b { font-weight: 500; color: var(--primary); }

/* Well */
.layout-chronicle .cfp-well {
  display: grid;
  /* Both rails fixed so neither moves when the wrapper width changes:
     left 258.4px = 235px content, exactly what it measured before the widening;
     right 326px = 302.6px content, so the 300px house ad renders unsqueezed.
     The centre absorbs all the extra width. */
  grid-template-columns: 258.4px minmax(0, 1fr) 326px;
  padding-bottom: 1.5rem;
}
.layout-chronicle .cfp-col { padding: 1.1rem 1.4rem; min-width: 0; }
.layout-chronicle .cfp-col--left { padding-left: 0; border-right: 1px solid var(--border); }
.layout-chronicle .cfp-col--right { padding-right: 0; border-left: 1px solid var(--border); }

.layout-chronicle .cfp-railhead {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 0.7rem;
}
.layout-chronicle .cfp-railhead--spaced { margin-top: 1.2rem; }
.layout-chronicle .cfp-meta { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted); margin-top: 0.25rem; }
.layout-chronicle .cfp-empty { font-size: 0.75rem; color: var(--muted); }
.layout-chronicle .cfp-railmore { display: inline-block; margin-top: 0.7rem; font-size: 0.7rem; color: var(--accent); }
.layout-chronicle .cfp-railmore:hover { text-decoration: underline; }

/* In Brief */
.layout-chronicle .cfp-brief { padding: 0.55rem 0; border-bottom: 1px solid var(--border); }
.layout-chronicle .cfp-brief:last-of-type { border-bottom: 0; }
.layout-chronicle .cfp-brief h4 {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.25;
}
.layout-chronicle .cfp-brief h4 a { color: inherit; }
.layout-chronicle .cfp-brief h4 a:hover { color: var(--accent); }

/* Lead */
.layout-chronicle .cfp-lead__kicker { font-size: 0.62rem; letter-spacing: 0.16em; font-weight: 600; color: var(--accent); }
.layout-chronicle .cfp-lead__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.55rem;
}
.layout-chronicle .cfp-lead__title a { color: inherit; }
.layout-chronicle .cfp-lead__title a:hover { color: var(--accent); }
.layout-chronicle .cfp-lead__deck { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; max-width: 62ch; }
.layout-chronicle .cfp-lead__byline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.layout-chronicle .cfp-lead__figure { margin: 0.9rem 0 0; }
.layout-chronicle .cfp-lead__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.layout-chronicle .cfp-lead__figure figcaption { font-size: 0.7rem; color: var(--muted); padding-top: 0.4rem; }

/* Split pair */
.layout-chronicle .cfp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.3rem;
  border-top: 2px solid var(--primary);
}
.layout-chronicle .cfp-split article { padding: 0.9rem 1.1rem 0.2rem; min-width: 0; }
.layout-chronicle .cfp-split article:first-child { padding-left: 0; border-right: 1px solid var(--border); }
.layout-chronicle .cfp-split article:last-child { padding-right: 0; }
.layout-chronicle .cfp-split h3 { font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; line-height: 1.2; margin-bottom: 0.4rem; }
.layout-chronicle .cfp-split h3 a { color: inherit; }
.layout-chronicle .cfp-split h3 a:hover { color: var(--accent); }
.layout-chronicle .cfp-split p { font-size: 0.85rem; color: var(--text-secondary); }

.layout-chronicle .cfp-empty-well { text-align: center; padding: 2rem; border: 1px solid var(--border); background: var(--card-bg); }
.layout-chronicle .cfp-empty-well__name { font-family: var(--font-display); font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; }
.layout-chronicle .cfp-empty-well p { font-size: 0.85rem; color: var(--muted); }

/* Road list */
.layout-chronicle .cfp-roadlist div { font-size: 0.75rem; color: var(--text-secondary); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.layout-chronicle .cfp-roadlist a { color: var(--text-secondary); }
.layout-chronicle .cfp-roadlist a:hover { color: var(--accent); }

/* Section bands */
.layout-chronicle .cfp-band { border-top: 2px solid var(--primary); padding-top: 0.5rem; margin-top: 1.6rem; }
.layout-chronicle .cfp-bandhead { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 0.8rem; gap: 1rem; }
.layout-chronicle .cfp-bandhead h2 { font-family: var(--font-display); font-size: 1.32rem; font-weight: 700; letter-spacing: -0.01em; }
.layout-chronicle .cfp-bandhead a { font-size: 0.72rem; color: var(--accent); white-space: nowrap; }
.layout-chronicle .cfp-bandhead a:hover { text-decoration: underline; }

.layout-chronicle .cfp-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.layout-chronicle .cfp-grid3 > * { padding: 0 1.3rem; min-width: 0; }
.layout-chronicle .cfp-grid3 > *:first-child { padding-left: 0; }
.layout-chronicle .cfp-grid3 > *:last-child { padding-right: 0; }
.layout-chronicle .cfp-grid3 > * + * { border-left: 1px solid var(--border); }

.layout-chronicle .cfp-grid2 { display: grid; grid-template-columns: 1fr 1fr; }
.layout-chronicle .cfp-grid2 > * { padding: 0 1.5rem; min-width: 0; }
.layout-chronicle .cfp-grid2 > *:first-child { padding-left: 0; }
.layout-chronicle .cfp-grid2 > *:last-child { padding-right: 0; border-left: 1px solid var(--border); }

.layout-chronicle .cfp-item { padding: 0.5rem 0; }
.layout-chronicle .cfp-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; line-height: 1.25; }
.layout-chronicle .cfp-item h4 a { color: inherit; }
.layout-chronicle .cfp-item h4 a:hover { color: var(--accent); }

/* Scoreboard */
.layout-chronicle .cfp-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--card-bg);
  margin-bottom: 1rem;
}
.layout-chronicle .cfp-score { padding: 0.7rem 0.8rem; border-right: 1px solid var(--border); min-width: 0; }
.layout-chronicle .cfp-score:last-child { border-right: 0; }
.layout-chronicle .cfp-score__t { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--muted); }
.layout-chronicle .cfp-score__v { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.1; margin-top: 0.15rem; }
.layout-chronicle .cfp-score__v--win { color: var(--severity-minor); }
.layout-chronicle .cfp-score__v--loss { color: var(--severity-injury); }
.layout-chronicle .cfp-score__v--next { color: var(--primary); font-size: 1.1rem; }
.layout-chronicle .cfp-score__s { font-size: 0.7rem; color: var(--text-secondary); }

/* Public-safety items inside the band */
.layout-chronicle .cfp-grid2 .chronicle-crash-item,
.layout-chronicle .cfp-grid2 .chronicle-arrest-item { padding: 0.5rem 0; margin-bottom: 0; border-bottom: 1px solid var(--border); }
.layout-chronicle .cfp-grid2 .chronicle-arrest-item:last-of-type { border-bottom: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .layout-chronicle .cfp-well { grid-template-columns: 1fr; }
  .layout-chronicle .cfp-col { padding: 1.1rem 0; }
  .layout-chronicle .cfp-col--left { border-right: 0; border-bottom: 1px solid var(--border); order: 2; }
  .layout-chronicle .cfp-col--mid { order: 1; }
  .layout-chronicle .cfp-col--right { border-left: 0; border-top: 1px solid var(--border); order: 3; }
  .layout-chronicle .cfp-grid3 { grid-template-columns: 1fr; }
  .layout-chronicle .cfp-grid3 > * { padding: 0.5rem 0; }
  .layout-chronicle .cfp-grid3 > * + * { border-left: 0; border-top: 1px solid var(--border); }
  .layout-chronicle .cfp-grid2 { grid-template-columns: 1fr; }
  .layout-chronicle .cfp-grid2 > * { padding: 0.6rem 0; }
  .layout-chronicle .cfp-grid2 > *:last-child { border-left: 0; border-top: 1px solid var(--border); }
  .layout-chronicle .cfp-scores { grid-template-columns: 1fr 1fr; }
  .layout-chronicle .cfp-score { border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .layout-chronicle .cfp-split { grid-template-columns: 1fr; }
  .layout-chronicle .cfp-split article:first-child { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 0.8rem; }
  .layout-chronicle .cfp-split article:last-child { padding: 0.8rem 0 0; }
  .layout-chronicle .cfp-ear { gap: 0 1rem; font-size: 0.65rem; }
  .layout-chronicle .cfp-ear__spacer { display: none; }
}

/* Mid-well fill: two extra briefs under the news, then the SPORTS block.
   Reuses .cfp-grid2 / .cfp-brief; the 900px media query above already
   collapses grid2 to one column on mobile. */
.layout-chronicle .cfp-midblock {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.layout-chronicle .cfp-grid2 > *:only-child { border-left: 0; padding-right: 0; }

/* Mid-well sports primary: the news lead's shape one step down in scale and
   without a photo, so the block stays inside the grid row it shares with the
   In Brief rail and the ad rail. */
.layout-chronicle .cfp-sublead { padding: 0.1rem 0 0.7rem; border-bottom: 1px solid var(--border); }
.layout-chronicle .cfp-sublead__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.layout-chronicle .cfp-sublead__title a { color: inherit; }
.layout-chronicle .cfp-sublead__title a:hover { color: var(--accent); }
.layout-chronicle .cfp-sublead__deck { font-size: 0.86rem; color: var(--text-secondary); margin-top: 0.35rem; }
.layout-chronicle .cfp-sublead__figure { margin: 0.7rem 0 0; }
.layout-chronicle .cfp-sublead__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.layout-chronicle .cfp-sublead__figure figcaption { font-size: 0.7rem; color: var(--muted); padding-top: 0.4rem; }

.layout-chronicle .cfp-brief__deck { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.35rem; }

/* Decks render as real paragraphs now, so space the runs. */
/* superseded by the paper-wide indent rule at the foot of this file */
.layout-chronicle .cfp-split__deck p { font-size: 0.85rem; color: var(--text-secondary); }

.layout-chronicle .cfp-lead__byline { margin: 0 0 0.7rem; }
.layout-chronicle .cfp-split article > .cfp-meta, .layout-chronicle .cfp-sublead > .cfp-meta { margin-top: 0; margin-bottom: 0.4rem; }

/* Lead story body runs three columns in the same space. The More link is the
   last thing in the flow, so it lands at the foot of the third column. */
.layout-chronicle .cfp-lead__deck--3col {
  max-width: none;
  column-count: 3;
  column-gap: 1.6rem;
  column-rule: 1px solid var(--border);
  /* Default orphans/widows of 2 blocks the breaks the browser needs to reach the
     third column, leaving it short. 1 lets the text run all three. */
  orphans: 1;
  widows: 1;
}
.layout-chronicle .cfp-lead__deck--3col p { margin: 0; }
.layout-chronicle .cfp-lead__more {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  break-inside: avoid;
}
.layout-chronicle .cfp-lead__more:hover { text-decoration: underline; }
@media (max-width: 900px) { .layout-chronicle .cfp-lead__deck--3col { column-count: 1; } }

/* The four sub stories: one 2x2 grid with equal rows, each box a flex column so
   the More link pins to the foot and all four bottoms line up. */
.layout-chronicle .cfp-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  margin-top: 1.3rem;
  border-top: 2px solid var(--primary);
}
.layout-chronicle .cfp-subs article { display: flex; flex-direction: column; padding: 0.9rem 1.1rem; min-width: 0; }
.layout-chronicle .cfp-subs article:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--border); }
.layout-chronicle .cfp-subs article:nth-child(even) { padding-right: 0; }
.layout-chronicle .cfp-subs article:nth-child(n+3) { border-top: 1px solid var(--border); }
.layout-chronicle .cfp-subs h3 { font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; line-height: 1.2; margin-bottom: 0.4rem; }
.layout-chronicle .cfp-subs h3 a { color: inherit; }
.layout-chronicle .cfp-subs h3 a:hover { color: var(--accent); }
.layout-chronicle .cfp-subs .cfp-split__deck { flex: 1 1 auto; overflow: hidden; }
.layout-chronicle .cfp-subs .cfp-lead__more { margin-top: auto; }
@media (max-width: 900px) {
  .layout-chronicle .cfp-subs { grid-template-columns: 1fr; }
  .layout-chronicle .cfp-subs article { padding: 0.8rem 0; border-right: 0 !important; border-top: 1px solid var(--border); }
}

/* Sub stories are a set space, not a set word count: title locked to two lines,
   deck locked to seven lines, copy over-fed so it always fills. Paragraphs run on
   with an indent rather than a blank line so seven lines is exactly 7 x 22px and
   the clip never lands mid-line. */
.layout-chronicle .cfp-subs h3 { height: 2.4em; overflow: hidden; }
.layout-chronicle .cfp-subs .cfp-split__deck { flex: 0 0 auto; height: 154px; overflow: hidden; }
.layout-chronicle .cfp-subs .cfp-split__deck p { line-height: 22px; }

/* ------------------------------------------------------------------ *
   Macon house style: body copy runs on with a first-line indent rather
   than a blank line between paragraphs. Paper-wide - story pages,
   static pages, and every deck on the front. Scoped to .layout-chronicle,
   so the other four papers keep blank-line paragraphs.
 * ------------------------------------------------------------------ */
.layout-chronicle .post-content p,
.layout-chronicle .lpr-page__content p,
.layout-chronicle .cfp-lead__deck p,
.layout-chronicle .cfp-split__deck p,
.layout-chronicle .cfp-sublead__deck p {
  margin: 0;
  text-indent: 1.1em;
}

/* Section lead (Sports) runs the same three-column flow as the news lead. */
.layout-chronicle .cfp-sublead__deck {
  column-count: 3;
  column-gap: 1.6rem;
  column-rule: 1px solid var(--border);
  orphans: 1;
  widows: 1;
}
@media (max-width: 900px) { .layout-chronicle .cfp-sublead__deck { column-count: 1; } }

/* More links sit against the right edge of their column. */
.layout-chronicle .cfp-lead__more { text-align: right; }
