/* USME Campus Theme — Main Stylesheet */
/* Extracted from header.php for browser caching */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #F7F8FC;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --dark: #0B1426;
  --blue: #1E4FD8;
  --blue-light: #EBF0FF;
  --blue-mid: #4B72F0;
  --amber: #F5A623;
  --amber-light: #FFF8ED;
  --grey: #F0F2F7;
  --grey2: #E4E7EF;
  --text: #0B1426;
  --text2: #4A5568;
  --text3: #7B879A;
  --green: #16A34A;
  --red: #DC2626;
  --border: #DDE2EE;
  --border-hover: #B4C4F4;
  --shadow-lg: 0 18px 48px rgba(11, 20, 38, .14);
  --radius-card: 16px;
  --radius-pill: 50px;
  --radius-sm: 8px;
  --speed: 0.2s;
  --ease: cubic-bezier(.25, .8, .25, 1);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden
}

.page {
  display: none
}

.page.active {
  display: block
}

/* ── Container (global layout wrapper, used on every page) ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px)
}

@media(min-width:1400px) {
  .container {
    max-width: 1280px
  }
}

@media(min-width:1800px) {
  .container {
    max-width: 1440px
  }
}

/* ── Announcement Bar (Amity style) ── */
.ann-bar {
  background: var(--dark);
  padding: 10px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.ann-bar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

.ann-link {
  color: rgba(255, 255, 255, .85);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none
}

.ann-link:hover {
  color: var(--amber)
}

.ann-sep {
  color: rgba(255, 255, 255, .25);
  font-size: 12px
}

.ann-bar-right {
  display: flex;
  align-items: center;
  gap: 8px
}

.ann-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: all .2s
}

.ann-icon svg {
  width: 13px;
  height: 13px
}

.ann-icon:hover {
  color: #fff;
  background: var(--ann-icon-color, var(--amber))
}

/* ── Main Nav (Amity style) ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06)
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0
}

.nav-logo {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: var(--amber);
  border: 2px solid var(--amber)
}

/* Links */
.nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center
}

.nav-link {
  padding: 10px 14px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border: none;
  background: none;
  transition: all .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none
}

.nav-link:hover {
  color: var(--blue);
  text-decoration: none
}

.nav-link.active {
  color: var(--blue)
}

/* ── Dropdown ── */
.nav-has-dropdown {
  position: relative
}

.nav-dropdown-arrow {
  font-size: 9px;
  opacity: .6;
  transition: transform .2s;
  display: inline-block;
  margin-left: 2px
}

.nav-has-dropdown:hover > .nav-link .nav-dropdown-arrow,
.nav-has-dropdown:focus-within > .nav-link .nav-dropdown-arrow {
  transform: rotate(180deg)
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  min-width: 200px;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s
}

.nav-has-dropdown:hover > .nav-dropdown,
.nav-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-radius: 7px;
  white-space: nowrap;
  transition: background .12s, color .12s
}

.nav-dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue)
}

.nav-dropdown a.active {
  color: var(--blue);
  background: var(--blue-light)
}

/* ── Off-canvas dropdown accordion ── */
.oc-has-dropdown > .oc-item {
  justify-content: space-between
}

.oc-dropdown-arrow {
  font-size: 11px;
  transition: transform .2s;
  flex-shrink: 0
}

.oc-has-dropdown.oc-open > .oc-item .oc-dropdown-arrow {
  transform: rotate(180deg)
}

.oc-submenu {
  display: none;
  background: var(--grey)
}

.oc-has-dropdown.oc-open > .oc-submenu {
  display: block
}

.oc-submenu a {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .12s
}

.oc-submenu a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
  background: var(--blue-light)
}

/* CTAs */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  border: none;
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.32);
  transition: transform .15s, box-shadow .15s
}

.nav-wa-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #fff
}

.nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45)
}

.nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 11px 20px 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 2px 8px rgba(11, 20, 38, 0.25);
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11, 20, 38, 0.35);
  background: var(--blue)
}

.nav-cta svg {
  color: var(--amber);
  flex-shrink: 0;
  transition: transform .15s
}

.nav-cta:hover svg {
  transform: translateX(3px)
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--dark)
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark)
}

.hero {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 500px
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px
}

.hero-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 500px
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 24px 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(30, 79, 216, 0.3);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #163fb0;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(30, 79, 216, 0.4)
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 13px 24px 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-wa:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35)
}

.trust-bar {
  background: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue) 35%, var(--amber) 65%, transparent);
  opacity: 0.4;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}

.tb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 20px;
  color: var(--dark);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  position: relative;
  flex: 1;
  transition: background .2s;
}

.tb-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.tb-item:hover {
  background: var(--grey);
}

.tb-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey);
  border: 1px solid var(--border);
  margin-bottom: 2px;
}

.section {
  padding: 64px 0
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px
}

.section h2 {
  font-size: 32px;
  margin-bottom: 8px
}

