/*
Theme Name: Joshua Campaign Theme
Theme URI: https://JoshuaMFerguson.com
Author: Joshua M. Ferguson
Description: Full campaign site theme for JoshuaMFerguson.com with integrated News & Updates.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: joshua-campaign
*/

:root {
  --primary: #b02030;
  --primary-dark: #851622;
  --secondary: #0b2648;
  --secondary-light: #163b6e;
  --accent: #f4b400;
  --bg: #f5f5f8;
  --text-main: #111827;
  --text-muted: #6b7280;
  --white: #ffffff;
  --max-width: 1120px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #1e3a8a 0, #020617 38%, #020617 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.45rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(127, 29, 29, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 18px 40px rgba(127, 29, 29, 0.6);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.5);
  color: #e5e7eb;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-1px) translateZ(0);
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3.2rem 0;
  }
}

.section-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 34rem;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .brand-logo {
    height: 52px;
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.brand-text strong {
  font-size: 0.95rem;
  color: #f9fafb;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.nav-links a {
  position: relative;
  padding-block: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.18s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-cta small {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Mobile nav */

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem 1.2rem;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  transform-origin: top;
  transform: scaleY(0.9);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    max-height 0.25s ease;
}

.mobile-nav a {
  font-size: 0.88rem;
  color: #e5e7eb;
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: scaleY(1);
  max-height: 320px;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

@media (min-width: 881px) {
  .mobile-nav {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    transform: scaleY(0.9) !important;
  }
}

/* HERO */

.hero {
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.16) 0, transparent 45%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14) 0, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.flag-chip {
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248, 250, 252, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.flag-chip::before {
  content: "★";
  color: var(--accent);
  font-size: 0.7rem;
}

.hero-kicker small {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 3vw + 1.6rem, 3.3rem);
  line-height: 1.02;
  color: #f9fafb;
  margin-bottom: 0.75rem;
}

.hero-title span {
  background: linear-gradient(120deg, #f97316, #facc15, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 34rem;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.78rem;
  color: #9ca3af;
  max-width: 30rem;
  line-height: 1.5;
}

.hero-note span {
  color: var(--accent);
  font-weight: 600;
}

/* Hero visual */

.hero-visual {
  position: relative;
}

.hero-photo {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.8);
  background: #020617;
}

.hero-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (max-width: 880px) {
  .hero-photo img {
    height: auto;
  }
}

.hero-card {
  background: radial-gradient(circle at top, #1f2937 0, #020617 60%);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.6rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top right, rgba(248, 250, 252, 0.18) 0, transparent 50%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.25) 0, transparent 55%);
  opacity: 0.88;
  mix-blend-mode: screen;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.hero-banner-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.hero-banner-pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(249, 250, 251, 0.5);
  background: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-banner-pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-quote {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero-quote strong {
  color: var(--accent);
}

.story-highlight {
  border-radius: 16px;
  padding: 0.7rem 0.8rem;
  border: 1px dashed rgba(249, 250, 251, 0.5);
  font-size: 0.82rem;
  color: #fefce8;
  background: rgba(15, 23, 42, 0.65);
  margin-top: 0.4rem;
}

.hero-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.hero-tagline {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  text-align: right;
  font-weight: 600;
}

.hero-ribbon {
  position: absolute;
  bottom: -12px;
  left: 8%;
  right: 8%;
  height: 32px;
  background: linear-gradient(90deg, #dc2626, #ffffff, #1d4ed8);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.8);
}

.hero-ribbon::before {
  content: "Unbought \00B7 Unafraid \00B7 Unstoppable";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: #020617;
}

/* ISSUES */

.issues {
  background: var(--bg);
  border-radius: 36px 36px 0 0;
  margin-top: -1rem;
  box-shadow: 0 -10px 36px rgba(15, 23, 42, 0.35);
  position: relative;
  z-index: 2;
}

.issues-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

@media (max-width: 1024px) {
  .issues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .issues-grid {
    grid-template-columns: 1fr;
  }
}

.issue-card {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  position: relative;
  overflow: hidden;
}

.issue-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.16) 0, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.issue-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  border-color: rgba(37, 99, 235, 0.7);
}

.issue-card:hover::before {
  opacity: 1;
}

.issue-icon {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.issue-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.issue-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #111827;
}

.issue-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* STORY & ANTI-CORRUPTION */

.story {
  background: #0b1120;
  color: #e5e7eb;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 880px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2) 0, rgba(15, 23, 42, 1) 50%);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.6rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.26) 0, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.story-card .kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.story-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.story-card p {
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: #cbd5f5;
  position: relative;
  z-index: 1;
}

.story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.story-meta span::before {
  content: "•";
  color: var(--accent);
}

/* Oversight / corruption entity */

.oversight-subsection {
  margin-top: 3rem;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.16) 0, rgba(15, 23, 42, 1) 60%);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
}

.oversight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.8rem;
}

@media (max-width: 880px) {
  .oversight-grid {
    grid-template-columns: 1fr;
  }
}

.oversight-subsection h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: #f9fafb;
}

