/* =============================================
   alergeny.cz — Kompletní průvodce alergiemi
   ============================================= */

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

:root {
  --primary-dark: #1a2744;
  --primary: #2c5282;
  --primary-light: #4a7cc9;
  --primary-pale: #e8f0fe;
  --accent: #6b46c1;
  --accent-light: #f0ebfa;
  --orange: #e67e22;
  --orange-light: #fef3e2;
  --red: #c0392b;
  --red-light: #fdeaea;
  --green: #27ae60;
  --green-light: #e8f8f0;
  --teal: #0d9488;
  --teal-light: #e6faf8;
  --bg: #f8f9fc;
  --bg-card: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a6578;
  --text-white: #fff;
  --border: #e2e8f0;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.1);
  --radius: 10px;
  --max-width: 1120px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); text-decoration: underline; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ========================
   HEADER & NAVIGATION
   ======================== */
.site-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.site-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo:hover { color: #b8d4f0; text-decoration: none; }
.site-logo .logo-icon { font-size: 1.5rem; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.main-nav a {
  color: rgba(255,255,255,0.88);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--text-white);
  text-align: center;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.hero p {
  font-size: 1.18rem;
  opacity: 0.92;
  max-width: 660px;
  margin: 0 auto 32px;
  position: relative;
}
.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.hero-cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: #fff !important;
}
.btn-primary:hover { background: #d35400; text-decoration: none !important; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); text-decoration: none !important; }

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ========================
   PAGE CONTENT
   ======================== */
.page-content { padding: 40px 0 60px; }

.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.6;
}

.content-section { margin-top: 48px; }

h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--primary-pale);
}
h2:first-of-type,
.content-section h2:first-child { margin-top: 0; }

h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 10px;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 6px; }
li strong { color: var(--text); }

/* ========================
   CARDS GRID
   ======================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 28px 0 36px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  color: inherit;
}
a.card { text-decoration: none; }
a.card:hover { text-decoration: none; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.card h3 { margin-top: 0; font-size: 1.15rem; color: var(--primary-dark); }
.card p { color: var(--text-light); font-size: 0.95rem; flex: 1; }
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}
.card-link:hover { color: var(--primary-light); }

/* ========================
   STAT BOXES
   ======================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.stat-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  display: block;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* ========================
   INFO BOXES
   ======================== */