.section-sub {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 560px
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform .25s, box-shadow .25s;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1)
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  opacity: 0;
  transition: opacity .25s;
}

.bento-card:hover::before {
  opacity: 1
}

.bento-card.featured {
  background: linear-gradient(145deg, #1640c4 0%, var(--blue) 50%, #2d6ef5 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(30, 79, 216, 0.35);
}

.bento-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 79, 216, 0.45)
}

.bento-card.featured::before {
  display: none
}

.bento-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--blue-light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.35;
}

.bento-card.featured .bento-num {
  color: rgba(255, 255, 255, 0.2);
  opacity: 1
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.bento-card.featured .bento-icon {
  background: rgba(255, 255, 255, 0.15)
}

.bento-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4
}

.bento-card.featured .bento-title {
  color: #fff
}

.bento-body {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.7
}

.bento-card.featured .bento-body {
  color: rgba(255, 255, 255, 0.78)
}

/* ── PROGRAMS GRID — premium redesign ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.prog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 26px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .22s, transform .22s;
  position: relative;
  overflow: hidden;
}

.prog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
}

.prog-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 36px rgba(30, 79, 216, 0.11);
  transform: translateY(-4px);
}

.prog-card.featured {
  background: linear-gradient(150deg, #152E90 0%, #1E4FD8 55%, #2E60E8 100%);
  border: none;
  box-shadow: 0 8px 28px rgba(30, 79, 216, 0.32);
}

.prog-card.featured::before {
  background: linear-gradient(90deg, var(--amber) 0%, rgba(245, 166, 35, 0.35) 100%);
}

.prog-card.featured:hover {
  box-shadow: 0 16px 46px rgba(30, 79, 216, 0.46);
  transform: translateY(-5px);
}

/* decorative background number */
.prog-deco {
  position: absolute;
  top: -6px;
  right: 14px;
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

.prog-card.featured .prog-deco {
  color: #fff;
  opacity: 0.07
}

.prog-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.badge-govt {
  background: var(--blue-light);
  color: var(--blue)
}

.badge-teal {
  background: #CCFBF1;
  color: #0D9488
}

.prog-card.featured .prog-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff
}

.prog-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif
}

.prog-card.featured .prog-name {
  color: #fff
}

.prog-detail {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.55
}

.prog-card.featured .prog-detail {
  color: rgba(255, 255, 255, 0.65)
}

.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px
}

.prog-tag {
  padding: 4px 11px;
  background: var(--grey);
  border-radius: 20px;
  font-size: 11px;
  color: var(--text2);
  font-weight: 500
}

.prog-card.featured .prog-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.88)
}

.prog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .18s;
}

.prog-card.featured .prog-link {
  color: var(--amber)
}

.prog-link:hover {
  gap: 12px
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px
}

.faculty-card {
  text-align: left;
  transition: transform .2s
}

.faculty-card:hover {
  transform: translateY(-2px)
}

.faculty-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--grey);
  margin-bottom: 14px
}

.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease
}

.faculty-card:hover .faculty-photo img {
  transform: scale(1.04)
}

.faculty-photo-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #b8c0cc
}

.faculty-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px
}

.faculty-role {
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.5
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

.comp-table th {
  background: var(--dark);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-align: left
}

.comp-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border)
}

.comp-table tr:last-child td {
  border-bottom: none
}

.comp-table tr:nth-child(even) td {
  background: var(--grey)
}

.tick {
  color: var(--green);
  font-weight: 700
}

.cross {
  color: var(--red);
  font-weight: 700
}

.partial {
  color: var(--amber);
  font-size: 12px
}

.dtu-col {
  color: var(--blue);
  font-weight: 700
}

/* ── ADMISSIONS SECTION — premium redesign ── */
.adm-section {
  border-top: 1px solid var(--border);
  position: relative;
}

.adm-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  border-radius: 0 0 3px 0;
}

.adm-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(11, 20, 38, 0.22);
  transition: all 0.22s;
  font-family: 'Inter', sans-serif;
  margin-top: 28px;
}

.adm-guide-btn svg {
  color: var(--amber);
  transition: transform 0.22s;
  flex-shrink: 0
}

.adm-guide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(11, 20, 38, 0.32)
}

.adm-guide-btn:hover svg {
  transform: translateX(3px)
}

/* step cards */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px
}

.step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.step-row:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 18px rgba(30, 79, 216, 0.09);
  transform: translateX(4px);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1E4FD8 0%, #4B72F0 100%);
  box-shadow: 0 2px 10px rgba(30, 79, 216, 0.30);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  z-index: 1;
  position: relative;
}

.step-content {
  padding: 2px 0 0
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px
}

.step-body {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6
}

.divider {
  height: 1px;
  background: var(--border)
}

footer {
  background: var(--dark);
  padding: 40px 2rem;
  margin-top: 80px
}

