/* rethink-climate-causes.info — shared stylesheet */

/* ---------- Image treatments ---------- */
.feature-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: block;
}
.figure-wrap { margin: 0; }
.figure-wrap figcaption {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
}
.cover-image {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(12,35,64,0.28);
  display: block;
  margin: 0 auto;
}
.card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
  margin: -22px -22px 16px;
  width: calc(100% + 44px);
}

:root {
  --navy: #0c2340;
  --navy-dark: #081729;
  --teal: #14636b;
  --teal-light: #1a7f89;
  --gold: #c99a3d;
  --gold-light: #e0b85c;
  --off-white: #f6f4ef;
  --paper: #ffffff;
  --ink: #1b2430;
  --ink-soft: #4a5568;
  --border: #dfe3e8;
  --success: #2f7d4f;
  --radius: 10px;
  --max-width: 1120px;
  --shadow: 0 4px 18px rgba(12, 35, 64, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4, .display {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

a { color: var(--teal-light); }
a:hover { color: var(--gold); }

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

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

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.brand span { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  color: #dce6ee;
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.nav-toggle { display: none; }

/* ---------- Nav dropdown (Ecosystem) ---------- */
.nav-drop { position: relative; }
.nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: #dce6ee;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-drop-toggle:after { content: "▾"; font-size: 0.65rem; color: var(--gold-light); }
.nav-drop:hover .nav-drop-toggle,
.nav-drop:focus-within .nav-drop-toggle,
.nav-drop.open .nav-drop-toggle,
.nav-drop-toggle.active { color: var(--gold-light); }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  min-width: 230px;
  display: none;
  z-index: 200;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu-inner {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  padding: 8px;
}
.nav-drop-menu-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 7px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--navy);
}
.nav-drop-menu-inner a:hover { background: var(--off-white); color: var(--teal-light); }
.nav-drop-menu-inner a .ext { font-size: 0.7rem; font-weight: 600; color: var(--ink-soft); }
.nav-drop-menu-inner .drop-divider { height: 1px; background: var(--border); margin: 6px 4px; }

@media (max-width: 760px) {
  .nav-row { flex-wrap: wrap; gap: 10px; }
  .nav-links { gap: 14px; font-size: 0.8rem; }
  .nav-drop-menu { position: static; padding-top: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
}

.hero .eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero p.lead {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  color: #cfd9e4;
  max-width: 640px;
  margin: 0 0 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-dark); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-light); }

.placeholder-note {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  color: #9fb0c0;
  margin-top: 6px;
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--paper); }
section.navy-block { background: var(--navy); color: #fff; }
section.navy-block h2, section.navy-block h3 { color: #fff; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 8px;
}
.section-sub {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 720px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(20, 99, 107, 0.09);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.card p, .card ul {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.pillar-card {
  text-align: center;
  padding: 26px 18px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pillar-card .icon-badge { margin: 0 auto 14px; }

/* ---------- Workflow strip ---------- */
.workflow {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0 18px;
}
.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 108px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.workflow-step .dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.workflow-step .label { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.workflow-arrow {
  align-self: center;
  color: var(--border);
  font-size: 1.3rem;
  margin: 0 2px;
  padding-top: 14px;
}

/* ---------- Lists ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.checklist li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
}
.checklist li strong { color: var(--ink); }

.numlist { list-style: none; margin: 0; padding: 0; counter-reset: num; }
.numlist li {
  counter-increment: num;
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.numlist li::before {
  content: counter(num);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

/* ---------- Quote / postulate ---------- */
.postulate {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.postulate blockquote {
  margin: 0;
  font-family: "Georgia", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: #fff;
}
.postulate cite {
  display: block;
  margin-top: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

/* ---------- Comparison ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-col {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-head {
  background: var(--navy);
  color: #fff;
  padding: 22px;
}
.compare-head .tag {
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 700;
}
.compare-head h3 { color: #fff; font-size: 1.2rem; margin: 6px 0 0; }
.compare-body { padding: 20px 22px; }
.compare-body .step {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
}
.compare-body .step:last-child { border-bottom: none; }
.compare-body .step b { color: var(--navy); }

/* ---------- Table ---------- */
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
table.data-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
}
table.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
table.data-table tr:last-child td { border-bottom: none; }

/* ---------- Email signup ---------- */
.signup-block {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.signup-block h2 { color: #fff; }
.signup-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.signup-form input[type="email"] {
  padding: 13px 16px;
  border-radius: 6px;
  border: none;
  min-width: 280px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: #fbf3e3;
  border: 1px solid #edd9a8;
  border-radius: var(--radius);
  padding: 22px 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  color: #6b5626;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #9fb0c0;
  padding: 40px 0 28px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
}
.footer-tagline {
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}
.footer-links a { color: #9fb0c0; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-fine { color: #5f7284; font-size: 0.78rem; margin-top: 14px; }

/* ---------- Misc ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.tag-pill {
  display: inline-block;
  background: rgba(201, 154, 61, 0.14);
  color: #8a6417;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 2px 4px 2px 0;
}

.callout-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.callout-list li {
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.callout-list li b { color: var(--navy); display: block; margin-bottom: 4px; }

/* ---------- Audit page additions ---------- */
h2[id], h3[id] { scroll-margin-top: 90px; }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.table-wrap table.data-table { min-width: 720px; box-shadow: none; border-radius: 0; }
.table-wrap table.data-table th { white-space: nowrap; }

.toc-box {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
}
.toc-box h3 { margin-top: 0; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.toc-box ol {
  columns: 2;
  -webkit-columns: 2;
  gap: 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  padding-left: 20px;
  margin: 0;
}
.toc-box li { break-inside: avoid; padding: 4px 0; }
@media (max-width: 640px) { .toc-box ol { columns: 1; } }

.def-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  background: var(--paper);
}
.def-table tr { border-bottom: 1px solid var(--border); }
.def-table tr:last-child { border-bottom: none; }
.def-table td { padding: 10px 14px; vertical-align: top; color: var(--ink-soft); }
.def-table td.def-label {
  width: 190px;
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
}

.candidate-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}
.candidate-head {
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
}
.candidate-head .tag { font-family: "Helvetica Neue", Arial, sans-serif; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold-light); font-weight: 700; }
.candidate-head h3 { color: #fff; margin: 4px 0 0; font-size: 1.15rem; }
.candidate-body { overflow-x: auto; }

.risk-tag {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
}
.risk-low { background: rgba(47,125,79,0.12); color: var(--success); }
.risk-med { background: rgba(201,154,61,0.16); color: #8a6417; }
.risk-high { background: rgba(178,59,59,0.12); color: #b23b3b; }

.verdict-box {
  background: var(--paper);
  color: var(--ink-soft);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.verdict-box h3 { margin-top: 0; }
/* Override the white text set by an ancestor .navy-block section — this card always has a light background */
section.navy-block .verdict-box,
section.navy-block .verdict-box p { color: var(--ink-soft); }
section.navy-block .verdict-box h3 { color: var(--navy); }
section.navy-block .verdict-box strong { color: var(--navy); }

.methodology-note {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

/* ---------- Mind Mapping / FAQ additions ---------- */
.prompt-box {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin: 16px 0 22px;
}
.prompt-box .prompt-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.prompt-box pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #e7edf3;
}

.component-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  background: var(--paper);
}
.component-table th {
  text-align: left;
  background: var(--off-white);
  color: var(--navy);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.component-table td {
  padding: 12px 14px;
  vertical-align: top;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.component-table tr:last-child td { border-bottom: none; }
.component-table td.term { font-weight: 700; color: var(--navy); white-space: nowrap; }

.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px 24px;
  margin-bottom: 14px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 20px; margin: 0; color: var(--ink-soft); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); margin-bottom: 0; }

.hat-matrix {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hat-item {
  border-bottom: 1px solid var(--border);
}
.hat-item:last-child { border-bottom: none; }
.hat-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.hat-item summary::-webkit-details-marker { display: none; }
.hat-item summary .hat-emoji { font-size: 1.2rem; }
.hat-item summary .hat-name { flex: 1; }
.hat-item summary .hat-chevron {
  color: var(--ink-soft);
  font-size: 0.8rem;
  transition: transform 0.15s ease;
}
.hat-item[open] summary .hat-chevron { transform: rotate(180deg); }
.hat-item[open] summary { border-bottom: 1px solid var(--border); }
.hat-body {
  padding: 4px 24px 22px 58px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--paper);
}
.hat-body .hat-field { margin: 10px 0; }
.hat-body .hat-field-label { font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; }
.hat-body a.hat-download {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--teal-light);
  text-decoration: underline;
}
.hat-body .hat-audience { display: block; margin-top: 10px; font-style: italic; color: var(--ink-soft); }
