@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;1,8..60,300;1,8..60,400&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Paper & Ink — serious journalism */
  --paper:    #F0ECE2;
  --white:    #FAFAF7;
  --ink:      #0B1724;
  --ink2:     #243447;
  --ink3:     #506070;
  --rule:     #C5BFB0;
  --rule2:    #DAD5C8;
  --surface:  #E6E0D4;
  --surface2: #EBE5D8;

  /* Energy palette — no orange, no Claude */
  --accent:   #0077B6;   /* transmission blue — primary brand */
  --accent-d: #005F94;
  --electric: #00B4D8;   /* arc flash cyan */
  --electric-d:#0096B7;
  --volt:     #C8A100;   /* energy gold — markets */
  --volt-l:   #F5E6A0;
  --navy:     #0B1724;   /* deep infrastructure navy */
  --navy2:    #0E2035;
  --green:    #1B6B3A;   /* grid green */
  --blue:     #1A3F7A;   /* policy blue */
  --blue-l:   #E8F0FA;
  --amber:    #A67200;   /* commodity amber */
  --red:      #9B1C1C;   /* alert red */
  --purple:   #4A2C8C;

  /* Compatibility aliases */
  --g1: var(--ink);
  --g2: var(--ink2);
  --g3: var(--ink3);
  --g4: var(--rule);
  --g5: var(--rule2);

  --serif: 'Playfair Display', Georgia, serif;
  --body:  'Source Serif 4', Georgia, serif;
  --sans:  'Source Serif 4', Georgia, serif;
  --mono:  'DM Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ── BODY — transmission tower SVG background ── */
body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='400' viewBox='0 0 320 400'%3E%3Cg stroke='%230077B6' stroke-width='1' fill='none' opacity='0.04'%3E%3C!-- Tower 1 --%3E%3Cline x1='80' y1='20' x2='80' y2='380'/%3E%3Cline x1='80' y1='20' x2='50' y2='80'/%3E%3Cline x1='80' y1='20' x2='110' y2='80'/%3E%3Cline x1='50' y1='80' x2='110' y2='80'/%3E%3Cline x1='60' y1='130' x2='100' y2='130'/%3E%3Cline x1='65' y1='180' x2='95' y2='180'/%3E%3Cline x1='80' y1='80' x2='60' y2='130'/%3E%3Cline x1='80' y1='80' x2='100' y2='130'/%3E%3Cline x1='80' y1='130' x2='65' y2='180'/%3E%3Cline x1='80' y1='130' x2='95' y2='180'/%3E%3C!-- Wire lines from tower 1 --%3E%3Cpath d='M50 80 Q160 110 270 80' stroke-width='0.8'/%3E%3Cpath d='M50 100 Q160 130 270 100' stroke-width='0.8'/%3E%3C!-- Tower 2 --%3E%3Cline x1='240' y1='20' x2='240' y2='380'/%3E%3Cline x1='240' y1='20' x2='210' y2='80'/%3E%3Cline x1='240' y1='20' x2='270' y2='80'/%3E%3Cline x1='210' y1='80' x2='270' y2='80'/%3E%3Cline x1='220' y1='130' x2='260' y2='130'/%3E%3Cline x1='225' y1='180' x2='255' y2='180'/%3E%3Cline x1='240' y1='80' x2='220' y2='130'/%3E%3Cline x1='240' y1='80' x2='260' y2='130'/%3E%3Cline x1='240' y1='130' x2='225' y2='180'/%3E%3Cline x1='240' y1='130' x2='255' y2='180'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 400px;
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: var(--body); }

/* ── LAYOUT ── */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 48px; }

@media (max-width: 900px) {
  .container, .container-sm { padding: 0 20px; }
}