/* ── PRE-FOOTER ── */
.pre-footer {
  background: linear-gradient(180deg, #0d1830 0%, #0B1426 100%);
  padding: 64px 2rem 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.pre-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.4), transparent);
}

.pre-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(30, 79, 216, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.pre-footer+footer {
  margin-top: 0
}

/* top strip: brand + link cols + map — flexible so it adapts to however many blocks have content (0-9) */
.pre-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.pf-col {
  min-width: 0;
  flex: 1 1 140px
}

.pf-brand-col {
  min-width: 0;
  flex: 1.6 1 280px
}

.pf-map-col {
  flex: 1.2 1 280px
}

/* Brand column */
.pf-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.pf-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30, 79, 216, .4);
}

.pf-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em
}

.pf-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.pf-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 20px
}

.pf-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px
}

.pf-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65)
}

.pf-contact-icon {
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pf-accred {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.pf-accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
}

.pf-accred-badge .ab-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0
}

/* Links column */
.pf-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px
}

.pf-links-v {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.pf-links-v a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}

.pf-links-v a:hover {
  color: var(--amber)
}

.pf-links-v a::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
  transition: background .15s;
}

.pf-links-v a:hover::before {
  background: var(--amber)
}

/* Map column */
.pf-map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.pf-map-frame {
  width: 100%;
  height: 200px;
  border: 0;
  display: block
}

.pf-map-open {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pf-map-label {
  margin-top: 10px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

/* Social + divider */
.pf-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  z-index: 1;
}


/* Custom Google Maps embed (admin-pasted iframe) sizing */
.pf-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.pf-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.pf-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .2s;
  font-weight: 500;
}

.pf-social a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.pf-social a:hover {
  color: #fff;
  background: var(--pf-icon-color, rgba(255, 255, 255, .1));
  border-color: var(--pf-icon-color, rgba(255, 255, 255, .2))
}

.pf-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  font-style: italic
}

@media(max-width:1024px) {
  .pre-footer-inner {
    gap: 36px
  }

  .pf-col,
  .pf-brand-col {
    flex: 1 1 220px
  }

  .pf-map-col {
    flex: 1 1 100%
  }

  .pf-map-frame,
  .pf-map iframe {
    height: 180px
  }
}

@media(max-width:768px) {
  .pre-footer {
    padding: 40px 16px 0;
    margin-top: 40px
  }

  .pre-footer-inner {
    gap: 28px
  }

  .pf-col,
  .pf-brand-col,
  .pf-map-col {
    flex: 1 1 100%
  }

  .pf-map-frame,
  .pf-map iframe {
    height: 200px
  }

  .pf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }

  .pf-social {
    gap: 6px
  }
}

/* ── FOOTER ── */
footer {
  background: #070e1c;
  padding: 28px 2rem;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand .fb1 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55)
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.footer-legal-links a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, .6)
}

.footer-sep {
  color: rgba(255, 255, 255, .15);
  font-size: 11px
}

@media(max-width:768px) {
  footer {
    padding: 20px 16px
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }
}

/* ── Campus Image Hero ── */
.campus-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  max-height: 680px;
  border-radius: 0 0 32px 32px;
  margin-bottom: 0;
}

.campus-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Hero Carousel (added) ── */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  transition: transform .6s ease-in-out
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative
}

.hero-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover
}

.hero-carousel-slide.is-empty {
  width: 100%;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2a4a, #0B1426);
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

@media(max-width:768px) {
  .hero-carousel-slide.is-empty {
    aspect-ratio: 4/3
  }
}

.hero-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}

.hero-carousel-dot.active {
  background: var(--amber);
  border-color: var(--amber);
  width: 22px;
  border-radius: 5px;
}

/* ── CAMPUS CTA WRAP — PREMIUM WHITE ── */
@keyframes badge-shine {
  0% {
    background-position: 200% center
  }

  100% {
    background-position: -200% center
  }
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(11, 20, 38, 0.2)
  }

  50% {
    box-shadow: 0 10px 36px rgba(11, 20, 38, 0.32)
  }
}

.campus-hero-cta-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 44px 2rem 38px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
}

/* Top accent line */
.campus-hero-cta-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--blue) 35%, var(--amber) 65%, transparent);
  opacity: 0.5;
}

.campus-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grey);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.campus-location-badge:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.campus-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--dark);
  border: none;
  color: #fff;
  padding: 18px 52px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
  animation: cta-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep */
.campus-hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: badge-shine 3.5s linear infinite;
}

.campus-hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(30, 79, 216, 0.38);
}

.campus-hero-cta:active {
  transform: translateY(-1px) scale(1.01)
}

.campus-hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.campus-hero-cta:hover .campus-hero-cta-arrow {
  transform: translateX(5px)
}

.campus-hero-cta-tagline {
  font-size: 11.5px;
  color: var(--text3);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center
}

.campus-hero-cta-tagline span {
  color: var(--amber);
  margin: 0 4px;
}

