/* =========================================================================
   page-press.css — styles unique to press/index.html
   All canonical tokens, .card, .btn, .container, .card-grid, .section-head
   come from foundation.css, layout.css, and design-system.css.
   ========================================================================= */

main a { color: var(--hvb-teal); text-decoration: none; }
main a:hover { text-decoration: underline; }

/* ── Secondary paragraph ─────────────────────────────────────────────────── */
.sub {
  margin: 6px 0 0;
  color: var(--hvb-slate);
  font-size: 15px;
  line-height: 1.5;
}

/* ── Textured hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 15% 10%, rgba(233, 169, 35, 0.14), rgba(233, 169, 35, 0) 62%),
    linear-gradient(180deg, rgba(14, 59, 46, 0.10), rgba(14, 59, 46, 0.02)),
    url("../textures/tx_circular-flow_tile.svg"),
    url("../textures/tx_recycled-paper_tile.png");
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: cover, cover, 560px 560px, 640px 640px;
  border-bottom: 1px solid rgba(14, 59, 46, 0.10);
}

.hero-inner { padding: 40px 0 18px; }

.hero .subhead {
  margin: 0;
  color: var(--hvb-slate);
  max-width: 92ch;
  font-size: 16.5px;
}

/* ── Boilerplate section ─────────────────────────────────────────────────── */
.boiler-section { padding: 28px 0; }

.boiler-text {
  margin: 0;
  color: var(--hvb-slate);
  font-size: 16px;
  line-height: 1.55;
  max-width: 80ch;
}

/* ── Fast facts grid ─────────────────────────────────────────────────────── */
.fast-facts-section { padding: 28px 0; }

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.fact-card {
  background: var(--hvb-paper);
  border: 1px solid rgba(14, 59, 46, 0.10);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fact-label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hvb-green);
  font-weight: 800;
}

.fact-card strong {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* ── Download list ───────────────────────────────────────────────────────── */
.download-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.download-list li { margin-bottom: 6px; }

/* ── Copy block for suggested descriptions ───────────────────────────────── */
.copy-block {
  margin: 12px 0;
  padding: 14px;
  background: rgba(31, 111, 98, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(31, 111, 98, 0.2);
  font-size: 15px;
  line-height: 1.4;
}

.copy-block strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Inline button group inside cards ────────────────────────────────────── */
.mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
