/* Chicago Metro Watch — news site styles */
:root {
  --red: #c8102e;
  --red-dark: #9a0c22;
  --navy: #0b1f33;
  --navy-mid: #132a42;
  --ink: #1a1a1a;
  --muted: #5c6570;
  --line: #e2e6ea;
  --paper: #faf9f7;
  --white: #ffffff;
  --gold: #c9a227;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Breaking bar */
.breaking-bar {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: stretch;
  font-size: 0.8rem;
  font-weight: 600;
  overflow: hidden;
  height: 36px;
}

.breaking-label {
  background: var(--navy);
  padding: 0 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  flex-shrink: 0;
  z-index: 1;
}

.breaking-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  padding-left: 1rem;
}

.breaking-ticker span {
  padding-right: 3rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(11, 31, 51, 0.06);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 20px;
  font-size: 0.78rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.header-left {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-right a,
.header-right button.cmw-text-btn {
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

.header-right a:hover,
.header-right button.cmw-text-btn:hover {
  color: var(--red);
}

.header-right a.is-subscribed {
  color: #0d7a3f;
}

.search-btn {
  border: 1px solid var(--line);
  background: var(--paper);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.search-btn:hover {
  background: #fff;
  border-color: var(--navy);
  color: var(--red);
}

/* Modals: Subscribe / Sign In / Search */
body.cmw-modal-open {
  overflow: hidden;
}

.cmw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 51, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1000;
}

.cmw-modal {
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.cmw-modal-search {
  width: min(640px, calc(100vw - 32px));
  top: 12vh;
  transform: translate(-50%, 0);
}

.cmw-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.cmw-modal-close:hover {
  background: var(--paper);
  color: var(--navy);
}

.cmw-modal-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.cmw-modal h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
  padding-right: 28px;
}

.cmw-modal-lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.45;
}

.cmw-benefits {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.9rem;
  color: var(--ink);
}

.cmw-benefits li {
  padding: 6px 0 6px 22px;
  position: relative;
}

.cmw-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.cmw-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.cmw-form input[type="email"],
.cmw-form input[type="password"],
.cmw-form input[type="search"],
.cmw-search-form input[type="search"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--paper);
}

.cmw-form input:focus,
.cmw-search-form input:focus {
  outline: 2px solid rgba(200, 16, 46, 0.35);
  border-color: var(--red);
  background: #fff;
}

.cmw-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500 !important;
  color: var(--muted) !important;
}

.cmw-check input {
  margin-top: 3px;
}

.cmw-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  padding: 12px 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.cmw-btn-primary:hover {
  background: var(--red-dark);
}

.cmw-modal-foot {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.cmw-linkish {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cmw-form-msg {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.cmw-form-msg.ok {
  background: #e8f7ee;
  color: #0d7a3f;
}

.cmw-form-msg.err {
  background: #fdecee;
  color: #9a0c22;
}

.cmw-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 8px;
}

.cmw-search-form .cmw-btn-primary {
  width: auto;
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.cmw-search-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.cmw-search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 50vh;
  overflow: auto;
}

.cmw-search-hit {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}

.cmw-search-hit:hover {
  background: var(--paper);
  border-color: #c5ccd4;
}

.cmw-search-thumb {
  width: 72px;
  height: 56px;
  border-radius: 4px;
  background: #ddd center / cover no-repeat;
}

.cmw-search-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cmw-search-meta strong {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--navy);
}

.cmw-search-hit:hover strong {
  color: var(--red);
}

.cmw-search-empty {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 12px 0 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 520px) {
  .cmw-search-form {
    grid-template-columns: 1fr;
  }
}

.logo-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 12px;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 3px 0 var(--red-dark);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-tag {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px;
  border-top: 1px solid var(--line);
}

.main-nav a {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Layout */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.hero-link {
  display: block;
}

.hero-image {
  position: relative;
  min-height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a3a28 0%, #0d2818 40%, #1c1c1c 100%);
}

.roofus-hero {
  background:
    linear-gradient(to top, rgba(11, 31, 51, 0.92) 0%, rgba(11, 31, 51, 0.45) 42%, rgba(11, 31, 51, 0.15) 100%),
    url("/images/roofus-wrigley.jpg") center 35% / cover no-repeat;
}

.roofus-hero::before {
  content: none;
}

.roofus-hero::after {
  content: none;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
  color: #fff;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.badge-breaking {
  background: var(--red);
  color: #fff;
}

.hero-image-overlay h1 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.25;
  font-weight: 700;
  max-width: 38ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-dek {
  margin-top: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  line-height: 1.5;
}

.hero-image-overlay .byline {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 22px 12px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.side-list {
  list-style: none;
  counter-reset: side;
}

.side-list li {
  counter-increment: side;
  border-bottom: 1px solid var(--line);
}

.side-list li:last-child {
  border-bottom: none;
}

.side-list a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.15s;
}

.side-list a::before {
  content: counter(side);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--red);
  line-height: 1.25;
  grid-column: 1;
  grid-row: 1;
}

.side-body {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.side-list a:hover {
  color: var(--red);
}

.side-cat {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.side-title {
  display: block;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Section titles */
.section-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title span {
  flex-shrink: 0;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), transparent);
}

/* Story grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.1);
  transform: translateY(-2px);
}

.card a {
  display: block;
  height: 100%;
}

.card-img {
  height: 180px;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-img-world {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?auto=format&fit=crop&w=900&q=80");
}

.card-img-sports {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 45%),
    url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=900&q=80");
}

.card-img-sky {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 45%),
    url("https://images.unsplash.com/photo-1504450758481-7338eba7524a?auto=format&fit=crop&w=900&q=80");
}

.card-img-business {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=900&q=80");
}

.card-img-politics {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 45%),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=900&q=80");
}

.card-img-crime {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1587300003388-59208cc962cb?auto=format&fit=crop&w=900&q=80");
}

.card-img-mining {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=900&q=80");
}

.card-img-ag {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=900&q=80");
}

.card-img-missouri {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1541872703-74c5e44368f9?auto=format&fit=crop&w=900&q=80");
}

.card-img-mayor {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 45%),
    url("https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?auto=format&fit=crop&w=900&q=80");
}

.card-img-local {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 45%),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=900&q=80");
}

.card-img-opinion {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 45%),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=80");
}

/* Category pages */
.category-page {
  padding-top: 20px;
}

.category-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--navy);
}