@media(max-width:768px) {
  .campus-hero {
    max-height: none
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 200
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Hamburger only on mobile — desktop/tablet/small laptop keep full nav */
@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .nav-wa {
    display: none
  }

  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }
}

@media(max-width:768px) {
  main {
    padding: 0 16px
  }

  body {
    font-size: 14px
  }

  .ann-bar {
    display: none
  }

  nav {
    padding: 0 16px
  }

  .nav-inner {
    height: 60px;
    gap: 8px
  }

  .nav-cta {
    padding: 9px 16px;
    font-size: 12px
  }

  .nav-wa {
    padding: 9px 16px;
    font-size: 12px
  }

  .nav-logo {
    width: 38px;
    height: 38px;
    font-size: 18px
  }

  .campus-hero {
    max-height: none;
    min-height: 220px
  }

  .campus-hero img {
    height: 220px;
    object-fit: cover;
    object-position: center
  }

  .campus-hero-cta-wrap {
    padding: 28px 16px 26px;
    gap: 16px
  }

  .campus-location-badge {
    font-size: 9.5px;
    padding: 9px 14px;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
    max-width: 96%;
    gap: 6px;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .campus-hero-cta {
    font-size: 12px;
    padding: 14px 28px;
    gap: 10px;
    white-space: nowrap
  }

  .campus-hero-cta .cta-text {
    white-space: nowrap
  }

  .campus-hero-cta-tagline {
    font-size: 10px;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding: 0 4px
  }
}

@media(max-width:400px) {
  .campus-location-badge {
    font-size: 8.5px;
    padding: 8px 10px;
    gap: 5px
  }

  .campus-hero-cta {
    font-size: 11px;
    padding: 10px 18px;
    gap: 6px
  }

  .campus-hero-cta-tagline {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }
}

@media(max-width:768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px 0 24px
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px
  }

  .btn-primary,
  .btn-wa {
    width: 100%;
    text-align: center;
    padding: 13px 18px
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start
  }

  .section {
    padding: 36px 0
  }

  .section h2 {
    font-size: 22px
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 24px
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .comp-table {
    font-size: 11px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .comp-table th,
  .comp-table td {
    padding: 8px 10px;
    white-space: nowrap
  }

  footer {
    padding: 28px 16px;
    margin-top: 40px
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px
  }

  .bento-card {
    padding: 18px
  }

  .bento-num {
    font-size: 38px
  }

  .prog-card {
    padding: 18px
  }
}

/* ══════════════════════════════════════
   PRO CTA BUTTONS
══════════════════════════════════════ */
.pro-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pro-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1E4FD8 0%, #3B6FF5 100%);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(30, 79, 216, 0.35);
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}

.pro-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 79, 216, 0.45);
}

.pro-btn-primary span {
  font-weight: 700;
}

.pro-btn-gallery {
  padding: 16px 44px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.pro-btn-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}

.pro-btn-gallery:hover::before {
  left: 125%;
}

.pro-btn-gallery:hover {
  box-shadow: 0 10px 32px rgba(30, 79, 216, 0.5);
}

.pro-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #20C45A 0%, #16A34A 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.3);
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}

.pro-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}

/* ══════════════════════════════════════
   PRO TRUST CHIPS
══════════════════════════════════════ */
.pro-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pro-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all .2s;
}

.pro-trust-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 10px rgba(30, 79, 216, 0.12);
}

.pro-trust-icon {
  font-size: 14px;
  line-height: 1;
}

