/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy:       #1e5799;
  --navy-dark:  #163f73;
  --navy-light: #2a6db5;
  --red:        #B03030;
  --red-hover:  #8C1E1E;
  --gold:       #C4A44A;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --gray-light: #EDF0F5;
  --gray:       #C8D0DB;
  --text:       #1E2B3C;
  --text-muted: #5A6A7E;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --shadow:     0 4px 24px rgba(27,58,107,0.10);
  --shadow-md:  0 8px 36px rgba(27,58,107,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
  --container:  1140px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.82); }
.section-light { background: var(--off-white); }
.section-gray  { background: var(--gray-light); }

.text-center { text-align: center; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.logo-fallback {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 2px;
  background: rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: block;
  padding: 6px 7px;
  font-family: var(--font-head);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0px;
  color: rgba(255,255,255,0.80);
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

/* Spanish nav items are longer — shrink further */
.lang-es .nav-links a {
  font-size: 0.6rem;
  padding: 6px 5px;
}
.nav-links a:hover,
.nav-links a.current {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-links a.current {
  border-bottom: 2px solid var(--gold);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 1px;
}
.lang-btn.active {
  background: var(--white);
  color: var(--navy);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(196,164,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero — inner pages (narrower) */
.hero-inner {
  padding: 64px 0 56px;
}
.hero-inner .hero-content h1 {
  letter-spacing: 3px;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176,48,48,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 640px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 0 auto;
}

.accent-bar {
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
  margin-bottom: 20px;
}
.accent-bar.center { margin: 0 auto 20px; }

/* ===== HOME — MISSION / GOAL CARDS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
  transition: var(--transition);
}
.mission-card:nth-child(2) {
  border-top-color: var(--gold);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mission-card h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 72px 24px;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 28px;
  font-weight: 800;
}

/* ===== ABOUT US — TEAM CARDS ===== */
.team-intro {
  margin-bottom: 48px;
}
.team-intro p {
  font-size: 1.05rem;
}
.specialties-bar {
  display: inline-block;
  background: var(--gray-light);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 8px;
  border: 1px solid var(--gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}
.team-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.team-role {
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.team-spec {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.citi-note {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.citi-note strong { color: var(--navy); }

/* ===== PARTICIPANTS PAGE ===== */
.info-block {
  margin-bottom: 40px;
}
.info-block h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.phase-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 3px solid var(--navy);
}
.phase-card:nth-child(2) { border-top-color: var(--navy-light); }
.phase-card:nth-child(3) { border-top-color: var(--gold); }
.phase-card:nth-child(4) { border-top-color: var(--red); }
.phase-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase-card p { font-size: 0.9rem; margin: 0; }

.rights-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.rights-list li {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text);
  border-left: 3px solid var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rights-list li::before {
  content: '\2713';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.resource-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.resource-card a {
  color: var(--navy-light);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.9rem;
}
.resource-card p {
  font-size: 0.85rem;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ===== SPONSOR PAGE ===== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.cap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cap-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
  font-family: var(--font-head);
}
.cap-list {
  list-style: none;
}
.cap-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cap-list li:last-child { border-bottom: none; }
.cap-list li::before {
  content: '\25BA';
  font-size: 0.5rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.highlights-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px;
}
.highlight-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
}
.highlight-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}

/* ===== NEWS PAGE ===== */
.news-intro-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.news-intro-block p {
  font-size: 1.05rem;
}
.news-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  margin: 24px auto;
  border-radius: 2px;
}
.news-placeholder {
  margin-top: 40px;
  padding: 40px;
  border: 2px dashed var(--gray);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.news-placeholder p {
  font-size: 0.95rem;
}

/* ===== CURRENT STUDIES ===== */
.study-none-box {
  text-align: center;
  padding: 64px 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
}
.study-none-box h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.eligibility-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
  border-top: 4px solid var(--navy);
}
.eligibility-block h3 {
  margin-bottom: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}
.contact-info h3 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-head);
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-detail-text span, .contact-detail-text a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.contact-detail-text a:hover { color: var(--white); text-decoration: underline; }

.contact-hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-hours h4 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-hours p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  margin-bottom: 28px;
  font-size: 1.3rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 220px;
  line-height: 1.5;
}
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-nav-list {
  list-style: none;
}
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-nav-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ===== UTILITIES ===== */
.contact-cta {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gray);
}
.contact-cta p { font-size: 0.95rem; margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links a { font-size: 0.65rem; padding: 6px 7px; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 3px solid var(--gold);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.85rem; padding: 10px 16px; }
  .nav-inner { position: relative; }
  .lang-switcher { margin-right: 8px; }

  .section { padding: 56px 0; }
  .hero { padding: 72px 0 56px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-box { padding: 28px 20px; }
  .contact-info { padding: 28px 24px; }

  .team-grid { grid-template-columns: 1fr; }
  .phases-grid { grid-template-columns: 1fr 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .phases-grid { grid-template-columns: 1fr; }
  .rights-list { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .highlights-strip { grid-template-columns: 1fr; }
}
