/* ================================================
   CareForAmma v2 — Design System
   Static HTML/CSS/JS — No framework
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* --- CSS Variables --- */
:root {
  --bg-primary: #FDF6EE;
  --bg-secondary: #F5EDE3;
  --bg-white: #FFFFFF;
  --bg-dark: #1A2332;
  --teal: #1A6B6A;
  --teal-light: #2A8B8A;
  --teal-pale: #E8F4F3;
  --gold: #C17F24;
  --gold-light: #D4A04A;
  --text-primary: #1A2332;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-light: #F4F8FF;
  --green: #2D8B4E;
  --amber: #D4880F;
  --red: #C53030;
  --border: #E2D8CC;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --content-width: 800px;
  --page-width: 1200px;
}

/* --- Typography --- */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 16px;
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 16px;
}

h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 12px;
}

h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 8px;
}

p { margin-bottom: 16px; }
strong { font-weight: 600; }

a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
a:hover { color: var(--teal-light); }

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
li { margin-bottom: 8px; }

blockquote {
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--teal-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* --- Layout --- */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}

.content-width {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: var(--bg-secondary);
  padding: 48px 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo:hover { color: var(--teal-light); text-decoration: none; }
.logo-icon { font-size: 1.2rem; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--teal); }
.nav-desktop a.active { color: var(--teal); font-weight: 600; }

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.2rem;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.search-toggle:hover { background: var(--bg-secondary); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 8px;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.nav-mobile a:hover { background: var(--bg-secondary); }

.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
}

