:root {
  --ink: #111827;
  --muted: #5a6678;
  --navy: #102f5f;
  --blue: #1f6fb8;
  --cyan: #2f9db5;
  --red: #b33142;
  --gold: #d69a2d;
  --green: #607d55;
  --paper: #ffffff;
  --mist: #eef4f7;
  --cream: #f6f0e6;
  --line: rgba(17, 24, 39, .13);
  --shadow: 0 22px 70px rgba(14, 40, 79, .16);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img, video { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #0a2347;
  color: white;
  font-size: .9rem;
  font-weight: 760;
}
.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 47, 95, .12);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  min-width: 290px;
}
.brand img { width: 76px; }
.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.05;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: .18rem;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .2rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 760;
  font-size: .92rem;
  padding: .55rem .68rem;
  border-radius: var(--radius);
}
.site-nav a:hover, .site-nav a.is-active { background: #edf4fa; }
.site-nav .nav-cta {
  background: var(--red);
  color: white;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--navy);
  padding: .65rem .85rem;
  font: inherit;
  font-weight: 850;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: white;
  color: var(--navy);
  border-radius: var(--radius);
  padding: .65rem .85rem;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(214,154,45,.65);
  outline-offset: 3px;
}
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, rgba(7, 25, 52, .98), rgba(16, 47, 95, .86) 48%, rgba(179, 49, 66, .72)),
    url("/veterans-expo-site/assets/sc250-feature-optimized.jpg") center/cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), transparent 70%);
}
.hero-inner {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.4rem;
  align-items: center;
  padding: 4.8rem 0 5.6rem;
}
.eyebrow {
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 900;
  font-size: .82rem;
}
.hero h1, .page-hero h1 {
  margin: 0;
  line-height: .9;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  max-width: 830px;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 720px;
  margin: 1.25rem 0 0;
  font-size: 1.2rem;
  color: rgba(255,255,255,.9);
}
.hero-copy {
  max-width: 750px;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.92);
  font-size: 1.18rem;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.15rem;
}
.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: white;
  padding: .35rem .7rem;
  font-size: .88rem;
  font-weight: 850;
}
.hero-actions, .button-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: .76rem 1rem;
  text-decoration: none;
  font-weight: 850;
  background: var(--red);
  color: white;
}
.btn.secondary { background: white; color: var(--navy); }
.btn.ghost { background: transparent; color: white; border-color: rgba(255,255,255,.65); }
.btn.outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(16,47,95,.16); }
.btn-outline.btn-on-dark,
.hero .btn-outline {
  color: white;
  border-color: rgba(255,255,255,.7);
}
.event-card {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.5);
}
.event-card img {
  display: block;
  max-height: 128px;
  margin: 0 auto 1rem;
}
.event-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.event-stat {
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem;
}
.event-stat span { display: block; color: var(--muted); font-size: .8rem; font-weight: 760; }
.event-stat strong { display: block; color: var(--navy); font-size: 1.35rem; line-height: 1.05; }
.hero-feature {
  margin-top: .9rem;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0a2347;
  color: white;
}
.hero-feature img { height: 170px; width: 100%; object-fit: cover; }
.hero-feature div { padding: 1rem; }
.section {
  padding: 5rem 0;
}
.section.white, .section-alt { background: white; }
.section.mist { background: var(--mist); }
.section:nth-of-type(odd):not(.hero):not(.section-alt) { background: #f7f9fb; }
.section.dark {
  background: #0a2347;
  color: white;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}
.section-header h1,
.section-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: .94;
  letter-spacing: 0;
}
.dark .section-header h1,
.dark .section-header h2 { color: white; }
.section-header p { color: var(--muted); margin: 0; }
.dark .section-header p { color: rgba(255,255,255,.76); }
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.path-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 34px rgba(16,47,95,.08);
}
.path-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
}
.path-card span { color: var(--red); font-weight: 900; }
.path-card h2,
.path-card h3 {
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  margin: .5rem 0;
}
.path-card p { margin-bottom: 0; }
.path-card:hover {
  border-color: rgba(179,49,66,.35);
  transform: translateY(-2px);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 2rem;
  align-items: start;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 14px 44px rgba(16,47,95,.08);
}
.panel.dark-panel {
  background: #102f5f;
  color: white;
  border-color: rgba(255,255,255,.14);
}
.panel h3, .panel h2 { margin-top: 0; color: var(--navy); line-height: 1.05; }
.dark-panel h3, .dark-panel h2 { color: white; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.metric {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.metric strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.resource-card, .story-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 32px rgba(16,47,95,.07);
}
.badge {
  align-self: flex-start;
  display: inline-flex;
  border-radius: 999px;
  padding: .32rem .6rem;
  background: #eef4fa;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
}
.badge.gold { background: #fff0ce; color: #755006; }
.badge.red { background: #fae6e9; color: #842232; }
.resource-card h3, .story-card h3 {
  color: var(--navy);
  line-height: 1.04;
  margin: .75rem 0 .5rem;
}
.resource-card p, .story-card p, .panel p, .path-card p {
  color: var(--muted);
}
.dark .resource-card p { color: var(--muted); }
.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 760;
}
.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
}
.sponsor-logo {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sponsor-logo img { max-height: 66px; object-fit: contain; }
.page-hero {
  background: linear-gradient(125deg, #0a2347, #102f5f 62%, #b33142);
  color: white;
  padding: 5rem 0;
}
.page-hero p { max-width: 760px; color: rgba(255,255,255,.84); font-size: 1.12rem; }
.next-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(7,25,52,.98), rgba(16,47,95,.9) 44%, rgba(179,49,66,.78)),
    url("/veterans-expo-site/assets/veterans-expo-poster-optimized.jpg") center/cover;
}
.next-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
}
.next-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: 2rem;
  align-items: center;
  min-height: 680px;
  padding: 5rem 0 5.6rem;
}
.next-hero-copy h1 {
  margin: 0;
  max-width: 830px;
  color: white;
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  line-height: .9;
}
.next-hero-copy p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-size: 1.22rem;
}
.next-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.next-event-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.next-event-card img {
  display: block;
  max-height: 122px;
  margin: 0 auto 1rem;
}
.next-event-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.next-event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: .8rem;
}
.next-event-facts div {
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem;
}
.next-event-facts span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.next-event-facts strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.05;
}
.quick-actions-band {
  padding: 1rem 0;
  background: #0a2347;
}
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}
.quick-actions-grid a {
  display: block;
  min-height: 112px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: white;
  padding: 1rem;
  text-decoration: none;
}
.quick-actions-grid a:hover { background: rgba(255,255,255,.14); }
.quick-actions-grid span {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.quick-actions-grid strong {
  display: block;
  margin-top: .35rem;
  line-height: 1.15;
}
.event-intro h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .96;
}
.event-detail-list {
  display: grid;
  gap: .85rem;
}
.event-detail-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .9rem;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 32px rgba(16,47,95,.07);
}
.event-detail-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 900;
}
.event-detail-list h2 {
  margin: 0 0 .25rem;
  color: var(--navy);
  font-size: 1.15rem;
}
.event-detail-list p { margin: 0; color: var(--muted); }
.archive-link-panel {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 32px rgba(16,47,95,.07);
  padding: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}