.info-box {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid;
}
.info-box h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: inherit;
}
.info-box p:last-child { margin-bottom: 0; }
.info-box-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box.warning {
  background: var(--orange-light);
  border-color: var(--orange);
}
.info-box.warning h3,
.info-box.warning .info-box-title { color: #b8650d; }

.info-box.danger {
  background: var(--red-light);
  border-color: var(--red);
}
.info-box.danger h3,
.info-box.danger .info-box-title { color: var(--red); }

.info-box.info {
  background: var(--primary-pale);
  border-color: var(--primary);
}
.info-box.info h3,
.info-box.info .info-box-title { color: var(--primary); }

.info-box.success {
  background: var(--green-light);
  border-color: var(--green);
}
.info-box.success h3,
.info-box.success .info-box-title { color: #1a8a4a; }

.info-box.tip {
  background: var(--accent-light);
  border-color: var(--accent);
}
.info-box.tip h3,
.info-box.tip .info-box-title { color: var(--accent); }

/* ========================
   TABLES
   ======================== */
.table-wrap { overflow-x: auto; margin: 24px 0; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
thead { background: var(--primary); color: #fff; }
th {
  padding: 12px 16px;
  font-weight: 600;
  text-align: left;
  font-size: 0.92rem;
}
td {
  padding: 11px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
tbody tr:hover { background: var(--primary-pale); }
tbody tr:last-child td { border-bottom: none; }

/* Allergen table special styling */
.allergen-table td:first-child {
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}

/* ========================
   BADGES
   ======================== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.badge-success { background: var(--green-light); color: var(--green); }
.badge-warning { background: var(--orange-light); color: #b8650d; }
.badge-danger { background: var(--red-light); color: var(--red); }
.badge-info { background: var(--primary-pale); color: #1a3a5c; }
.badge-accent { background: var(--accent-light); color: var(--accent); }

/* ========================
   STEPS / PROCEDURE
   ======================== */
.steps { list-style: none; margin: 24px 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 56px;
  margin-bottom: 12px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ========================
   TIMELINE
   ======================== */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-pale);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--primary-pale);
}
.timeline-label { font-weight: 700; color: var(--primary); font-size: 0.9rem; }

/* ========================
   POLLEN CALENDAR
   ======================== */
.pollen-calendar { overflow-x: auto; margin: 24px 0; }
.pollen-calendar table { min-width: 800px; }
.pollen-calendar th { font-size: 0.82rem; padding: 10px 8px; text-align: center; }
.pollen-calendar td { text-align: center; padding: 8px 6px; font-size: 0.85rem; }
.pollen-calendar td.low { background: #e8f5e9; color: #1b5e20; }
.pollen-calendar td.medium { background: #fff3e0; color: #e65100; }
.pollen-calendar td.high { background: #ffebee; color: #b71c1c; }
.pollen-calendar td.peak { background: #f44336; color: #fff; font-weight: 600; }

/* ========================
   COMPARISON / TWO COLUMNS
   ======================== */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.comparison-col {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid;
}
.comparison-col.positive { border-color: var(--green); }
.comparison-col.negative { border-color: var(--red); }
.comparison-col h3 { margin-top: 0; }

/* ========================
   CHECKLIST
   ======================== */
.checklist {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.checklist li {
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========================
   EMERGENCY BOX
   ======================== */
.emergency-box {
  background: linear-gradient(135deg, var(--red), #e74c3c);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}
.emergency-box h2,
.emergency-box h3 { color: #fff; border: none; margin-top: 0; padding-bottom: 0; }
.emergency-box p { opacity: 0.95; }
.emergency-box strong { color: #fff; }
.emergency-box .phone {
  font-size: 2rem;
  font-weight: 800;
  display: inline-block;
  margin: 8px 12px 8px 0;
  background: rgba(255,255,255,0.2);
  padding: 4px 16px;
  border-radius: 6px;
}

/* ========================
   MYTHS / FACTS
   ======================== */
.myth-fact {
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.myth-part {
  padding: 14px 20px;
  background: var(--red-light);
  border-left: 4px solid var(--red);
}
.myth-part strong { color: var(--red); }
.fact-part {
  padding: 14px 20px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
}
.fact-part strong { color: var(--green); }

/* ========================
   SECTION ANCHOR LINKS
   ======================== */
.section-nav {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.section-nav h3 { margin: 0 0 12px; font-size: 1rem; color: var(--text-light); }
.section-nav ul { list-style: none; margin: 0; padding: 0; columns: 2; }
.section-nav li { margin-bottom: 6px; break-inside: avoid; }
.section-nav a { font-size: 0.95rem; font-weight: 500; }

/* ========================
   FAQ ACCORDION
   ======================== */
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 48px 16px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.5;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--primary-pale); }
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform var(--transition);
}
.faq-question.active::after {
  content: "\2212";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================
   CROSS-REACTION GRID
   ======================== */
.cross-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.cross-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.cross-item h4 { margin-top: 0; color: var(--accent); }
.cross-item p { font-size: 0.92rem; color: var(--text-light); }

/* ========================
   ALLERGEN CARDS
   ======================== */
.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.allergen-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}
.allergen-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.allergen-card .allergen-icon { font-size: 1.8rem; }
.allergen-card .allergen-number {
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.allergen-card .foods { font-size: 0.9rem; color: var(--text-light); }
.allergen-card .severity {
  margin-top: 12px;
  font-size: 0.85rem;
}
.allergen-card .hidden-in,
.hidden-in {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
  padding: 6px 10px;
  background: var(--primary-pale);
  border-radius: var(--radius);
  line-height: 1.5;
}

/* ========================
   TREATMENT COLUMNS
   ======================== */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.treatment-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.treatment-card h3 { margin-top: 0; }
.treatment-card .badge { position: absolute; top: 16px; right: 16px; }

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 40px 24px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 3px 0;
  font-size: 0.92rem;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col p { font-size: 0.9rem; line-height: 1.6; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 12px 16px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: 6px; font-size: 0.95rem; }

  .hero { padding: 50px 20px 45px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }

  .page-title { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .comparison { grid-template-columns: 1fr; }
  .cross-grid { grid-template-columns: 1fr; }
  .allergen-grid { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
  .section-nav ul { columns: 1; }

  .steps li { padding-left: 48px; }

  table { font-size: 0.88rem; }
  th, td { padding: 8px 12px; }

  .emergency-box { padding: 20px; }
  .emergency-box .phone { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 1.6rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-number { font-size: 1.8rem; }
  .hero-cta a { width: 100%; text-align: center; }
  .pollen-calendar table { min-width: 600px; }
}

/* ========================
   CROSS-REACT BOXES (pylové stránky)
   ======================== */
.cross-react {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.cross-react-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.cross-react-item h4 { margin-top: 0; color: var(--accent); }
.cross-react-item p { font-size: 0.93rem; }
.cross-react-item em { color: var(--text-light); }

/* ========================
   POLLEN LEGEND + TABLE EXTRAS
   ======================== */
.pollen-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.pollen-legend span { display: inline-flex; align-items: center; gap: 6px; }
.pollen-legend .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.pollen-table td.low { background: #e8f5e9; color: #1b5e20; }
.pollen-table td.medium { background: #fff3e0; color: #e65100; }
.pollen-table td.high { background: #ffebee; color: #b71c1c; }
.pollen-table td.peak { background: #f44336; color: #fff; font-weight: 600; }

/* ========================
   ALLERGEN NUM (potravinové stránky)
   ======================== */
.allergen-num {
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================
   TWO COLUMNS
   ======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .cross-react { grid-template-columns: 1fr; }
}

/* ========================
   PURPLE INFO BOX
   ======================== */
.info-box.purple {
  background: var(--accent-light);
  border-color: var(--accent);
}
.info-box.purple h3,
.info-box.purple .info-box-title { color: var(--accent); }

/* ========================
   PRINT STYLES
   ======================== */
@media print {
  .site-header, .nav-toggle, .hero-cta, .site-footer { display: none; }
  .hero { background: none; color: var(--text); padding: 20px 0; }
  .hero h1 { color: var(--primary-dark); font-size: 1.8rem; }
  body { font-size: 12pt; line-height: 1.5; }
  .info-box { border: 1px solid #ccc; }
  .emergency-box { background: none; color: var(--text); border: 2px solid var(--red); }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