@media(max-width:768px) {

  .pro-btn-primary,
  .pro-btn-wa {
    font-size: 13px;
    padding: 12px 18px;
  }

  .pro-cta-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .pro-trust-row {
    gap: 5px;
    margin-top: 6px;
  }

  .pro-trust-item {
    font-size: 10px;
    padding: 4px 10px 4px 7px;
    gap: 4px;
  }

  .pro-trust-icon {
    font-size: 12px;
  }

  .director-card {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 20px !important;
  }

  .director-card>div:first-child>div:first-child {
    width: 110px !important;
    height: 110px !important;
    font-size: 40px !important;
  }

  .director-card>div:first-child {
    padding: 24px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .director-card>div:last-child {
    padding: 24px 20px !important;
  }

  .pre-footer {
    padding: 36px 16px 24px;
  }

  .pf-social {
    gap: 20px;
    font-size: 12px;
  }
}


/* ══════════════════════════════════════
   GLOBAL RESPONSIVE — ALL SCREENS
══════════════════════════════════════ */

/* ── Base: ensure nothing overflows ── */
img,
video,
iframe {
  max-width: 100%;
  height: auto
}

table {
  width: 100%
}

/* ── Tablet: 769px–1024px ── */
@media(min-width:769px) and (max-width:1024px) {
  main {
    padding: 0 24px
  }

  .nav-inner {
    height: 68px
  }

  .nav-links {
    gap: 2px
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 12px
  }

  .nav-wa {
    display: none
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12px
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 40px 0
  }

  .hero h1 {
    font-size: 32px
  }

  .bento {
    grid-template-columns: repeat(2, 1fr)
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .faculty-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-bar-inner {
    flex-wrap: wrap;
    gap: 0
  }

  .tb-item {
    padding: 14px 12px;
    flex: 0 0 50%
  }

  .tb-item:nth-child(2)::after,
  .tb-item:nth-child(4)::after {
    display: none
  }

  .comp-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .pre-footer-inner {
    gap: 32px
  }

  .pf-col,
  .pf-brand-col {
    flex: 1 1 220px
  }

  .pf-map-col {
    flex: 1 1 100%
  }

  .section {
    padding: 48px 0
  }

  .section h2 {
    font-size: 26px
  }

  .campus-hero-cta {
    font-size: 13px;
    padding: 14px 32px
  }

  .campus-hero-cta-tagline {
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }
}

/* ── Large mobile: 481px–768px ── */
@media(min-width:481px) and (max-width:768px) {
  .campus-hero-cta-wrap {
    padding: 28px 20px 24px;
    gap: 16px
  }

  .hero-carousel-slide.is-empty {
    aspect-ratio: 16/8
  }

  .pf-social {
    flex-wrap: wrap;
    gap: 8px
  }

  .bento {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ── Small mobile: ≤480px ── */
@media(max-width:480px) {
  .ann-bar {
    display: none
  }

  main {
    padding: 0 12px
  }

  .nav-inner {
    height: 56px
  }

  .nav-logo {
    width: 34px;
    height: 34px;
    font-size: 16px
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 11px
  }

  .hero h1 {
    font-size: 22px
  }

  .hero-sub {
    font-size: 13px
  }

  .section {
    padding: 28px 0
  }

  .section h2 {
    font-size: 20px
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 18px
  }

  .bento {
    grid-template-columns: 1fr
  }

  .programs-grid {
    grid-template-columns: 1fr
  }

  .faculty-grid {
    grid-template-columns: 1fr
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0
  }

  .tb-item {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
  }

  .tb-item:not(:last-child)::after {
    display: none
  }

  .tb-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    flex-shrink: 0
  }

  .comp-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 11px
  }

  .comp-table th,
  .comp-table td {
    white-space: nowrap;
    padding: 8px 10px
  }

  .steps-timeline {
    gap: 8px
  }

  .step-content {
    padding: 1px 0 0
  }

  .step-title {
    font-size: 14px
  }

  .adm-guide-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px
  }

  .bento-card {
    padding: 16px
  }

  .bento-num {
    font-size: 34px
  }

  .prog-card {
    padding: 16px
  }

  .pre-footer-inner {
    gap: 24px
  }

  .pf-col,
  .pf-brand-col,
  .pf-map-col {
    flex: 1 1 100%
  }

  .pf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .pf-social {
    flex-wrap: wrap;
    gap: 6px
  }

  .pf-social a {
    font-size: 11.5px;
    padding: 7px 10px
  }

  .pf-tagline {
    font-size: 11px
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .footer-legal-links {
    gap: 10px;
    flex-wrap: wrap
  }

  .campus-hero-cta {
    font-size: 11px;
    padding: 10px 18px
  }

  .campus-hero-cta-tagline {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .campus-location-badge {
    font-size: 9px;
    padding: 8px 12px
  }

  .pro-trust-row {
    gap: 6px
  }

  .pro-trust-item {
    font-size: 10.5px;
    padding: 5px 10px 5px 8px
  }

  .pf-accred {
    gap: 6px
  }

  .pf-accred-badge {
    font-size: 10px;
    padding: 4px 8px
  }

  .campus-hero-cta-wrap {
    padding: 20px 12px 18px;
    gap: 12px
  }

  .hamburger {
    padding: 6px
  }
}

/* ── Extra small: ≤360px ── */
@media(max-width:360px) {
  .nav-cta {
    display: none
  }

  .hero h1 {
    font-size: 20px
  }

  .campus-location-badge {
    font-size: 8px;
    padding: 7px 8px;
    gap: 4px
  }

  .pf-social a {
    font-size: 10.5px;
    padding: 6px 8px
  }
}

/* ── Trust bar — tablet fix ── */
@media(min-width:769px) and (max-width:900px) {
  .trust-bar-inner {
    flex-wrap: wrap
  }

  .tb-item {
    flex: 0 0 50%;
    padding: 14px 12px
  }

  .tb-item:nth-child(2)::after,
  .tb-item:nth-child(4)::after {
    display: none
  }
}

/* ── Student Stories grid (was inline-only, now responsive) ── */
.student-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px
}

/* ── Student card: photo + content box (content height = exactly half the photo height) ── */
.student-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1)
}

