/* ============================================
   CIVICS REMIX — Global Stylesheet
   Design: Authoritative, Bold, Movement-Energy
   Palette: Navy #0B1F4B | Gold #C88C00 | Red #C82624 | White #FFFFFF
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1F4B;
  --navy-light: #1428A0;
  --gold: #C88C00;
  --gold-light: #F0B429;
  --red: #C82624;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray-light: #E8E4DC;
  --gray-mid: #9B9B9B;
  --text-dark: #1A1A2E;
  --shadow-sm: 0 2px 8px rgba(11,31,75,0.10);
  --shadow-md: 0 6px 24px rgba(11,31,75,0.14);
  --shadow-lg: 0 16px 48px rgba(11,31,75,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { font-size: 1.05rem; color: #3a3a5c; line-height: 1.75; }

a { color: var(--navy-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: #a81f1d;
  border-color: #a81f1d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 31, 75, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,140,0,0.2);
  transition: all var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: bold;
}

.navbar-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.navbar-logo-text span { color: var(--gold); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
  background: rgba(200,140,0,0.1);
}

.navbar-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.navbar-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(20,40,160,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,140,0,0.15) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(200,140,0,0.15);
  border: 1px solid rgba(200,140,0,0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 7px 16px;
  border-radius: 10px;
  margin-bottom: 28px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.5;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ---- Section Shared ---- */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-gold {
  background: var(--gold);
}

.section-off-white {
  background: var(--off-white);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-dark .section-label { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  gap: 28px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-icon-navy { background: rgba(11,31,75,0.08); }
.card-icon-gold { background: rgba(200,140,0,0.12); }
.card-icon-red { background: rgba(200,38,36,0.08); }

.card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.card p { font-size: 0.97rem; }

/* ---- Audience Cards ---- */
.audience-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.audience-card-educators { background: #EEF2FF; border: 1px solid #C7D2FE; }
.audience-card-educators::before { background: var(--navy-light); }

.audience-card-youth { background: #FFF7ED; border: 1px solid #FED7AA; }
.audience-card-youth::before { background: #EA580C; }

.audience-card-partners { background: #F0FDF4; border: 1px solid #BBF7D0; }
.audience-card-partners::before { background: #16A34A; }

.audience-card-donate { background: #FFF1F2; border: 1px solid #FECDD3; }
.audience-card-donate::before { background: var(--red); }

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.audience-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.audience-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.audience-card p { font-size: 0.95rem; margin-bottom: 20px; }

.audience-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---- Stats Strip ---- */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---- Mission Statement ---- */
.mission-block {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.mission-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 24px;
  line-height: 1.4;
}

.mission-quote em { color: var(--gold-light); font-style: italic; }

.mission-attr {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Founding Story ---- */
.story-section {
  padding: 96px 0;
  background: var(--off-white);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-timeline {
  position: relative;
  padding-left: 32px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-light));
}

.story-beat {
  position: relative;
  margin-bottom: 36px;
}

.story-beat::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}

.story-beat h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.story-beat p {
  font-size: 0.95rem;
  color: #5a5a7a;
}

.story-text h2 { margin-bottom: 20px; }
.story-text p { margin-bottom: 16px; }

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.story-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---- Featured Lesson ---- */
.lesson-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}

.lesson-card-image {
  position: relative;
  min-height: 360px;
  background: linear-gradient(135deg, #1428A0, #0B1F4B);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lesson-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.lesson-card-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.lesson-card-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lesson-card-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.lesson-card-content h3 em {
  color: var(--gold-light);
  font-style: italic;
}

.lesson-card-content .lesson-sub {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lesson-card-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  margin-bottom: 28px;
}

.lesson-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.lesson-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ---- Method Section ---- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.method-item {
  background: var(--white);
  padding: 48px 36px;
  text-align: center;
}

.method-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 12px;
}

.method-item h3 { margin-bottom: 12px; }
.method-item p { font-size: 0.95rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,140,0,0.12) 0%, transparent 70%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Footer ---- */
.footer {
  background: #060E24;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand h3 span { color: var(--gold); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-ein {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .lesson-card { grid-template-columns: 1fr; }
  .lesson-card-image { min-height: 240px; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-item { justify-content: center; }
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  z-index: 999;
  border-bottom: 1px solid rgba(200,140,0,0.2);
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: rgba(200,140,0,0.1);
  color: var(--gold-light);
}

/* ---- Utility ---- */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ---- Story Section (dark variant on homepage) ---- */
.story-section {
  padding: 96px 0;
  background: var(--navy);
}

.story-text .section-label { color: var(--gold-light); }
.story-text h2 { color: var(--white); }
.story-text p { color: rgba(255,255,255,0.72); }
.story-text p em { color: var(--gold-light); }
.story-text p strong { color: var(--white); }

.story-timeline {
  position: relative;
  padding-left: 28px;
}

.story-beat {
  position: relative;
  padding: 20px 0 20px 0;
  border-left: 2px solid rgba(200,140,0,0.25);
  padding-left: 24px;
  margin-bottom: 4px;
}

.story-beat::before {
  content: '';
  position: absolute;
  left: -7px; top: 24px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.story-beat h4 {
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.story-beat p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ---- Mobile Nav (override to use transform instead of display:none) ---- */
.mobile-nav {
  display: flex !important;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* ---- Stats strip (off-white variant for homepage) ---- */
.stats-strip-light {
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 48px 0;
}

.stats-strip-light .stat-num { color: var(--navy); }
.stats-strip-light .stat-label { color: var(--text-mid); }

/* ---- Donate page impact cards ---- */
.impact-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ---- Recognition grid (about page) ---- */
.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

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

/* ---- Lesson sub label (white context) ---- */
.lesson-sub {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── What Is the Remix section ──────────────────────────────── */
.remix-explainer {
  padding: 5rem 2rem;
  background: #F7F9FC;
  border-top: 1px solid rgba(13, 33, 68, 0.08);
  border-bottom: 1px solid rgba(13, 33, 68, 0.08);
}

.remix-explainer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.remix-rule {
  width: 40px;
  height: 3px;
  background: #C8960C;
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}

.remix-explainer h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1A56DB;
  margin-bottom: 1.5rem;
}

.remix-core {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 400;
  color: #0D2144;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.remix-core em {
  font-style: italic;
  color: #1A56DB;
}

.remix-divider {
  width: 32px;
  height: 2px;
  background: #C8960C;
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}

.remix-tagline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: #6B7280;
  line-height: 1.5;
}

.remix-tagline strong {
  color: #0D2144;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 600px) {
  .remix-explainer { padding: 3.5rem 1.5rem; }
  .remix-core { font-size: 22px; line-height: 1.45; }
  .remix-tagline { font-size: 16px; }
}
/* ── End What Is the Remix ──────────────────────────────────── */