/* Search Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.search-overlay.open { display: flex; }

.search-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 600px;
  padding: 24px;
}

.search-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--teal); }
.search-input::placeholder { color: var(--text-muted); }

.search-results {
  margin-top: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.search-result {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid var(--border);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--teal-pale); text-decoration: none; }

.search-result-title {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.95rem;
}
.search-result-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.search-empty {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 64px 20px 48px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-stats {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--text-light);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--text-light);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal-pale);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--text-light);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--text-light);
  text-decoration: none;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--teal);
  padding: 8px 12px;
  font-weight: 500;
  cursor: pointer;
}
.btn-ghost:hover { text-decoration: underline; }

/* --- Cards --- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); }

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover { text-decoration: none; }
.card-link:hover .card { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-highlight {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
}

.card-warning {
  background: #FFF8E8;
  border-left: 4px solid var(--amber);
}

.card-urgent {
  background: #FFF5F5;
  border-left: 4px solid var(--red);
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* --- Pills / Badges --- */
.pill {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.pill-teal { background: var(--teal-pale); color: var(--teal); }
.pill-gold { background: #FFF2DC; color: var(--gold); }
.pill-green { background: #E6F7ED; color: var(--green); }
.pill-amber { background: #FFF8E8; color: var(--amber); }
.pill-red { background: #FFF5F5; color: var(--red); }
.pill-grey { background: #F0F0F0; color: var(--text-muted); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* Jump-to pills (guide navigation) */
.jump-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 32px;
}

.jump-pill {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.jump-pill:hover {
  background: var(--teal);
  color: var(--text-light);
  text-decoration: none;
}

/* --- Doctor's Note / Gentle Note --- */
.doctor-note {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.doctor-note-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.doctor-note p { color: var(--text-secondary); margin-bottom: 0; }

.gentle-note {
  background: #F7F3EE;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.gentle-note-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.gentle-note p { color: var(--text-secondary); margin-bottom: 0; }

/* --- Collapsible Sections --- */
.collapsible-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: background 0.2s;
  margin-bottom: 4px;
}
.collapsible-toggle:hover { background: var(--teal-pale); }
.collapsible-toggle .arrow { transition: transform 0.3s; font-size: 0.8rem; }
.collapsible-toggle.open .arrow { transform: rotate(180deg); }

.collapsible-content {
  display: none;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-bottom: 16px;
  background: var(--bg-white);
}
.collapsible-content.open { display: block; }

/* --- Checklists --- */
.checklist-progress {
  background: var(--bg-secondary);
  border-radius: 100px;
  height: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.checklist-progress-bar {
  background: var(--teal);
  height: 100%;
  border-radius: 100px;
  transition: width 0.3s;
}

.checklist-count {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.checklist-group-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.checklist-item:last-child { border-bottom: none; }

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}

.checklist-item label {
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.checklist-item.checked label {
  text-decoration: line-through;
  color: var(--text-muted);
}

.checklist-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* --- Reading Time --- */
.reading-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* --- Source Badges --- */
.source-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

/* --- Guide Layout --- */
.guide-header {
  padding: 48px 0 24px;
}

.guide-content {
  padding-bottom: 48px;
}

.guide-content p,
.guide-content ul,
.guide-content ol {
  max-width: var(--content-width);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(244,248,255,0.6);
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(244,248,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(244,248,255,0.5);
  line-height: 1.8;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(244,248,255,0.4);
  margin-top: 12px;
  line-height: 1.7;
}

/* --- Coffee Prompt (subtle) --- */
.coffee-prompt {
  text-align: center;
  padding: 16px;
  margin: 32px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.coffee-prompt a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.coffee-prompt a:hover { text-decoration: underline; }

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; pointer-events: auto; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }

  .hero { padding: 40px 16px 32px; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  .card-grid-2,
  .card-grid-3 { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .section { padding: 32px 0; }

  h2 { margin-top: 32px; }

  .jump-pills { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 12px; }
  .card { padding: 16px; }
  .doctor-note, .gentle-note { padding: 16px; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .search-overlay, .nav-mobile,
  .hero-buttons, .jump-pills, .checklist-actions, .coffee-prompt,
  .btn, .menu-toggle, .search-toggle { display: none !important; }

  body { background: white; color: black; font-size: 11pt; }
  .card { box-shadow: none; border: 1px solid #ccc; }
  a { color: black; text-decoration: underline; }
  .page-width, .content-width { max-width: 100%; padding: 0; }
}

/* ===== Accessibility (v12) ===== */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 1000;
  background: var(--teal, #1A6B6A);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: -3px; }

/* Clear keyboard focus for everyone, especially older/low-vision users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal, #1A6B6A);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== "Show on a phone" — clean popup (v18) ===== */
.cfa-share { margin: 18px 0; }
.cfa-share-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 0.98rem;
  background: var(--teal, #1A6B6A); color: #fff; border: 0;
  padding: 12px 20px; border-radius: 10px; cursor: pointer;
  box-shadow: 0 1px 3px rgba(15,23,42,.12);
}
.cfa-share-trigger:hover { filter: brightness(1.08); }
.cfa-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 25, 35, .6);
  align-items: center; justify-content: center; padding: 20px;
}
.cfa-modal:not([hidden]) { display: flex; }
.cfa-modal-card {
  position: relative; background: #fff; border-radius: 16px;
  max-width: 360px; width: 100%; padding: 26px 24px 22px;
  text-align: center; box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.cfa-modal-x {
  position: absolute; top: 10px; right: 12px; border: 0; background: none;
  font-size: 1.7rem; line-height: 1; color: var(--text-muted, #6B6B66); cursor: pointer;
  width: 36px; height: 36px; border-radius: 8px;
}
.cfa-modal-x:hover { background: #F0EEE8; }
.cfa-modal-title { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.3rem; color: var(--teal, #1A6B6A); }
.cfa-modal-instr { font-size: 0.95rem; color: var(--text-secondary, #6B6B66); margin: 6px 0 16px; }
.cfa-modal-qr { width: 240px; height: 240px; max-width: 78vw; image-rendering: pixelated; border: 1px solid var(--border, #D9D9D2); border-radius: 10px; }
.cfa-modal-url { font-size: 0.78rem; color: var(--text-muted, #6B6B66); word-break: break-all; margin: 12px 0 0; }
.cfa-modal-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.cfa-modal-btn {
  font: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  background: #fff; color: var(--teal, #1A6B6A); border: 1.5px solid var(--teal, #1A6B6A);
  padding: 10px 16px; border-radius: 9px;
}
.cfa-modal-btn.primary { background: var(--teal, #1A6B6A); color: #fff; border-color: var(--teal, #1A6B6A); }
.cfa-modal-btn:hover { filter: brightness(1.05); }

/* ===== Collapsible sections (v17) ===== */
.cfa-acc-bar { display: flex; justify-content: flex-end; margin: 8px 0 4px; }
.cfa-acc-toggle {
  font: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  background: none; border: 1.5px solid var(--border, #D9D9D2); color: var(--teal, #1A6B6A);
  padding: 6px 12px; border-radius: 20px;
}
.cfa-acc-toggle:hover { border-color: var(--teal, #1A6B6A); }
details.cfa-acc { border-top: 1.5px solid var(--border, #D9D9D2); }
details.cfa-acc:last-of-type { border-bottom: 1.5px solid var(--border, #D9D9D2); }
summary.cfa-acc-sum {
  cursor: pointer; list-style: none; outline: none;
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: 1.3rem; line-height: 1.3; color: var(--text-primary, #2A2A2A);
  padding: 18px 40px 18px 0; position: relative;
}
summary.cfa-acc-sum::-webkit-details-marker { display: none; }
summary.cfa-acc-sum::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 1.7rem; line-height: 1;
  color: var(--teal, #1A6B6A); transition: transform .2s ease;
}
details.cfa-acc[open] > summary.cfa-acc-sum::after { content: '\2212'; } /* minus */
summary.cfa-acc-sum:hover { color: var(--teal, #1A6B6A); }
details.cfa-acc[open] > summary.cfa-acc-sum { color: var(--teal, #1A6B6A); }
details.cfa-acc > *:not(summary) { animation: cfaFade .2s ease; }
details.cfa-acc > *:last-child { margin-bottom: 18px; }
@keyframes cfaFade { from { opacity: 0; } to { opacity: 1; } }