/* ── TICKER ── */
.ticker-bar {
  background: var(--navy);
  overflow: hidden; white-space: nowrap; padding: 7px 0;
  position: relative;
  border-bottom: 1px solid rgba(0,180,216,.18);
}
.ticker-bar::before, .ticker-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-bar::before { left: 0;  background: linear-gradient(to right, var(--navy), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(to left,  var(--navy), transparent); }
.ticker-track { display: inline-flex; animation: ticker 55s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px; padding: 0 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .02em; color: #7A9BB8;
}
.ticker-item::after { content: '◆'; color: var(--electric); opacity: .5; font-size: 7px; }
.ticker-label { color: var(--electric); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: 10px; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── MASTHEAD ── */
.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 var(--rule), inset 0 -1px 0 var(--rule2);
}
.masthead-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px 48px 12px; border-bottom: 1px solid var(--rule2);
}

/* ── LOGO — Load in navy, Flow in electric blue ── */
.logo-wordmark {
  font-family: var(--serif); font-size: 34px; font-weight: 900;
  line-height: 1; letter-spacing: -.02em; color: var(--ink);
  position: relative; display: inline-block;
}
.logo-wordmark span { color: var(--accent); }
.logo-wordmark::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--electric) 60%, transparent);
  opacity: .7;
}
.logo-sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink3); margin-top: 6px;
}
.masthead-date { font-family: var(--mono); font-size: 11px; color: var(--ink3); letter-spacing: .04em; }
.masthead-actions { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 8px 18px; border: 1px solid transparent;
  cursor: pointer; transition: all .18s; display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost { border-color: var(--rule); color: var(--ink3); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-d); }
.btn-dark  { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--navy2); }
.btn-electric { background: var(--electric); color: #fff; border-color: var(--electric); }
.btn-electric:hover { background: var(--electric-d); }
.btn-sm { padding: 6px 12px; font-size: 10px; }

/* ── NAV ── */
.nav-bar {
  display: flex; align-items: center; padding: 0 48px;
  overflow-x: auto; scrollbar-width: none; background: var(--white);
}
.nav-bar::-webkit-scrollbar { display: none; }
.nav-bar a {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink3); padding: 11px 14px; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all .15s; display: block;
}
.nav-bar a:hover { color: var(--ink); border-bottom-color: var(--electric); }
.nav-bar a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── DATA BAR ── */
.data-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 9px 48px; display: flex; align-items: center;
  overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid rgba(0,180,216,.1);
  position: relative;
}
.data-bar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--electric) 30%, var(--accent) 70%, transparent 100%);
  opacity: .2;
}
.data-bar::-webkit-scrollbar { display: none; }
.db-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--electric); font-weight: 500; margin-right: 24px; flex-shrink: 0;
}
.db-item  { display: flex; align-items: center; gap: 8px; padding: 0 16px; border-left: 1px solid rgba(255,255,255,.06); flex-shrink: 0; }
.db-name  { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.28); }
.db-val   { font-family: var(--mono); font-size: 12px; font-weight: 500; color: #E8F4FF; }
.db-chg   { font-family: var(--mono); font-size: 10px; padding: 2px 5px; border-radius: 2px; }
.up   { color: #52D9A0; background: rgba(82,217,160,.12); }
.down { color: #FF7070; background: rgba(255,112,112,.12); }
.flat { color: rgba(255,255,255,.35); }

/* ── SECTION HEADERS ── */
.sec-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0 10px; border-bottom: 2px solid var(--ink);
  position: relative;
}
.sec-hdr::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 48px; height: 2px;
  background: var(--electric);
}
.sec-title { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.sec-link  { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); display: flex; align-items: center; gap: 4px; transition: all .15s; }
.sec-link::after { content: '->'; }
.sec-link:hover  { color: var(--accent); gap: 8px; }

/* ── TAGS ── */
.tag { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.tag::before { content: ''; display: block; width: 14px; height: 2px; }
.tag-grid    { color: var(--green);   } .tag-grid::before    { background: var(--green);   }
.tag-policy  { color: var(--blue);   } .tag-policy::before  { background: var(--blue);    }
.tag-markets { color: var(--volt);   } .tag-markets::before { background: var(--volt);    }
.tag-agency  { color: var(--purple); } .tag-agency::before  { background: var(--purple);  }
.tag-opinion { color: var(--red);    } .tag-opinion::before { background: var(--red);     }

/* ── STORY ROW ── */
.story-row {
  display: grid; grid-template-columns: 80px 1fr;
  border-bottom: 1px solid var(--rule2); cursor: pointer;
  transition: background .15s; min-height: 88px;
}
.story-row:last-child { border-bottom: none; }
.story-row:hover { background: var(--surface); }
.story-row:hover .row-hed { color: var(--accent); }
.row-logo { display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--rule2); position: relative; overflow: hidden; }
.row-accent-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.row-logo-img { width: 32px; height: 32px; object-fit: contain; }
.row-logo-fallback { display: none; width: 32px; height: 32px; border-radius: 4px; align-items: center; justify-content: center; font-family: var(--mono); font-size: 10px; font-weight: 500; color: #fff; }
.row-content { padding: 14px 20px; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.row-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.row-entity { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink3); }
.row-hed { font-family: var(--serif); font-size: 17px; line-height: 1.3; color: var(--ink); transition: color .15s; }
.row-meta { font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); }

/* ── GRID CARDS ── */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 2px solid var(--ink); }
.grid-card { border-right: 1px solid var(--rule); cursor: pointer; transition: background .15s; display: flex; flex-direction: column; }
.grid-card:last-child { border-right: none; }
.grid-card:hover { background: var(--surface); }
.grid-card:hover .gc-hed { color: var(--accent); }
.gc-top { display: grid; grid-template-columns: 68px 1fr; border-bottom: 1px solid var(--rule2); }
.gc-logo { display: flex; align-items: center; justify-content: center; padding: 12px; border-right: 1px solid var(--rule2); position: relative; overflow: hidden; }
.gc-logo-img { width: 36px; height: 36px; object-fit: contain; }
.gc-logo-fallback { display: none; width: 36px; height: 36px; border-radius: 5px; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; font-weight: 500; color: #fff; }
.gc-logo-strip { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; }
.gc-meta { padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.gc-entity { font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); }
.gc-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.gc-hed { font-family: var(--serif); font-size: 17px; line-height: 1.3; color: var(--ink); margin-bottom: 8px; flex: 1; transition: color .15s; }
.gc-dek { font-size: 12px; line-height: 1.55; color: var(--ink3); margin-bottom: 8px; font-weight: 300; }
.gc-meta-foot { font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); margin-top: auto; }