.archive-link-panel:hover { border-color: rgba(179,49,66,.32); transform: translateY(-2px); }
.archive-link-panel span {
  display: block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.archive-link-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.05;
  margin-top: .25rem;
}
.archive-link-panel em {
  display: block;
  color: var(--muted);
  font-style: normal;
  margin-top: .35rem;
}
.archive-hero {
  background:
    linear-gradient(125deg, rgba(10,35,71,.96), rgba(16,47,95,.86), rgba(96,125,85,.72)),
    url("/veterans-expo-site/assets/sc250-feature-optimized.jpg") center/cover;
}
.resource-hero {
  background:
    linear-gradient(125deg, rgba(10,35,71,.96), rgba(31,111,184,.82), rgba(96,125,85,.76)),
    url("/veterans-expo-site/assets/sc250-feature-optimized.jpg") center/cover;
}
.filter-demo {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}
.filter-demo input, .filter-demo select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem;
  font: inherit;
}
.site-footer {
  background: #081d3a;
  color: white;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-grid img {
  max-width: 180px;
  background: white;
  border-radius: var(--radius);
  padding: .5rem;
}
.footer-grid a { display: block; color: white; margin: .35rem 0; }
@media (max-width: 900px) {
  .site-header { position: relative; }
  .nav-shell, .topbar .container { align-items: flex-start; }
  .site-nav { justify-content: flex-start; }
  .hero-inner, .section-header, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 3.5rem 0; }
  .path-grid, .cards, .sponsor-strip, .metric-row { grid-template-columns: 1fr; }
  .filter-demo { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 3.35rem; }
}
/* Production PHP compatibility aliases */
.top-strip { background: #0a2347; color: white; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; padding: .55rem 1rem; font-size: .9rem; font-weight: 760; }
.event-panel { background: rgba(255,255,255,.97); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem; border: 1px solid rgba(255,255,255,.5); }
.event-panel img { display: block; max-height: 128px; margin: 0 auto 1rem; }
.event-kicker { margin: 0 0 .75rem; color: var(--red); font-size: .78rem; font-weight: 900; text-align: center; text-transform: uppercase; }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
.stat { background: #f6f8fb; border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem; }
.stat span { display: block; color: var(--muted); font-size: .8rem; font-weight: 760; }
.stat strong { display: block; color: var(--navy); font-size: 1.35rem; line-height: 1.05; }
.stat small { display: block; color: var(--muted); font-size: .76rem; line-height: 1.2; margin-top: .25rem; }
.event-panel-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-top: .8rem; }
.event-panel-actions a { border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); font-weight: 850; padding: .65rem; text-align: center; text-decoration: none; }
.event-panel-actions a:hover { background: #edf4fa; }
.pathway-grid, .card-grid, .resource-grid, .post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature-card, .content-card, .form-card, .agenda-card, .agenda-item, .resource-card, .post-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; box-shadow: 0 10px 32px rgba(16,47,95,.07); }
.feature-card h2, .content-card h2, .form-card h2, .agenda-card h2, .resource-card h2, .post-card h2 { color: var(--navy); line-height: 1.04; margin: .35rem 0 .55rem; }
.feature-card p, .content-card p, .form-card p, .agenda-card p, .resource-card p, .post-card p { color: var(--muted); }
.meta-row { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .85rem; font-weight: 760; }
.card-top { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.1rem; }
.btn-small { min-height: 36px; padding: .48rem .72rem; font-size: .88rem; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary { background: white; color: var(--navy); }
.site-ad img, .ad-placement img { max-height: 66px; object-fit: contain; }
.ad-placement { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; margin: 1rem 0; box-shadow: 0 10px 32px rgba(16,47,95,.07); }
.ad-placement a { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; text-decoration: none; }
.ad-placement span { color: var(--red); text-transform: uppercase; font-size: .72rem; font-weight: 900; }
.logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .85rem; }
.sponsor-card { min-height: 132px; display: flex; align-items: center; justify-content: center; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: 0 10px 32px rgba(16,47,95,.07); }
.sponsor-card:hover { border-color: rgba(179,49,66,.32); transform: translateY(-2px); }
.sponsor-card img { max-height: 74px; width: 100%; object-fit: contain; }
.agenda-list { display: grid; gap: .8rem; }
.agenda-card { display: grid; grid-template-columns: 105px 1fr; gap: 1rem; align-items: start; }
.agenda-time { color: var(--red); font-weight: 900; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem; font: inherit; }
.filter-panel { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: .75rem; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.filter-panel input, .filter-panel select { border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem; font: inherit; }
.resource-count { color: var(--muted); font-weight: 760; }
.compact-section-header { margin-top: 1.5rem; }
.featured-resource-grid { margin-bottom: 1.5rem; }
.featured-resource-card { min-height: 0; }
.compact-directory { display: grid; gap: .85rem; }
.resource-category-group { background: white; border: 1px solid var(--line); border-radius: 8px; padding: .75rem; box-shadow: 0 8px 22px rgba(16,47,95,.05); }
.compact-category-heading { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; border-bottom: 1px solid var(--line); padding-bottom: .5rem; margin-bottom: .25rem; }
.compact-category-heading h2 { color: var(--navy); font-size: 1rem; line-height: 1.2; margin: 0; }
.compact-category-heading span { color: var(--muted); font-size: .78rem; font-weight: 900; white-space: nowrap; }
.compact-resource-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: .75rem; }
.compact-resource-item { display: grid; grid-template-columns: minmax(130px, 1fr) minmax(90px, .65fr) auto auto; gap: .4rem; align-items: center; border-bottom: 1px solid #edf1f6; padding: .34rem .2rem; min-width: 0; }
.compact-resource-name { color: var(--navy); font-size: .9rem; font-weight: 850; line-height: 1.2; text-decoration: none; overflow-wrap: anywhere; }
.compact-resource-name:hover { text-decoration: underline; }
.compact-resource-meta { color: var(--muted); font-size: .74rem; line-height: 1.2; }
.compact-resource-label { background: #fff0ce; color: #755006; border-radius: 999px; padding: .14rem .42rem; font-size: .66rem; font-weight: 900; white-space: nowrap; }
.compact-resource-visit { color: var(--red); font-size: .72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: 0; }
.compact-resource-visit:hover { text-decoration: underline; }
.resource-category-group[hidden], .compact-resource-item[hidden] { display: none !important; }
.detail-list dt { color: var(--navy); font-weight: 900; }
.detail-list dd { margin: 0 0 .75rem; color: var(--muted); }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-logo { max-width: 180px; background: white; border-radius: var(--radius); padding: .5rem; }
.mobile-action-bar { display: none; }
#cookie-consent-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.cookie-consent-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-consent-actions { display: flex; gap: .5rem; }
@media (max-width: 900px) {
  body { padding-bottom: 58px; }
  .container { width: min(100% - 24px, 1180px); }
  .top-strip { font-size: .82rem; gap: .55rem; }
  .nav-shell { min-height: auto; align-items: center; flex-wrap: wrap; padding: .65rem 0; }
  .brand { min-width: 0; flex: 1; }
  .brand img { width: 58px; }
  .brand small { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; justify-content: flex-start; padding-top: .5rem; }
  .site-nav.open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem; }
  .site-nav a { background: #f6f8fb; }
  .hero-inner, .section-header, .split, .footer-grid { grid-template-columns: 1fr; }
  .next-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 3.2rem 0 3.8rem; }
  .next-hero-copy h1 { font-size: clamp(2.85rem, 14vw, 4.4rem); }
  .next-hero-copy p { font-size: 1.04rem; }
  .next-event-facts, .quick-actions-grid { grid-template-columns: 1fr; }
  .quick-actions-grid a { min-height: auto; }
  .event-detail-list article { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 3rem 0 3.4rem; gap: 1.5rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.9rem, 15vw, 4.5rem); }
  .hero-copy { font-size: 1.04rem; }
  .section { padding: 3.3rem 0; }
  .section-header { gap: .7rem; align-items: start; }
  .section-header h1, .section-header h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .pathway-grid, .card-grid, .resource-grid, .post-grid, .filter-panel, .form-grid, .compact-resource-list, .logo-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 185px; }
  .stat-grid, .event-panel-actions { grid-template-columns: 1fr; }
  .agenda-card { grid-template-columns: 1fr; gap: .25rem; }
  .compact-resource-item { grid-template-columns: 1fr auto; }
  .compact-resource-meta { grid-column: 1 / -1; }
  .form-grid .full { grid-column: auto; }
  .footer-bottom { padding-bottom: .5rem; }
  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(16,47,95,.12);
  }
  .mobile-action-bar a {
    color: var(--navy);
    font-size: .82rem;
    font-weight: 900;
    padding: .85rem .3rem;
    text-align: center;
    text-decoration: none;
  }
  .mobile-action-bar a + a { border-left: 1px solid var(--line); }
}