.category-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.category-header h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.category-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}

.category-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cat-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 320px;
  transition: box-shadow 0.2s;
}

.cat-feature:hover {
  box-shadow: 0 12px 32px rgba(11, 31, 51, 0.12);
}

.cat-feature-img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.cat-feature-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-feature-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.3;
  color: var(--navy);
  margin: 8px 0 12px;
}

.cat-feature:hover h2 {
  color: var(--red);
}

.cat-feature-body p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.category-grid {
  margin-top: 0;
}

.category-empty {
  color: var(--muted);
  padding: 40px 0;
}

@media (max-width: 800px) {
  .cat-feature {
    grid-template-columns: 1fr;
  }
  .cat-feature-img {
    min-height: 200px;
  }
}

.card-body {
  padding: 16px 18px 20px;
}

.card-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 8px;
}

.card:hover h3 {
  color: var(--red);
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.byline {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Opinion */
.opinion-strip {
  margin-top: 48px;
  padding-top: 8px;
}

.opinion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.opinion-grid article,
.opinion-grid .opinion-card {
  background: var(--navy);
  color: #fff;
  padding: 24px;
  border-radius: 6px;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
}

.opinion-grid .opinion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.25);
}

.opinion-grid .card-cat {
  color: var(--gold);
}

.opinion-grid h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.opinion-grid p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.opinion-grid .byline {
  color: rgba(255, 255, 255, 0.5);
}

/* Article page */
.article-page {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.full-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 40px 48px;
}

.full-article .article-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.full-article h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}

.full-article .dek {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.full-article .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.full-article .meta strong {
  color: var(--ink);
}

.article-hero-img {
  height: 280px;
  border-radius: 4px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.article-hero-img.roofus {
  height: 360px;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 40%),
    url("/images/roofus-wrigley.jpg") center 30% / cover no-repeat;
}

.article-hero-img.roofus::after {
  content: none;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.15em;
  color: #222;
}

.article-body p.lead {
  font-size: 1.15rem;
  font-weight: 500;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 1.6em 0 0.6em;
  color: var(--navy);
}

.article-body blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  background: var(--paper);
  border-left: 4px solid var(--red);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-mid);
}

.article-body .caption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: -20px;
  margin-bottom: 24px;
}

.share-row {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.share-row span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  align-self: center;
  margin-right: 4px;
}

.share-btn {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  color: var(--navy);
}

.share-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.article-sidebar {
  position: sticky;
  top: 160px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
}

.more-list {
  list-style: none;
}

.more-list li {
  border-bottom: 1px solid var(--line);
}

.more-list li:last-child {
  border-bottom: none;
}

.more-list a {
  display: block;
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.more-list a:hover {
  color: var(--red);
}

.more-list .more-cat {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.loading {
  color: var(--muted);
  padding: 40px 0;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px 28px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 40px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-cols h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-cols a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
}

.footer-cols a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opinion-grid {
    grid-template-columns: 1fr;
  }

  .article-page {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .logo-name {
    font-size: 1.35rem;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image-overlay {
    padding: 20px;
  }

  .full-article {
    padding: 24px 18px 36px;
  }

  .main-nav a {
    padding: 10px 10px;
    font-size: 0.75rem;
  }

  .header-left .weather {
    display: none;
  }
}