.student-photo {
  aspect-ratio: 3/4;
  /* image block */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.student-initials {
  font-size: 72px;
  color: var(--blue);
  opacity: 0.18;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.student-content {
  aspect-ratio: 3/2;
  /* exactly half of the 3/4 photo block, same width basis */
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.student-quote-mark {
  font-size: 32px;
  color: var(--blue);
  line-height: 0.6;
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.student-quote {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.student-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-top: auto
}

.student-meta {
  font-size: 11.5px;
  color: var(--text3);
  margin-top: 2px
}

/* ── Tablet range (769px–1024px): iPad / Android tablets ── */
@media(min-width:769px) and (max-width:1024px) {
  main {
    padding: 0 1.5rem
  }

  .hero {
    gap: 32px
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }

  .student-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .pre-footer-inner {
    gap: 28px
  }
}

@media(max-width:768px) {
  .student-grid {
    grid-template-columns: 1fr !important;
    gap: 16px
  }

  .student-content {
    aspect-ratio: auto;
    padding: 20px 20px 22px
  }

  .student-quote {
    -webkit-line-clamp: 5;
    line-clamp: 5
  }
}

/* Note: nav kept position:relative as a safe anchor for any future absolutely-positioned nav children */
nav {
  position: relative
}

/* ══════════════════════════════════════════════════════════
   OFF-CANVAS MOBILE MENU
   ══════════════════════════════════════════════════════════ */
.oc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 38, .55);
  z-index: 990;
  backdrop-filter: blur(2px)
}

.oc-overlay.open {
  display: block;
  animation: ocFadeIn .25s ease
}

@keyframes ocFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.oc-menu {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  max-width: 88vw;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: left .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 4px 0 32px rgba(0, 0, 0, .18);
  overflow: hidden
}

.oc-menu.open {
  left: 0
}

.oc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #16213C 100%);
  flex-shrink: 0;
  border-bottom: 2px solid var(--amber)
}

.oc-brand {
  display: flex;
  align-items: center;
  color: #fff
}

.oc-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--amber);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25)
}

.oc-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0
}

.oc-close:hover {
  background: rgba(255, 255, 255, .16)
}

.oc-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch
}

.oc-nav::-webkit-scrollbar {
  width: 3px
}

.oc-nav::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px
}

.oc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .15s
}

.oc-item:hover {
  background: var(--grey);
  border-left-color: rgba(30, 79, 216, .3);
  color: var(--blue)
}

.oc-item.active {
  border-left-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light)
}

.oc-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 16px 20px 18px
}

.oc-footer-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  margin-bottom: 12px
}

.oc-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center
}

.oc-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey);
  color: var(--text2);
  text-decoration: none;
  transition: all .2s;
  flex-shrink: 0;
  border: 1px solid var(--border)
}

.oc-icon-btn svg {
  width: 17px;
  height: 17px;
  transition: transform .2s
}

.oc-icon-btn:hover {
  background: var(--oc-icon-color, var(--blue));
  border-color: var(--oc-icon-color, var(--blue));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -4px rgba(11, 20, 38, .3)
}

.oc-icon-btn:hover svg {
  transform: scale(1.08)
}

.oc-icon-inactive {
  opacity: .35;
  pointer-events: none
}

/* Apply Now CTA hidden in off-canvas menu per request — still present in markup for re-enabling later */
.oc-cta {
  margin: 14px 16px 0;
  display: none;
  flex-direction: column;
  gap: 8px
}

.oc-cta .oc-btn-apply {
  background: var(--dark);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none
}

/* Hamburger opens off-canvas menu (below) */
@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .nav-wa {
    display: none
  }

  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }
}

/* ══════════════════════════════════════════════════════════════
   BLOG — SINGLE ARTICLE LAYOUT (single.php)
   Layout only — content comes from real WordPress posts
══════════════════════════════════════════════════════════════ */

/* Reading progress bar — shown on single post pages */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  z-index: 1000;
  transition: width .1s linear;
  pointer-events: none;
}

/* Sticky mini-header, shown after scrolling past the article hero */
.article-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.article-topbar.visible {
  display: block
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 14px
}

.topbar-back {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: gap var(--speed), background var(--speed);
  text-decoration: none;
}

.topbar-back:hover {
  gap: 8px;
  background: var(--blue-light)
}

.topbar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topbar-divider {
  color: var(--border)
}

/* Article shell */
.article-shell {
  background: var(--surface);
  min-height: 60vh;
  padding-bottom: 40px
}

/* Breadcrumb */
.breadcrumb {
  padding: 28px 0 0;
  font-size: 12.5px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text3);
  cursor: pointer;
  transition: color var(--speed);
  text-decoration: none
}

.breadcrumb a:hover {
  color: var(--blue)
}

.breadcrumb-sep {
  color: var(--border)
}

/* Hero banner */
.article-banner {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-card);
  margin-top: 28px;
  background: var(--grey);
  display: none;
}

.article-banner img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block
}