/* ── OPINION BAND ── */
.opinion-band {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(0,180,216,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(0,119,182,.08) 0%, transparent 55%);
  border-bottom: 3px solid var(--accent);
  position: relative; overflow: hidden;
}
.opinion-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric) 40%, var(--accent) 60%, transparent);
  opacity: .3;
}
.opinion-band-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 12px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.opinion-band-title {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4);
}
.opinion-band-link { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--electric); transition: color .15s; }
.opinion-band-link:hover { color: #fff; }
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.opinion-item { padding: 20px 0 24px; border-right: 1px solid rgba(255,255,255,.06); cursor: pointer; transition: background .15s; padding-right: 24px; }
.opinion-item:last-child { border-right: none; padding-right: 0; }
.opinion-item:nth-child(2) { padding-left: 24px; padding-right: 24px; }
.opinion-item:hover { background: rgba(0,119,182,.06); }
.opinion-item:hover .oi-hed { color: var(--electric); }
.oi-type { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--electric); margin-bottom: 8px; }
.oi-hed  { font-family: var(--serif); font-size: 17px; line-height: 1.3; color: #fff; margin-bottom: 8px; transition: color .15s; }
.oi-meta { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ── NEWSLETTER STRIP ── */
.nl-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-bottom: 2px solid var(--ink);
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; padding: 28px 0; align-items: center;
  position: relative; overflow: hidden;
}
.nl-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--electric), var(--volt), transparent);
  opacity: .7;
}
.nl-eyebrow { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--electric); margin-bottom: 6px; }
.nl-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.nl-desc  { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.5); }
.nl-stats { display: flex; gap: 20px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.nl-stat-n { font-family: var(--serif); font-size: 20px; line-height: 1; margin-bottom: 2px; color: #fff; }
.nl-stat-l { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.nl-form   { display: flex; }
.nl-input  { width: 220px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.15); border-right: none; background: rgba(255,255,255,.07); color: #fff; font-family: var(--body); font-size: 14px; outline: none; transition: border-color .15s; }
.nl-input:focus { border-color: var(--electric); }
.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-btn { padding: 11px 20px; background: var(--accent); color: #fff; border: 1px solid var(--accent); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: all .15s; }
.nl-btn:hover { background: var(--electric); border-color: var(--electric); }

/* ── MINI STORIES ── */
.mini-story { padding: 11px 0; border-bottom: 1px solid var(--rule2); cursor: pointer; }
.mini-story:last-child { border-bottom: none; }
.mini-hed { font-family: var(--serif); font-size: 13.5px; line-height: 1.4; margin-bottom: 3px; transition: color .15s; }
.mini-story:hover .mini-hed { color: var(--accent); }
.story-byline { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink3); }
.read-more { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; transition: gap .18s; }
.read-more::after { content: '->'; }
.read-more:hover { gap: 8px; }

/* ── DOCKET BADGES ── */
.badge { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: 3px 7px; }
.badge-open    { background: rgba(27,107,58,.1);  color: var(--green); }
.badge-pending { background: rgba(166,114,0,.1);  color: var(--amber); }
.badge-closed  { background: var(--rule2);         color: var(--ink3);  }
.badge-urgent  { background: rgba(155,28,28,.1);  color: var(--red);   }
.badge-new     { background: rgba(0,180,216,.1);  color: var(--electric); }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 20px; }
.form-label {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink3); display: block; margin-bottom: 7px;
}
.form-input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--rule);
  background: var(--white); color: var(--ink); font-size: 14px;
  font-family: var(--body); outline: none; transition: border-color .15s;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,119,182,.08); }
