:root {
  --uc-blue: #0176de;
  --uc-navy: #173f8a;
  --uc-yellow: #fecd00;
  --uc-red: #e64848;
  --ink: #14213d;
  --text: #243244;
  --muted: #697386;
  --line: #d9e2ef;
  --soft: #f0f5fb;
  --max: 1160px;
  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(20,33,61,.07);
  --shadow-md: 0 8px 24px rgba(20,33,61,.10);
  --shadow-lg: 0 16px 48px rgba(20,33,61,.14);
  --transition: .18s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.global-menu {
  background: var(--uc-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.global-menu-inner {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.global-menu a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.global-home::after {
  content: "↗";
  margin-left: 2px;
  font-size: 10px;
}
.global-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.global-links a {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, .32);
}
.global-links a:last-child::after,
.global-links a:nth-child(1)::after,
.global-links a:nth-child(4)::after,
.global-links a:nth-child(5)::after {
  content: "↗";
  margin-left: 2px;
  font-size: 10px;
}
.global-links a:nth-child(2)::after,
.global-links a:nth-child(6)::after {
  content: "⌄";
  margin-left: 4px;
  font-size: 11px;
}
.global-links .highlight {
  color: var(--uc-yellow);
}
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 12px rgba(20,33,61,.06);
}
.nav-head {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.uc-logo img {
  display: block;
  width: 170px;
  max-height: 82px;
  object-fit: contain;
}
.site-title strong {
  display: block;
  color: var(--uc-navy);
  font-family: 'Inter', Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}
.site-title span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}
.nav-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  border-bottom: 3px solid transparent;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
  color: var(--uc-blue);
  border-color: var(--uc-yellow);
}
.hero {
  background: #fff;
  color: #fff;
}
.hero-banner {
  position: relative;
  background: #063b69;
  border-bottom: 6px solid var(--uc-yellow);
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--uc-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 800;
}
.eyebrow.light { color: #bfe0ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  color: var(--uc-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
h3 {
  color: var(--uc-navy);
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.section { padding: 64px 0; }
.section-search {
  background: linear-gradient(160deg, #f0f5fb 0%, #fff 55%);
  border-bottom: 1px solid var(--line);
}
.section-soft { background: var(--soft); }
.split,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}
.search-box,
.transport-form,
.info-panel,
.program-card,
.activity-form {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.search-box {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.info-panel:hover,
.program-card:hover {
  box-shadow: var(--shadow-md);
}
label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
input,
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid #c8d5e4;
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(1,118,222,.15);
  border-color: var(--uc-blue);
}
input::placeholder { color: #a0aec0; }
button,
.listed-link,
.room-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--uc-blue);
  color: #fff;
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(1,118,222,.25);
}
button:hover,
.listed-link:hover,
.room-tags a:hover {
  background: #015bb5;
  box-shadow: 0 4px 16px rgba(1,118,222,.35);
  transform: translateY(-1px);
}
button:active { transform: translateY(0); }
.input-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}
.hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.result {
  margin-top: 18px;
  border-left: 4px solid var(--uc-yellow);
  background: #f7fbff;
  padding: 0 16px;
  border-radius: 0 8px 8px 0;
  transition: all .2s ease;
  overflow: hidden;
  max-height: 0;
}
.result.active { padding-top: 18px; padding-bottom: 18px; max-height: 800px; }
.result.result-error { border-left-color: var(--uc-red); background: #fff5f5; }
.result.result-ok { border-left-color: #16a34a; background: #f0fdf4; border-left-width: 5px; }
.result.result-list { border-left-color: #0176de; background: #f0f9ff; border-left-width: 5px; }
.result strong { color: var(--uc-navy); }
.result a { color: var(--uc-blue); font-weight: 800; }

/* Lista de resultados múltiples */
.result-multiple {
  margin: 0;
}
.result-multiple-title {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.5;
}
.result-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.result-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.result-list-item:hover {
  border-color: var(--uc-blue);
  background: #f9fafb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.result-list-item:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.result-list-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--uc-navy);
}
.result-list-colegio {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

/* Resultado de búsqueda de sala */
.result-header { margin-bottom: 10px; }
.result-level {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--uc-blue);
}
.result-level.nivel-mayor { background: #173f8a; }
.result-level.nivel-menor { background: #0176de; }
.result-level.nivel-medio { background: #6366f1; }
.result-name {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: var(--uc-navy);
}
.result-sala {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.sala-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sala-numero {
  font-size: 32px;
  font-weight: 900;
  color: var(--uc-navy);
  line-height: 1;
}
.result-map-wrap {
  margin: 14px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--soft);
}
/* Buscador: layout centrado de ancho completo */
.search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.search-hero-text {
  text-align: center;
  margin-bottom: 28px;
}
.search-hero-text h2 { margin-bottom: 8px; }
.search-hero-text p { color: var(--muted); font-size: 16px; margin: 0; }
.search-box-wide {
  width: 100%;
  padding: 32px 36px;
}
.ubicate-frame {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}
@media (max-width: 640px) {
  .search-box-wide { padding: 22px 18px; }
  .ubicate-frame { height: 320px; }
}
.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.result-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
  transition: background var(--transition), transform var(--transition);
}
.btn-directions {
  background: #16a34a;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(22,163,74,.3);
}
.btn-directions:hover { background: #15803d; transform: translateY(-1px); }
.btn-ubicate {
  background: var(--uc-blue);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(1,118,222,.3);
}
.btn-ubicate:hover { background: #015bb5; transform: translateY(-1px); }
@media (max-width: 400px) {
  .result-actions { grid-template-columns: 1fr; }
}
.heading {
  max-width: 780px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  position: relative;
}
.heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 5px;
  background: linear-gradient(90deg, var(--uc-yellow), #ffb300);
  border-radius: 3px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
}
.info-panel--blue  { border-top: 4px solid #0176de; }
.info-panel--green { border-top: 4px solid #16a34a; }
.info-panel--yellow{ border-top: 4px solid #d97706; }
.info-panel--purple{ border-top: 4px solid #7c3aed; }
.info-panel--blue::before  { background: #0176de; }
.info-panel--green::before { background: #16a34a; }
.info-panel--yellow::before{ background: #d97706; }
.info-panel--purple::before{ background: #7c3aed; }
.info-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}
.info-panel h3 { margin: 0; font-size: 17px; }
.info-panel p  { color: var(--muted); font-size: 14px; margin: 0; flex: 1; line-height: 1.6; }
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--uc-blue);
  text-decoration: none;
}
.info-link:hover { text-decoration: underline; }
.listed-link {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}
.transport-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.transport-form label:nth-child(4) { grid-column: 1 / -1; }
.transport-form button,
.form-message { grid-column: 1 / -1; }
.form-message { min-height: 22px; color: var(--uc-navy); font-weight: 800; }
.form-success  { color: #15803d !important; }

#adminPanel {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 30, 54, .72);
  backdrop-filter: blur(4px);
  padding: 20px;
}
#adminPanel[hidden] { display: none; }
.admin-inner {
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.admin-head h2 {
  margin: 0;
  font-size: 24px;
  color: var(--uc-navy);
}
.admin-close {
  background: var(--uc-red);
  color: #fff;
  border: 0;
  border-radius: 3px;
  padding: 6px 14px;
  font-weight: 800;
  cursor: pointer;
  min-height: 36px;
}
.admin-close:hover { background: #c53030; }
.admin-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}
.admin-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.admin-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}
.admin-card-info { display: flex; flex-direction: column; gap: 4px; }
.admin-card-info strong { color: var(--uc-navy); font-size: 15px; }
.admin-count {
  display: inline-block;
  padding: 2px 10px;
  background: var(--uc-blue);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
}
.admin-dl-btn {
  background: var(--uc-navy);
  color: #fff;
  border: 0;
  border-radius: 3px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 38px;
}
.admin-dl-btn:hover { background: #0f2d6e; }
.admin-note {
  margin: 0;
  padding: 14px 16px;
  background: #fff8d6;
  border-left: 4px solid var(--uc-yellow);
  color: var(--muted);
  font-size: 13px;
}
.admin-note code {
  background: rgba(0,0,0,.06);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 12px;
}
.admin-section-sep {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
.admin-upload-section h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--uc-navy);
}
.admin-upload-section p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.admin-upload-section h4 { margin: 0 0 6px; font-size: 15px; color: var(--uc-navy); }
.admin-upload-section code {
  background: rgba(0,0,0,.06);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 13px;
}
.admin-note-inline {
  padding: 10px 14px;
  background: #fff8d6;
  border-left: 4px solid var(--uc-yellow);
  font-size: 13px !important;
  color: var(--muted) !important;
  border-radius: 4px;
  margin-bottom: 16px !important;
}
.admin-upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.admin-file-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: var(--soft);
  border: 1.5px dashed #94a3b8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--uc-navy);
  cursor: pointer;
  white-space: nowrap;
}
.admin-file-label:hover { background: #e2eaf5; }
.admin-file-name { font-size: 13px; color: var(--muted); }
.admin-process-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  background: #16a34a;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 12px;
}
.admin-process-btn:disabled { background: #9ca3af; cursor: not-allowed; }
.admin-process-btn:not(:disabled):hover { background: #15803d; }
.admin-reset-btn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  background: transparent;
  color: var(--uc-red);
  border: 1.5px solid var(--uc-red);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
}
.admin-reset-btn:hover { background: #fff5f5; }
.admin-upload-status {
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.admin-upload-loading { color: var(--muted); }
.admin-upload-ok  { color: #16a34a; }
.admin-upload-err { color: var(--uc-red); }
.admin-upload-info {
  padding: 10px 14px;
  background: var(--soft);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 480px) {
  .admin-card { flex-direction: column; align-items: flex-start; }
  .admin-dl-btn { width: 100%; text-align: center; justify-content: center; }
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.program-card {
  border-left: 4px solid var(--uc-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.program-card.wide { grid-column: 1 / -1; }
.activity-registration { grid-column: 1 / -1; }
.activity-form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 20px;
}
.activity-form label:first-child,
.activity-form label:nth-child(3),
.activity-form .check-row,
.activity-form .legal-copy,
.activity-form button,
.activity-form .form-message {
  grid-column: 1 / -1;
}
.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 700;
}
.check-row input {
  min-height: auto;
  width: 18px;
  margin-top: 3px;
}
.legal-copy {
  margin: 0;
  padding: 14px 16px;
  background: #f7fbff;
  border-left: 4px solid var(--uc-blue);
  color: var(--muted);
  font-size: 14px;
}
.program-card ul {
  margin: 0;
  padding-left: 20px;
}
.program-card li + li { margin-top: 8px; }
.notice {
  margin: 18px 0 0;
  padding: 14px;
  background: #fff8d6;
  border-left: 4px solid var(--uc-yellow);
  font-weight: 800;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.section-news { background: linear-gradient(180deg, #fff 0%, #f4f8fe 100%); }
.school-news {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}
.news-graphic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: 520px;
  padding: 24px;
  background: #071d36;
  border-radius: 4px;
  overflow: hidden;
}
.news-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(1, 118, 222, .2), transparent 42%),
    linear-gradient(315deg, rgba(254, 205, 0, .22), transparent 38%);
  pointer-events: none;
}
.ada-tile,
.trm-tile {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .22);
}
.ada-tile {
  background: #050505;
}
.ada-tile img {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
}
.ada-tile span {
  margin-top: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.trm-tile {
  background: #fff;
  color: var(--uc-navy);
}
.trm-tile span {
  font-size: clamp(58px, 7vw, 88px);
  line-height: .85;
  font-weight: 900;
  letter-spacing: 0;
}
.trm-tile strong {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.1;
}
.news-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.news-content h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}
.notification-form {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.notification-form h4,
.notification-form label:nth-child(4),
.notification-form fieldset,
.notification-form button,
.notification-form .form-message {
  grid-column: 1 / -1;
}
.notification-form h4 {
  margin: 0;
  color: var(--uc-navy);
  font-size: 22px;
}
fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid #b9c6d6;
  border-radius: 3px;
}
legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 800;
}
.level-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 14px;
}
.level-options label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.level-options input {
  min-height: auto;
  width: 16px;
}
.footer {
  background: var(--ink);
  color: #fff;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}
.footer-main h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
}
.footer p { margin: 6px 0 0; color: #cbd7e6; }
.footer a {
  display: inline-block;
  margin-left: 18px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.footer-support {
  background: var(--uc-blue);
  color: #fff;
  padding: 42px 0;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.support-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.support-grid p {
  min-height: 70px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}
.support-grid a {
  display: block;
  margin: 10px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .global-menu-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }
  .global-links {
    width: 100%;
    flex-wrap: wrap;
  }
  .global-links a {
    min-height: 30px;
    padding: 0 12px 0 0;
    margin-right: 12px;
    border-left: 0;
  }
  .nav-head,
  .split,
  .form-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .nav-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 22px 0;
  }
  .nav-links { flex-wrap: wrap; gap: 8px 16px; }
  .nav-links a { padding: 0 0 8px; }
  .info-grid,
  .program-grid,
  .school-news,
  .support-grid { grid-template-columns: 1fr 1fr; }
  .school-news { grid-template-columns: 1fr; }
  .level-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .uc-logo img { width: 145px; }
  .site-title strong { font-size: 27px; }
  .site-title span { font-size: 16px; }
  .section { padding: 52px 0; }
  .input-action,
  .transport-form,
  .activity-form,
  .notification-form,
  .info-grid,
  .program-grid,
  .support-grid { grid-template-columns: 1fr; }
  .news-graphic { min-height: auto; }
  .level-options { grid-template-columns: 1fr; }
  .program-card.wide { grid-column: auto; }
  .activity-registration { grid-column: auto; }
  .footer a { margin: 12px 16px 0 0; }
  .support-grid p { min-height: auto; }
}
