/* ============================================================
   MY420.MEDIA: GLOBAL STYLESHEET
   Mobile-first. Every rule below the tokens starts at phone width
   and scales UP via min-width media queries, never down.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ---------------- DESIGN TOKENS ---------------- */
:root {
  /* Palette */
  --bg: #F7F5EF;              /* barely-off-white, standard media-site canvas */
  --bg-raised: #FFFFFF;
  --ink: #15161A;             /* near-black body/heading text */
  --ink-soft: #55575E;
  --line: #E9E6DB;            /* warm hairline divider */
  --accent-green: #9FE83A;    /* spray-tag green, cannabis / trending / CTA */
  --accent-green-ink: #16330a;
  --accent-red: #FF5A38;      /* breaking / urgent */
  --accent-blue: #2FBFFF;     /* science / info */
  --accent-yellow: #FFC93C;   /* warning / limited-legal */
  --header-ink: #101114;

  /* Type */
  --font-display: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* Layout */
  --max-width: 1280px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 22px rgba(20, 20, 20, 0.07);
  --shadow-lg: 0 14px 34px rgba(20, 20, 20, 0.14);
}

/* ---------------- RESET ---------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: 1.18; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
:focus-visible { outline: 3px solid var(--accent-green); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---------------- HEADER ---------------- */
.site-header {
  background: var(--header-ink);
  padding: 14px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo-link { display: block; flex: none; }
.logo-link img { height: 48px; width: auto; border-radius: 8px; }

.nav-toggle {
  background: #1c1e22; border: 1px solid #2f3138; color: #fff;
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: background 0.15s ease;
}
.nav-toggle:hover { background: #24262c; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.nav-toggle span { position: relative; }
.nav-toggle::before { position: absolute; top: 16px; left: 13px; }
.nav-toggle::after { position: absolute; bottom: 16px; left: 13px; }

/* ---------------- NAV DRAWER (all screen sizes) ---------------- */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(10, 10, 12, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 90;
  backdrop-filter: blur(2px);
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

.nav-menu {
  position: fixed; top: 0; right: 0; height: 100%; width: min(90vw, 400px);
  background: var(--header-ink); z-index: 100; padding: 22px 22px 30px;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto; box-shadow: -18px 0 40px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 18px;
}
.nav-menu.is-open { transform: translateX(0); }
.nav-menu__head { display: flex; align-items: center; justify-content: space-between; }
.nav-menu__head img { height: 32px; border-radius: 6px; }
.nav-close {
  background: #1c1e22; border: 1px solid #2f3138; color: #fff; width: 38px; height: 38px;
  border-radius: 12px; font-size: 16px; line-height: 1; flex: none;
}
.nav-menu__search form { display: flex; gap: 8px; }
.nav-menu__search .search-field { flex: 1; min-width: 0; }
.nav-menu__search input,
.search-field--results input {
  background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 12px 34px 12px 15px; border-radius: 14px;
  font-size: 13.5px; width: 100%;
}
.nav-menu__search input::placeholder { color: var(--ink-soft); }

/* shared grey, rounded-square search button, identical in the drawer and the in-page search */
.nav-menu__search button[type="submit"],
.results-search-btn {
  background: #8B8D93; color: #fff; border: none;
  width: 44px; height: 44px; flex: none; border-radius: 14px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.nav-menu__search button[type="submit"]:hover,
.results-search-btn:hover { background: #797B81; }

/* shared search field + clear button, used in the drawer and the in-page results box */
.search-field { position: relative; }
.search-field input { -webkit-appearance: none; appearance: none; }
.search-field input::-webkit-search-cancel-button { display: none; }
.search-clear {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; border: none; background: transparent;
  color: var(--ink-soft); font-size: 12px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1;
}
.search-clear:hover { background: var(--line); color: var(--ink); }
.nav-menu__search .search-clear:hover { background: #e9e6db; }

.results-search-form {
  display: flex; gap: 8px; align-items: center; margin-bottom: 16px;
  max-width: 420px; width: 100%;
}
.search-field--results { flex: 1; min-width: 0; }
.search-field--results input { background: var(--bg-raised); }

.nav-menu ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-menu a {
  color: #E7E7EA; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 13px 10px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  text-align: center; background: #1c1e22; border: 1px solid #2f3138; line-height: 1.25;
}
.nav-menu a:hover, .nav-menu a:focus-visible { color: var(--accent-green); border-color: var(--accent-green); background: #202127; }
.nav-menu__standalone { padding-top: 6px; border-top: 1px solid #24262c; }
.nav-menu__standalone a {
  background: var(--accent-green); color: var(--accent-green-ink) !important;
  border-radius: 14px; text-align: center; font-weight: 800;
}
.nav-menu__signup {
  padding-top: 4px;
}
.nav-menu__signup a {
  background: var(--accent-blue); color: #06202c; border: none;
  border-radius: 16px; text-align: center; font-family: var(--font-display); font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 22px 14px; font-size: 16.5px; line-height: 1.3;
}
.nav-menu__signup a:hover { filter: brightness(1.07); }
body.nav-open { overflow: hidden; }

.search-widget { display: none; } /* legacy hook, search now lives inside the drawer */

/* ---------------- SLIM BOTTOM BAR (appears on scroll) ---------------- */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--header-ink); border-top: 1px solid #24262c;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateY(100%); opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bottom-bar.is-visible { transform: translateY(0); opacity: 1; }
.bottom-bar__logo img { height: 34px; border-radius: 6px; display: block; }
.bottom-bar .nav-toggle { width: 38px; height: 38px; border-radius: 12px; }
.bottom-bar .nav-toggle::before { top: 14px; left: 10px; }
.bottom-bar .nav-toggle::after { bottom: 14px; left: 10px; }
.bottom-bar .nav-toggle span { width: 15px; }

/* ---------------- BREAKING TICKER ---------------- */
.ticker {
  background: var(--accent-red);
  color: #1a0700;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker__label {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  background: var(--accent-red);
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.06em;
  display: flex; align-items: center; padding: 0 10px 0 14px;
  box-shadow: 10px 0 12px -6px rgba(255,90,56,0.95);
}
.ticker__viewport { overflow: hidden; padding-left: 92px; }
.ticker__track { display: inline-flex; gap: 24px; animation: ticker 90s linear infinite; padding: 9px 0; font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; }
.ticker__track a { white-space: nowrap; }
.ticker-sep { opacity: 0.55; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- AD SLOTS ---------------- */
.promo-box-wrap { text-align: center; padding: 0 16px; }
.promo-box {
  display: flex; justify-content: center; align-items: center; margin: 18px auto; overflow: hidden;
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px;
}
.promo-box img { border-radius: 8px; width: 100%; height: auto; }
.promo-box--h { max-width: 748px; }
.promo-box--v { max-width: 320px; }
.promo-box--s { max-width: 320px; }
.promo-box__eyebrow { display: block; text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--ink-soft); text-transform: uppercase; margin-bottom: 6px; }
.promo-box.promo-fallback { position: relative; min-height: 70px; background: repeating-linear-gradient(45deg, #F0EEE5, #F0EEE5 12px, #E9E6DB 12px, #E9E6DB 24px); }
.promo-box.promo-fallback img { display: none; }
.promo-box.promo-fallback::after {
  content: "🌿 Partner space"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em;
}

.sidebar-promos { display: none; }
@media (min-width: 1100px) {
  .sidebar-promos { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 92px; }
}

/* ---------------- HERO / STORY GRID ---------------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 40px 0 18px; }
.section-head h1, .section-head h2 { font-size: 28px; }
.section-head .eyebrow { font-family: var(--font-mono); font-size: 12.5px; color: var(--accent-red); letter-spacing: 0.1em; text-transform: uppercase; }

.hero-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.story-card {
  display: block; background: var(--bg-raised); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.story-card:hover, .story-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card__media { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, #1c1d21, #2b2d33); }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; }
.story-card__media.no-img::after {
  content: "🌿"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 40px; opacity: 0.5;
}
.story-card__tag {
  position: absolute; left: 12px; bottom: 12px; background: rgba(16,17,20,0.85); color: #fff;
  font-family: var(--font-mono); font-size: 10.5px; padding: 5px 11px; border-radius: 20px; letter-spacing: 0.03em;
}
.story-card__body { padding: 18px 20px 20px; }
.story-card__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.32; letter-spacing: -0.005em; }
.story-card__desc { font-size: 15px; color: var(--ink-soft); margin: 10px 0 0; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.story-card__meta { margin-top: 14px; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 6px; align-items: center; }
.story-card__source { color: var(--ink); font-weight: 700; }
.dot { opacity: 0.5; }

.story-card--hero { grid-column: 1 / -1; }
.story-card--hero .story-card__media { aspect-ratio: 16/9; }
.story-card--hero .story-card__title { font-size: 29px; font-weight: 800; }

@media (min-width: 640px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: repeat(3, 1fr); }
  .story-card--hero { grid-column: span 3; }
}

/* ---------------- CATEGORY RAILS ---------------- */
.cat-row { margin: 44px 0; }
.cat-row__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cat-row__head h2 { font-size: clamp(26px, 7vw, 40px); font-weight: 800; }
.cat-row__scroller {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.cat-row__scroller::-webkit-scrollbar { display: none; height: 0; } /* Chrome/Safari/Edge */
.cat-row__scroller .story-card { flex: 0 0 250px; scroll-snap-align: start; }

/* custom "slider" track + grip handle, built in JS so it's always visible on
   every device (iOS Safari ignores ::-webkit-scrollbar styling entirely and
   only shows scrollbars mid-scroll, so this is a real element, not CSS theming) */
.cat-row__track {
  height: 14px; background: var(--line); border-radius: 20px; margin-top: 10px;
  position: relative; overflow: hidden;
}
.cat-row__thumb {
  position: absolute; top: 0; left: 0; height: 100%;
  background-color: var(--ink);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.55) 0 2px, transparent 2px 5px);
  background-position: center; background-repeat: no-repeat; background-size: 16px 8px;
  border-radius: 20px; border: 4px solid var(--line); box-sizing: border-box;
}

/* ---------------- MAP SECTION ---------------- */
.map-section { background: var(--header-ink); color: #fff; padding: 34px 0 40px; margin-top: 10px; }
.map-section .section-head h2 { color: #fff; }
.map-section p.lede { color: #B9BBC2; max-width: 540px; font-size: 16px; margin: 4px 0 20px; }
.map-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.map-controls select {
  background: #1e2024; color: #fff; border: 1px solid #34363D; border-radius: 20px; padding: 9px 14px; font-family: var(--font-mono); font-size: 12px;
}
.legend { display: flex; flex-wrap: wrap; gap: 8px; }
.legend-chip {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px;
  padding: 6px 10px; border-radius: 20px; background: #1e2024; border: 1px solid #34363D; cursor: default;
}
.legend-chip__dot { width: 9px; height: 9px; border-radius: 50%; }

.map-wrap { position: relative; background: #16181c; border-radius: 22px; padding: 12px; border: 1px solid #262830; }
.map-wrap svg { width: 100%; height: auto; display: block; }
.state-path {
  fill: var(--state-color, #444);
  stroke: #0e0f12;
  stroke-width: 1.1;
  cursor: pointer;
  transition: opacity 0.15s ease, filter 0.15s ease;
}
.state-path:hover, .state-path:focus-visible { filter: brightness(1.35) saturate(1.2); }
.state-path.is-dimmed { opacity: 0.18; }

.map-tooltip {
  position: absolute; pointer-events: none; background: #fff; color: var(--ink);
  padding: 8px 12px; border-radius: 8px; font-size: 12px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(4px); transition: opacity 0.1s ease;
  display: flex; flex-direction: column; gap: 2px; z-index: 5; white-space: nowrap;
}
.map-tooltip strong { font-family: var(--font-display); font-size: 13px; }
.map-tooltip.is-visible { opacity: 1; }

/* ---------------- STATE PAGE HEADER ---------------- */
.state-hero { background: var(--header-ink); color: #fff; padding: 30px 0 26px; }
.state-hero__crumb { font-family: var(--font-mono); font-size: 11.5px; color: #9a9ca3; margin-bottom: 10px; }
.state-hero__crumb a { color: var(--accent-green); }
.state-hero h1 { font-size: clamp(30px, 8vw, 52px); color: #fff; }
.state-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; align-items: center; }
.status-pill { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: #101114; padding: 7px 14px; border-radius: 20px; }
.capital-chip { font-family: var(--font-mono); font-size: 12px; color: #B9BBC2; }
.fallback-note {
  display: none; background: #201f14; border: 1px solid #46421f; color: var(--accent-yellow);
  font-size: 14px; padding: 12px 16px; border-radius: 8px; margin-top: 16px; font-family: var(--font-mono);
}

/* ---------------- FOOTER ---------------- */
.site-footer { background: var(--header-ink); color: #B9BBC2; margin-top: 50px; padding: 40px 0 100px; }
.site-footer .footer-top { display: flex; flex-direction: column; gap: 24px; }
.footer-logo img { height: 44px; margin-bottom: 10px; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.footer-col h4 { font-size: 13px; color: #fff; margin-bottom: 10px; }
.footer-col a { display: block; font-size: 14.5px; padding: 5px 0; color: #B9BBC2; }
.footer-col a:hover { color: var(--accent-green); }
.footer-col--categories { grid-column: 1 / -1; }
.footer-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
.footer-cat-grid a { display: block; font-size: 14.5px; padding: 5px 0; color: #B9BBC2; }
.footer-cat-grid a:hover { color: var(--accent-green); }
.footer-bottom { border-top: 1px solid #26272c; margin-top: 26px; padding-top: 18px; font-family: var(--font-mono); font-size: 11px; color: #7d7f86; display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: space-between; }
.disclaimer { font-size: 12.5px; color: #6c6e75; margin-top: 14px; line-height: 1.6; max-width: 760px; }

@media (min-width: 700px) {
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); flex: 1; margin-left: 40px; }
  .footer-col--categories { grid-column: span 2; }
}

/* ---------------- SEARCH ---------------- */
.search-results-section { margin-top: 10px; }

/* ---------------- MISC ---------------- */
.empty-state { font-family: var(--font-mono); font-size: 14px; color: var(--ink-soft); padding: 20px 0; }
.loading-msg { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); padding: 10px 0; }
.page-intro { max-width: 680px; margin: 6px 0 0; color: var(--ink-soft); font-size: 16px; }

.two-col { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 1100px) {
  .two-col { grid-template-columns: 1fr 300px; align-items: start; }
}

/* ---------------- CATEGORY FILTER BAR ---------------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 9px; padding: 16px;
}
.filter-btn {
  flex: none; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.01em;
  background: var(--bg-raised); border: 1px solid var(--line); color: var(--ink);
  padding: 10px 16px; border-radius: 24px; white-space: nowrap; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.filter-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-btn.is-active:hover { background: var(--ink); transform: none; }
.filter-bar-wrap { background: var(--bg-raised); border-bottom: 1px solid var(--line); }

/* ---------------- FOOTER SIGNUP (Join The Weekly High) ---------------- */
.footer-signup {
  background: #0d1a24; border: 1px solid #172836; border-radius: 22px; padding: 30px 26px;
  margin-bottom: 34px; display: flex; flex-direction: column; gap: 22px; scroll-margin-top: 24px;
}
.footer-signup__intro h3 { color: #fff; font-size: 23px; }
.footer-signup__intro p { color: #9fd8ff; font-size: 15.5px; margin: 10px 0 0; max-width: 520px; line-height: 1.6; }
.footer-signup__form { background: #fff; border-radius: 16px; overflow: hidden; }
.footer-signup__form iframe { width: 100%; min-height: 820px; border: none; display: block; }
@media (min-width: 900px) {
  .footer-signup__form iframe { min-height: 600px; }
}
@media (min-width: 900px) {
  .footer-signup { flex-direction: row; align-items: flex-start; gap: 36px; }
  .footer-signup__intro { flex: 0 0 300px; }
  .footer-signup__form { flex: 1; }
}

/* ---------------- ICON BUTTON (mail / signup shortcut) ---------------- */
.icon-btn {
  background: #0d1a24; border: 1px solid #172836; color: #fff;
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: filter 0.15s ease, border-color 0.15s ease;
}
.icon-btn:hover { border-color: var(--accent-blue); filter: brightness(1.25); }
.bottom-bar .icon-btn { width: 38px; height: 38px; border-radius: 12px; font-size: 16px; }
.header-actions, .bottom-bar__actions { display: flex; align-items: center; gap: 8px; }
.back-to-top {
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: #B9BBC2;
  white-space: nowrap; padding: 6px 4px;
}
.back-to-top:hover { color: #fff; }

/* ---------------- FOOTER CTA (Tell Us A Story) ---------------- */
.footer-cta {
  background: var(--accent-green);
  border: none; border-radius: 22px; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  margin-bottom: 34px; position: relative; overflow: hidden;
}
.footer-cta h3 { color: var(--accent-green-ink); font-size: 24px; }
.footer-cta p { color: #1f3d0f; font-size: 15.5px; margin: 0; max-width: 480px; opacity: 0.9; }
.footer-cta .btn-primary {
  background: var(--accent-green-ink); color: #eafccb; font-family: var(--font-display);
  font-weight: 800; font-size: 13.5px; padding: 13px 24px; border-radius: 16px; display: inline-block;
  box-shadow: 0 8px 18px rgba(22, 51, 10, 0.25);
}
.footer-cta .btn-primary:hover { background: #0f2406; }
@media (min-width: 700px) {
  .footer-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------- TELL US A STORY PAGE ---------------- */
.story-hero { background: var(--header-ink); color: #fff; padding: 40px 0 34px; }
.story-hero h1 { font-size: clamp(30px, 8vw, 48px); color: #fff; }
.story-hero p { color: #B9BBC2; max-width: 560px; margin-top: 12px; font-size: 16.5px; }
.form-placeholder {
  background: var(--bg-raised); border: 2px dashed var(--line); border-radius: 22px;
  padding: 40px 22px; text-align: center; margin: 26px 0; color: var(--ink-soft);
}
.form-placeholder .emoji-big { font-size: 40px; display: block; margin-bottom: 12px; }
.form-placeholder h3 { text-transform: none; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.form-placeholder code {
  display: inline-block; background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 8px; font-family: var(--font-mono); font-size: 11.5px; margin-top: 10px;
}
.story-form-embed {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; margin: 26px 0;
}
.story-form-embed iframe { width: 100%; min-height: 900px; border: none; display: block; }
@media (min-width: 900px) {
  .story-form-embed iframe { min-height: 680px; }
}
.story-tips { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 26px 0; }
.story-tips div { background: var(--bg-raised); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.story-tips h4 { text-transform: none; font-family: var(--font-body); font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.story-tips p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (min-width: 700px) {
  .story-tips { grid-template-columns: repeat(3, 1fr); }
}

.legal-banner-note {
  background: #fff; border: 1px dashed var(--line); border-radius: 10px; padding: 14px 16px;
  font-size: 12.5px; color: var(--ink-soft); margin: 20px 0; font-family: var(--font-mono);
}