.oversight-subsection p {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.oversight-pill {
  font-size: 0.78rem;
  color: #e5e7eb;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248, 250, 252, 0.6);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem;
  margin-bottom: 0.7rem;
}

.oversight-list {
  list-style: none;
  margin-top: 0.6rem;
}

.oversight-list li {
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.oversight-list li::before {
  content: "◆";
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* MEDICAL FREEDOM / CANNABIS */

.split-section {
  background: var(--bg);
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  margin-top: 2.3rem;
}

@media(max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

.split-card {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.split-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.split-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  margin-top: 0.3rem;
}

.check-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.check-list li::before {
  content: "✓";
  font-size: 0.85rem;
  margin-top: 0.08rem;
  color: #16a34a;
}

.number-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.number-metric strong {
  font-size: 1.6rem;
  color: var(--secondary);
}

.number-metric span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* GET INVOLVED */

.involved {
  background: #0b1120;
  color: #e5e7eb;
}

.involved-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-top: 2.3rem;
}

@media (max-width: 880px) {
  .involved-grid {
    grid-template-columns: 1fr;
  }
}

.card-cta {
  background: radial-gradient(circle at top right, rgba(248, 250, 252, 0.08) 0, rgba(15, 23, 42, 1) 60%);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.card-cta h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.card-cta p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.6rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.field label {
  color: #e5e7eb;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.58rem 0.8rem;
  font-size: 0.82rem;
  font-family: inherit;
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field textarea {
  border-radius: 18px;
  min-height: 90px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.6);
  background: rgba(15, 23, 42, 0.95);
}

.form-footnote {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.45rem;
}

.disclaimer {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* UPDATES SECTION (home) */

.updates {
  background: var(--bg);
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.updates-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 2rem;
}

@media (max-width: 960px) {
  .updates-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.2rem 1.25rem 1.1rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  margin-bottom: 0.9rem;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.post-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #111827;
}

.post-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.subtle-link {
  font-size: 0.8rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.45rem;
  font-weight: 600;
}

.subtle-link::after {
  content: "→";
  font-size: 0.85rem;
}

.donate-block {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.donate-block h3 {
  font-size: 1.09rem;
  margin-bottom: 0.35rem;
}

.donate-block p {
  font-size: 0.86rem;
  margin-bottom: 0.6rem;
  color: #e5e7eb;
}

.donate-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.tier-pill {
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(248, 250, 252, 0.6);
  font-size: 0.78rem;
}

/* FOOTER */

.site-footer {
  background: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding: 1.8rem 0 2.4rem;
  margin-top: 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: flex-start;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  font-size: 0.78rem;
  justify-content: flex-end;
}

@media (max-width: 880px) {
  .footer-nav {
    justify-content: flex-start;
  }
}

.footer-nav a {
  color: #9ca3af;
}

.footer-nav a:hover {
  color: #e5e7eb;
}

.paid-for {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  margin-bottom: 0.3rem;
  color: #e5e7eb;
}

.district-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  margin-top: 0.25rem;
}

/* Generic WP content styling for single posts */

.wp-single-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.wp-single-content {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.wp-single-content p + p {
  margin-top: 0.6rem;
}

.wp-single-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.6rem;
}