.article-banner.has-image {
  display: block;
  box-shadow: 0 20px 50px -20px rgba(11, 20, 38, .28)
}

/* Article hero */
.article-hero {
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px
}

.article-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 28px
}

.article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.article-meta .meta-dot {
  display: none
}

.article-meta span:not(.meta-dot) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  background: var(--grey2);
  border: 1.5px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 3px rgba(11, 20, 38, .08);
  letter-spacing: .02em;
}

/* Article body (real post content via the_content()) */
.article-body {
  max-width: 740px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text2)
}

.article-body>p:first-of-type {
  font-size: 18.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400
}

.article-body h2 {
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.25;
  margin: 56px 0 20px;
  color: var(--dark);
  letter-spacing: -.02em
}

.article-body h3 {
  font-size: 17px;
  margin: 32px 0 14px;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700
}

.article-body p {
  margin-bottom: 26px
}

.article-body ul,
.article-body ol {
  margin: 0 0 22px 24px
}

.article-body li {
  margin-bottom: 12px
}

.article-body strong {
  color: var(--dark);
  font-weight: 600
}

.article-body img {
  border-radius: 12px;
  margin: 36px 0
}

.article-body .inline-img {
  width: 100%;
  border-radius: 12px;
  margin: 36px 0;
  overflow: hidden;
  background: var(--grey)
}

.article-body .inline-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 0
}

.article-body .inline-img figcaption {
  font-size: 12px;
  color: var(--text3);
  padding: 10px 16px;
  text-align: center;
  font-style: italic;
  background: var(--grey)
}

/* Callout box — optional, usable inside post content via a custom HTML block */
.callout {
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
  margin: 32px 0;
  font-size: 14.5px;
  color: var(--text2);
}

.callout strong {
  display: block;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: 'Inter', sans-serif
}

/* Data table — optional, usable inside post content */
.cutoff-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 36px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border)
}

.cutoff-table th {
  background: var(--blue-light);
  color: var(--blue);
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid #c4d3ff
}

.cutoff-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text2)
}

.cutoff-table tr:last-child td {
  border-bottom: none
}

.cutoff-table tr:hover td {
  background: #fafbff
}

/* Article footer — back link + share */
.article-footer {
  max-width: 740px;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  margin-bottom: 56px;
  padding-top: 32px;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.share-label {
  font-size: 12.5px;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  text-align: right
}

.share-btns {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), color var(--speed) var(--ease);
  color: var(--text2);
}

.share-btn svg {
  width: 16px;
  height: 16px
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -4px rgba(11, 20, 38, .25)
}

.share-btn[data-platform="twitter"]:hover {
  background: #000;
  border-color: #000;
  color: #fff
}

.share-btn[data-platform="linkedin"]:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff
}

.share-btn[data-platform="copy"]:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.share-btn[data-platform="copy"].copied {
  background: #1FA855;
  border-color: #1FA855;
  color: #fff
}

.share-btn .copy-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s var(--ease);
  z-index: 10;
}

.share-btn .copy-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--dark)
}

.share-btn[data-platform="copy"].copied .copy-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.back-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), gap var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.back-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform var(--speed) var(--ease)
}

.back-link:hover {
  background: var(--blue);
  color: #fff;
  gap: 9px;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(30, 79, 216, .45)
}

.back-link:hover svg {
  transform: translateX(-2px)
}

/* Disclaimer note */
.disclaimer-note {
  position: relative;
  background: var(--grey);
  border-radius: var(--radius-sm);
  padding: 16px 20px 16px 46px;
  font-size: 12.5px;
  color: var(--text3);
  line-height: 1.6;
  margin-top: 40px;
  max-width: 740px;
}

.disclaimer-note::before {
  content: 'ⓘ';
  position: absolute;
  left: 18px;
  top: 15px;
  font-size: 14px;
  color: var(--text3)
}

/* Related articles */
.related-section {
  padding: 48px 0 0
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px
}

.related-title {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--dark)
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.related-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover)
}

.related-card-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey);
  flex-shrink: 0
}

.related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.related-card:hover .related-card-thumb img {
  transform: scale(1.06)
}

.related-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.related-card-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  align-self: flex-start;
}

.related-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-meta {
  font-size: 11px;
  color: var(--text3);
  margin-top: auto
}

/* Article CTA block */
.cta-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(145deg, #0B1426 0%, #0f1d3a 50%, #0B1426 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 52px);
  margin: 48px 0;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 60px -24px rgba(11, 20, 38, .7);
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(75, 114, 240, .28) 0%, transparent 70%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 500px
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(75, 114, 240, .18);
  color: #A9BEFF;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cta-block h2 {
  color: #fff;
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.25;
  margin-bottom: 8px;
  position: relative
}

.cta-block p {
  color: rgba(255, 255, 255, .58);
  font-size: 14.5px;
  position: relative
}

.cta-btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0
}