.form-input::placeholder { color: var(--ink3); }
textarea.form-input { resize: vertical; min-height: 140px; line-height: 1.6; }
select.form-input { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FILTER BUTTONS ── */
.fbtn {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--rule);
  background: transparent; color: var(--ink3); cursor: pointer; transition: all .15s;
}
.fbtn:hover { border-color: var(--accent); color: var(--accent); }
.fbtn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, var(--navy) 0%, #060E1C 100%);
  color: rgba(255,255,255,.35);
  padding: 48px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--electric) 50%, var(--accent));
  opacity: .4;
}
.footer-grid { display: grid; grid-template-columns: 260px 1fr; gap: 64px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 24px; }
.footer-logo { font-family: var(--serif); font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -.01em; margin-bottom: 10px; }
.footer-logo span { color: var(--electric); }
.footer-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col-title { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.3); padding: 3px 0; transition: color .15s; }
.footer-link:hover { color: var(--electric); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: rgba(255,255,255,.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.fade-up   { animation: fadeUp .5s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }

/* ── UTILITIES ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { border: none; border-top: 1px solid var(--rule2); margin: 0; }
.hide-mobile { display: block; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .masthead-top { padding: 12px 20px 10px; }
  .nav-bar      { padding: 0 20px; }
  .data-bar     { padding: 10px 20px; }
  .hide-mobile  { display: none !important; }
  footer        { padding: 32px 20px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-story   { grid-template-columns: 1fr; }
  .hero-logo-col { border-right: none; border-bottom: 1px solid var(--rule); height: 120px; min-height: unset; }
  .grid-cards   { grid-template-columns: 1fr; }
  .grid-card    { border-right: none; border-bottom: 1px solid var(--rule); }
  .opinion-grid { grid-template-columns: 1fr; }
  .nl-strip     { grid-template-columns: 1fr; padding: 24px 0; }
  .form-row     { grid-template-columns: 1fr; }
}
