/* =====================================================================
   ASCC PREMIUM CONTENT LAYER
   Loaded LAST, after psgvp-shell.css and feature-pack.css.
   Purpose: bring every feature page to the homepage's cinematic standard
   without rebuilding the shell or touching the dynamic JS hooks.
   - Re-maps shell tokens to the REAL homepage palette (pulled from index.html)
   - Loads the site display + body fonts on feature pages
   - Adds a reusable premium component vocabulary, scoped under .ascc-main
   - Reskins (does not replace) the JS-rendered blocks
   ===================================================================== */

/* ---------------------------------------------------------------------
   1) TOKEN RE-MAP  (local fallbacks -> real homepage hex values)
   These retint the shell (header/footer/links) from teal to brand navy
   and give the content layer stable local variables.
   --------------------------------------------------------------------- */
:root {
  /* Local premium tokens (fall back to global if present, else brand hex) */
  --pc-navy:        var(--psgvp-primary, #0B2E5E);
  --pc-navy-2:      #134487;
  --pc-maroon:      var(--maroon, #6B1A2A);
  --pc-gold:        var(--gold, #C89B3C);
  --pc-gold-light:  var(--gold-light, #E8C96D);
  --pc-accent:      var(--psgvp-accent, #B45309);
  --pc-ink:         #1F2937;
  --pc-muted:       #6B7280;
  --pc-border:      #E5E7EB;
  --pc-off:         var(--off-white, #F7F9FC);
  --pc-white:       #FFFFFF;
  --pc-radius:      14px;
  --pc-radius-lg:   22px;
  --pc-shadow-sm:   0 4px 12px rgba(11,46,94,0.06);
  --pc-shadow-md:   0 12px 32px rgba(11,46,94,0.12);
  --pc-shadow-lg:   0 24px 60px rgba(11,46,94,0.18);
  --pc-display:     'Playfair Display', Georgia, serif;
  --pc-body:        'Lato', system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Retint the shell to the brand navy/gold (was teal #0b4f6c) */
  --psgvp-color-accent: #0B2E5E;
  --psgvp-color-accent-dark: #07234a;

  /* Homepage-compatible token aliases so inline var() references
     (e.g. background: var(--off-white)) resolve on feature pages too,
     since those tokens are otherwise defined only in index.html. */
  --off-white: #F7F9FC;
  --navy: #0B2E5E;
  --maroon: #6B1A2A;
  --gold: #C89B3C;
  --gold-light: #E8C96D;
}

/* Body + heading fonts on feature pages (shell defaulted to system-ui) */
body {
  font-family: var(--pc-body);
}
.psgvp-footer h2,
.psgvp-identity-copy strong {
  font-family: var(--pc-display);
}

/* =====================================================================
   2) PREMIUM CONTENT LAYER  — everything below is scoped to .ascc-main
      so it never leaks into the shell header/footer.
   ===================================================================== */
.ascc-main {
  font-family: var(--pc-body);
  color: var(--pc-ink);
}
.ascc-main h1, .ascc-main h2, .ascc-main h3, .ascc-main h4 {
  font-family: var(--pc-display);
  line-height: 1.22;
  color: var(--pc-navy);
}

/* Shared container (matches homepage 1200px rhythm) */
.ascc-main .container {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

/* Section padding rhythm + alternating backgrounds */
.ascc-main .section-pad {
  padding: clamp(48px, 7vw, 84px) 0;
}
.ascc-main .section-pad.is-tint { background: var(--pc-off); }

/* ---------- Buttons: define homepage classes + reskin shell buttons ---- */
.ascc-main .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--pc-body);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 2px solid transparent; cursor: pointer;
}
.ascc-main .btn-primary {
  background: var(--pc-navy); color: #fff;
  box-shadow: 0 4px 16px rgba(11,46,94,0.28);
}
.ascc-main .btn-primary:hover { background: var(--pc-navy-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,46,94,0.36); }
.ascc-main .btn-outline {
  background: transparent; color: var(--pc-navy); border-color: var(--pc-navy);
}
.ascc-main .btn-outline:hover { background: var(--pc-navy); color: #fff; }
.ascc-main .btn-navy {
  background: #0a2242; color: #fff;
}
.ascc-main .btn-navy:hover { background: #0f2f5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,46,94,0.36); }
.ascc-main .btn-gold {
  background: var(--pc-gold); color: #241a00;
}
.ascc-main .btn-gold:hover { background: var(--pc-gold-light); transform: translateY(-2px); }

/* Reskin the JS-rendered shell buttons so injected UI matches */
.ascc-main .psgvp-button {
  border-radius: 999px; font-family: var(--pc-body); font-weight: 700;
  letter-spacing: 0.02em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.ascc-main .psgvp-button-primary {
  background: var(--pc-navy); color: #fff; box-shadow: 0 4px 16px rgba(11,46,94,0.24);
}
.ascc-main .psgvp-button-primary:hover { background: var(--pc-navy-2); transform: translateY(-2px); }
.ascc-main .psgvp-button-secondary {
  background: transparent; color: var(--pc-navy); border: 2px solid var(--pc-navy);
}
.ascc-main .psgvp-button-secondary:hover { background: var(--pc-navy); color: #fff; }

/* ---------- HERO ------------------------------------------------------ */
.ascc-hero {
  position: relative; isolation: isolate;
  padding: clamp(72px, 12vw, 132px) 0 clamp(64px, 9vw, 104px);
  color: #fff; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,35,71,0.94) 0%, rgba(107,26,42,0.80) 54%, rgba(107,26,42,0.42) 100%),
    var(--ascc-hero-img, none) center/cover no-repeat,
    linear-gradient(135deg, #0B2E5E 0%, #6B1A2A 60%, #8B2A3E 100%);
}
.ascc-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 18% 40%, rgba(201,168,76,0.10) 0%, transparent 46%),
    radial-gradient(circle at 82% 16%, rgba(201,168,76,0.08) 0%, transparent 40%);
}
.ascc-hero .container { position: relative; z-index: 1; }
.ascc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.16); border: 1px solid rgba(201,168,76,0.42);
  color: var(--pc-gold-light);
  padding: 8px 16px; border-radius: 100px;
  font-family: var(--pc-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 20px;
}
.ascc-hero .ascc-badge::before { content: '\2605'; color: var(--pc-gold); }
.ascc-hero h1 {
  color: #fff !important; max-width: 780px;
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ascc-hero h1 em { color: var(--pc-gold-light); font-style: normal; }
.ascc-hero p {
  color: rgba(255,255,255,0.86); font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 640px; margin-bottom: 30px;
}
.ascc-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- SECTION HEADER (eyebrow + title + lede) ------------------- */
.ascc-section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 52px); }
.ascc-kicker {
  display: inline-block;
  font-family: var(--pc-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--pc-accent);
  margin-bottom: 10px;
}
.ascc-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--pc-navy); margin-bottom: 10px; }
.ascc-title::after {
  content: ''; display: block; width: 64px; height: 3px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--pc-gold), var(--pc-gold-light)); border-radius: 2px;
}
.ascc-section-head.is-left { text-align: left; margin-inline: 0; }
.ascc-section-head.is-left .ascc-title::after { margin-inline: 0; }
.ascc-subtitle { color: var(--pc-muted); font-size: 1.05rem; }

/* ---------- CARDS ----------------------------------------------------- */
.ascc-cards { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.ascc-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ascc-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ascc-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

.ascc-main .ascc-card,
.ascc-pcard {
  position: relative; background: var(--pc-white);
  border: 1px solid var(--pc-border); border-radius: var(--pc-radius);
  padding: 26px 24px; box-shadow: var(--pc-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.ascc-main .ascc-card::before,
.ascc-pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pc-navy), var(--pc-gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.ascc-main .ascc-card:hover,
.ascc-pcard:hover {
  transform: translateY(-6px); box-shadow: var(--pc-shadow-md); border-color: rgba(11,46,94,0.18);
}
.ascc-main .ascc-card:hover::before,
.ascc-pcard:hover::before { transform: scaleX(1); }
.ascc-pcard h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.ascc-pcard p { color: var(--pc-muted); }

/* Icon chip */
.ascc-card-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(11,46,94,0.10), rgba(201,168,76,0.18));
  color: var(--pc-navy); font-size: 1.4rem; font-weight: 700;
}
.ascc-card-ic svg { width: 24px; height: 24px; }

/* Meta rows (label / value) */
.ascc-meta { list-style: none; margin: 14px 0 0; padding: 0; }
.ascc-meta li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 0; border-top: 1px solid var(--pc-border); font-size: 0.94rem;
}
.ascc-meta li:first-child { border-top: 0; }
.ascc-meta .k { color: var(--pc-muted); }
.ascc-meta .v { color: var(--pc-ink); font-weight: 700; text-align: right; }

/* ---------- STEPS ----------------------------------------------------- */
.ascc-steps { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.ascc-step {
  position: relative; background: var(--pc-white); border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius); padding: 26px 22px 24px; box-shadow: var(--pc-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}
.ascc-step:hover { transform: translateY(-5px); box-shadow: var(--pc-shadow-md); }
.ascc-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; margin-bottom: 14px;
  background: var(--pc-navy); color: #fff; font-family: var(--pc-display); font-weight: 700; font-size: 1.15rem;
}
.ascc-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.ascc-step p { color: var(--pc-muted); font-size: 0.95rem; }

/* ---------- SPLIT (asymmetric two-col) + PANEL ----------------------- */
.ascc-two { display: grid; gap: 34px; grid-template-columns: 1.6fr 1fr; align-items: start; }
.ascc-two.is-even { grid-template-columns: 1fr 1fr; }
.ascc-panel {
  background: var(--pc-white); border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius); padding: 26px 24px; box-shadow: var(--pc-shadow-sm);
}
.ascc-panel h3 { font-size: 1.15rem; margin-bottom: 12px; }
.ascc-prose p { margin-bottom: 16px; color: #33404f; }
.ascc-prose p:last-child { margin-bottom: 0; }

/* ---------- LINK ROWS (documents / quick links) ---------------------- */
.ascc-linkrow { display: grid; gap: 12px; }
.ascc-linkrow a,
.ascc-linkrow .row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px; background: var(--pc-white);
  border: 1px solid var(--pc-border); border-radius: 12px;
  color: var(--pc-ink); font-weight: 600;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ascc-linkrow a:hover { transform: translateX(4px); box-shadow: var(--pc-shadow-sm); border-color: rgba(11,46,94,0.24); }
.ascc-linkrow a::after { content: '\2192'; color: var(--pc-gold); font-weight: 700; }

/* ---------- TABLE ----------------------------------------------------- */
.ascc-table-wrap { overflow-x: auto; border-radius: var(--pc-radius); box-shadow: var(--pc-shadow-sm); border: 1px solid var(--pc-border); }
.ascc-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--pc-white); }
.ascc-table thead th {
  background: var(--pc-navy); color: #fff; text-align: left;
  font-family: var(--pc-body); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
  padding: 14px 18px;
}
.ascc-table td { padding: 13px 18px; border-top: 1px solid var(--pc-border); font-size: 0.95rem; }
.ascc-table tbody tr:nth-child(even) { background: var(--pc-off); }
.ascc-table tbody tr:hover { background: rgba(201,168,76,0.10); }

/* ---------- CHIPS ----------------------------------------------------- */
.ascc-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ascc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--pc-white); border: 1px solid var(--pc-border);
  color: var(--pc-navy); font-weight: 600; font-size: 0.9rem;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.ascc-chip:hover { background: var(--pc-navy); color: #fff; border-color: var(--pc-navy); transform: translateY(-2px); }

/* ---------- CTA BAND -------------------------------------------------- */
.ascc-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--pc-radius-lg); color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(201,168,76,0.22), transparent 42%),
    linear-gradient(120deg, #0B2E5E 0%, #123a6e 46%, #6B1A2A 100%);
  box-shadow: var(--pc-shadow-lg);
}
.ascc-cta h2 { color: #fff !important; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.ascc-cta p { color: rgba(255,255,255,0.86); max-width: 560px; }
.ascc-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- CALLOUT / NOTE ------------------------------------------- */
.ascc-note {
  background: #fff; border: 1px solid var(--pc-border); border-left: 4px solid var(--pc-gold);
  border-radius: 10px; padding: 16px 20px; color: #33404f;
}
.ascc-note strong { color: var(--pc-navy); }

/* ---------------------------------------------------------------------
   2b) LEGACY-HERO UPGRADE + THEMED-BG REBRAND
   Some pages keep their existing rich markup (2-col hero grid, themed
   section backgrounds). These rules make that markup read correctly on
   the new dark .ascc-hero and repaint the teal themed backgrounds to
   the brand navy/gold.
   --------------------------------------------------------------------- */
.ascc-hero .psgvp-section-label,
.ascc-hero .ascc-kicker { color: var(--pc-gold-light); }
.ascc-hero .psgvp-lede,
.ascc-hero .ascc-subtitle { color: rgba(255,255,255,0.86); }
.ascc-hero h1 { color: #fff !important; }
.ascc-hero .ascc-feature-hero-grid,
.ascc-hero .psgvp-student-hero-grid {
  display: grid; gap: 34px; grid-template-columns: 1.55fr 1fr; align-items: start;
}
@media (max-width: 900px) {
  .ascc-hero .ascc-feature-hero-grid,
  .ascc-hero .psgvp-student-hero-grid { grid-template-columns: 1fr; }
}
.ascc-hero .ascc-panel,
.ascc-hero .psgvp-pwa-panel {
  background: rgba(255,255,255,0.97); color: var(--pc-ink);
  border: 1px solid rgba(255,255,255,0.4); box-shadow: var(--pc-shadow-lg);
}

/* Keep concise hero side panels compact on small screens. */
@media (max-width: 900px) {
  .ascc-hero .ascc-panel,
  .ascc-hero .psgvp-pwa-panel {
    padding: 20px;
  }

  .ascc-hero .ascc-panel .ascc-quick-actions:empty {
    display: none;
  }

  .ascc-hero .psgvp-pwa-panel .psgvp-action-row {
    gap: 10px;
  }
}

/* The eligibility explanation should use the same compact mobile measure as the course column. */
@media (max-width: 760px) {
  .ascc-main .ascc-info-table td:nth-child(2),
  .ascc-main .ascc-info-table th:nth-child(2) {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .ascc-main .ascc-info-table td:first-child,
  .ascc-main .ascc-info-table th:first-child {
    font-size: 0.875rem;
  }
}
.ascc-hero .ascc-panel h2,
.ascc-hero .psgvp-pwa-panel h2 { color: var(--pc-navy); }
.ascc-hero .ascc-action-row .psgvp-button-secondary,
.ascc-hero .hero-actions .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.7);
}
.ascc-hero .ascc-action-row .psgvp-button-secondary:hover,
.ascc-hero .hero-actions .btn-outline:hover { background: #fff; color: var(--pc-navy); }

/* Rebrand the legacy themed section backgrounds (were teal) to navy/gold */
.ascc-main .ascc-themed-bg {
  --ascc-theme-a: rgba(11,46,94,0.06);
  --ascc-theme-b: rgba(201,168,76,0.10);
  --ascc-theme-c: rgba(107,26,42,0.05);
  --ascc-theme-base: #f7f9fc;
}

/* Legacy component polish so the retained rich pages match the new layer */
.ascc-main .ascc-info-table thead th { background: var(--pc-navy); color: #fff; }
.ascc-main .ascc-info-table tbody tr:nth-child(even) { background: var(--pc-off); }
.ascc-main .ascc-admission-steps li::marker { color: var(--pc-gold); font-weight: 700; }
.ascc-main .ascc-list li::before { color: var(--pc-gold); }

/* =====================================================================
   3) RESKIN JS-RENDERED BLOCKS (feature-pack.js output)
      Recolour to the brand navy/gold; do not restructure.
   ===================================================================== */
.ascc-main .ascc-filter-button {
  border-radius: 999px; border: 1px solid var(--pc-border); font-weight: 700;
  color: var(--pc-navy); background: #fff; transition: all .2s ease;
}
.ascc-main .ascc-filter-button.is-active,
.ascc-main .ascc-filter-button:hover { background: var(--pc-navy); color: #fff; border-color: var(--pc-navy); }

.ascc-main .ascc-download-row {
  border: 1px solid var(--pc-border); border-radius: var(--pc-radius);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ascc-main .ascc-download-row:hover { transform: translateY(-3px); box-shadow: var(--pc-shadow-md); border-color: rgba(11,46,94,0.2); }

.ascc-main .ascc-badge {
  background: rgba(11,46,94,0.08); color: var(--pc-navy);
  border-radius: 999px; font-weight: 700; letter-spacing: 0.06em;
}
/* keep the hero badge on its dark background readable (override above) */
.ascc-hero .ascc-badge { background: rgba(201,168,76,0.16); color: var(--pc-gold-light); }

.ascc-main .ascc-native-input,
.ascc-main .ascc-form-frame,
.ascc-main .ascc-form-placeholder {
  border-radius: 12px;
}
.ascc-main .ascc-native-input:focus {
  outline: none; border-color: var(--pc-navy); box-shadow: 0 0 0 3px rgba(11,46,94,0.14);
}

/* =====================================================================
   4) SCROLL / LOAD REVEAL (CSS-only, no new JS dependency)
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .ascc-main .fade-in { opacity: 0; transform: translateY(22px); animation: asccFadeUp .6s ease forwards; }
  .ascc-main .fade-in-delay-1 { animation-delay: .12s; }
  .ascc-main .fade-in-delay-2 { animation-delay: .24s; }
  .ascc-main .fade-in-delay-3 { animation-delay: .36s; }
  .ascc-main .fade-in-delay-4 { animation-delay: .48s; }
}
@keyframes asccFadeUp { to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   5) RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .ascc-cards, .ascc-cards.cols-3, .ascc-cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .ascc-steps { grid-template-columns: repeat(2, 1fr); }
  .ascc-two, .ascc-two.is-even { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ascc-cards, .ascc-cards.cols-2, .ascc-cards.cols-3, .ascc-cards.cols-4,
  .ascc-steps { grid-template-columns: 1fr; }
  .ascc-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .ascc-main .btn,
  .ascc-hero .hero-actions .btn,
  .ascc-cta .cta-actions .btn,
  .ascc-main .psgvp-button { width: 100%; }
  .ascc-hero .hero-actions,
  .ascc-cta .cta-actions { width: 100%; }
}

/* =====================================================================
   6) FLOATING WHATSAPP FAB
   Bottom-RIGHT, stacked directly ABOVE the "Help" assistant (which sits
   at right:1rem; bottom:1rem, ~44px tall, injected by feature-pack.js).
   ===================================================================== */
.ascc-whatsapp-fab {
  position: fixed;
  left: auto;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 3.6rem);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 130;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ascc-whatsapp-fab:hover,
.ascc-whatsapp-fab:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.ascc-whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 480px) {
  .ascc-whatsapp-fab { width: 50px; height: 50px; }
  .ascc-whatsapp-fab svg { width: 27px; height: 27px; }
}

/* =====================================================================
   7) ASCC BEAUTIFY — consistent photo heroes (2026-07)
   Per the PSGVPM beautify spec: every .ascc-hero shows the campus photo
   behind the brand navy/maroon gradient with uniform white type. The
   hero already layers var(--ascc-hero-img) between its gradient and its
   fallback; some pages still point that variable at a grey placeholder
   JPG, so force the real wide campus photo across all heroes at once.
   CSS url() resolves relative to this stylesheet (assets/css/), hence
   ../../images/. !important overrides the per-page inline value.
   ===================================================================== */
.ascc-hero {
  --ascc-hero-img: url('../../images/asc-college.jpg') !important;
}

/* (Spec 5) Centre single-column heroes (heading + subtitle + buttons,
   no side info-card). Two-column heroes that hold an <aside> grid
   (.ascc-feature-hero-grid / .psgvp-student-hero-grid) and the
   department-detail hero stay left-aligned. */
.ascc-hero:not(:has(.ascc-feature-hero-grid)):not(:has(.psgvp-student-hero-grid)):not(:has([data-department-detail])) .container {
  text-align: center;
}
.ascc-hero:not(:has(.ascc-feature-hero-grid)):not(:has(.psgvp-student-hero-grid)):not(:has([data-department-detail])) .container h1,
.ascc-hero:not(:has(.ascc-feature-hero-grid)):not(:has(.psgvp-student-hero-grid)):not(:has([data-department-detail])) .container p {
  margin-inline: auto;
}
.ascc-hero:not(:has(.ascc-feature-hero-grid)):not(:has(.psgvp-student-hero-grid)):not(:has([data-department-detail])) .hero-actions {
  justify-content: center;
}