/* Article CTA — reuses .cta-block / .btn classes above */

@media(max-width:768px) {
  .article-banner img {
    height: 240px
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px
  }

  .cta-copy {
    max-width: none
  }

  .cta-btns {
    width: 100%
  }

  .cta-btns .btn {
    flex: 1;
    justify-content: center
  }
}

@media(max-width:600px) {
  .article-footer {
    flex-direction: column;
    align-items: flex-start
  }

  .cutoff-table {
    font-size: 13px
  }

  .cutoff-table th,
  .cutoff-table td {
    padding: 10px 12px
  }

  .article-banner img {
    height: 200px
  }

  .topbar-title {
    display: none
  }

  .topbar-divider {
    display: none
  }
}

@media(max-width:500px) {
  .related-grid {
    grid-template-columns: 1fr
  }
}

@media(prefers-color-scheme:dark) {
  .article-shell {
    background: var(--surface)
  }

  .article-topbar {
    background: rgba(17, 29, 51, .94);
    border-color: var(--border)
  }

  .callout {
    background: rgba(245, 166, 35, .08)
  }

  .disclaimer-note {
    background: rgba(255, 255, 255, .04)
  }

  .share-btn {
    background: rgba(255, 255, 255, .06);
    border-color: var(--border);
    color: var(--text2)
  }

  .cutoff-table {
    border-color: var(--border)
  }

  .cutoff-table th {
    background: rgba(30, 79, 216, .2);
    border-color: rgba(30, 79, 216, .3)
  }

  .cutoff-table td {
    border-color: var(--border)
  }

  .cutoff-table tr:hover td {
    background: rgba(255, 255, 255, .03)
  }
}

@media print {

  #progress-bar,
  .article-topbar,
  .article-footer,
  .back-link {
    display: none !important
  }

  .article-body {
    max-width: none
  }

  .article-banner {
    max-height: none
  }
}

/* ── Hero pulse animation (moved from front-page.php inline style) ── */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--amber) }
  50%       { box-shadow: 0 0 14px var(--amber), 0 0 28px rgba(245,166,35,.4) }
}

/* ── Campus gallery scene (moved from front-page.php inline <style>) ── */
#pg-gallery { padding: 80px 0 60px; }
.pg-gallery-scene { position: relative; width: 100%; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 160px); gap: 18px; }
.pg-photo { position: relative; border-radius: 10px; overflow: hidden; background: #dde1e7; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.14); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: default; }
.pg-photo:hover { transform: translateY(-6px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 16px 40px rgba(0, 0, 0, 0.22); z-index: 20; }
.pg-photo-1 { grid-column: 1/3; grid-row: 1/3; }
.pg-photo-2 { grid-column: 3/4; grid-row: 1/2; }
.pg-photo-3 { grid-column: 4/5; grid-row: 1/2; }
.pg-photo-4 { grid-column: 3/4; grid-row: 2/3; }
.pg-photo-5 { grid-column: 4/5; grid-row: 2/3; }
.pg-photo-6 { grid-column: 1/2; grid-row: 3/4; }
.pg-photo-7 { grid-column: 2/3; grid-row: 3/4; }
.pg-photo-8 { grid-column: 3/4; grid-row: 3/4; }
.pg-photo-9 { grid-column: 4/5; grid-row: 3/4; }
.pg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.pg-photo:hover img { transform: scale(1.06); }
.pg-photo-empty { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #94a3b8; font-size: 13px; }
.pg-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 14px 12px; background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%); color: #fff; font-size: 12px; font-weight: 600; }
@media (max-width: 800px) {
  .pg-gallery-scene { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; padding: 0 16px; }
  .pg-photo { grid-column: auto !important; grid-row: auto !important; height: 150px; }
  .pg-photo-1 { grid-column: 1/3 !important; height: 200px; }
}

/* ── About section tabs (moved from front-page.php inline <style>) ── */
.about2-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto; }
.about2-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.about2-tab-btn { padding: 10px 20px; border-radius: 24px; border: 1px solid var(--border); background: var(--white); font-size: 13px; font-weight: 600; color: var(--text2); cursor: pointer; transition: all .15s ease; }
.about2-tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.about2-tab-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.about2-subhead { font-size: 21px; font-weight: 700; color: var(--dark); margin: 0 0 14px; font-family: 'Playfair Display', serif; }
.about2-text { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.about2-img-wrap { width: 100%; }
.about2-img { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; box-shadow: 0 16px 40px rgba(11, 20, 38, 0.14); }
.about2-img-empty { width: 100%; height: 380px; border-radius: 18px; background: var(--grey); border: 1px dashed #cbd5e1; display: flex; align-items: center; justify-content: center; color: #94a3b8; }
@media (max-width: 860px) {
  .about2-wrap { grid-template-columns: 1fr; gap: 32px; }
  .about2-img-wrap { order: -1; }
  .about2-img, .about2-img-empty { height: 260px; }
}
