
/* ============ TOKENS ============ */
:root {
  /* Brand teal */
  --teal-50:  #effaf8;
  --teal-100: #d6f3ee;
  --teal-200: #a8e6dc;
  --teal-500: #18aa9d;
  --teal-600: #129488;
  --teal-700: #0e7a71;
  --teal-800: #0b5f58;
  --teal-900: #083f3a;

  /* Authority darks — navy register, stats section + scrolled nav only */
  --navy-950: #060e1a;
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #172d56;
  --navy-400: #4a6fa5;
  --navy-200: #a8bcd8;
  --navy-100: #d6e1f0;

  /* Gold accent — ranking badge only */
  --gold:     #c9a84c;
  --gold-dim: rgba(201,168,76,0.15);

  /* Ink */
  --ink-900: #0b1f24;
  --ink-800: #14323a;
  --ink-700: #2b4750;
  --ink-500: #5b7780;
  --ink-400: #8aa3ab;
  --ink-300: #b8cad0;

  /* Surfaces */
  --line: #e6ecee;
  --line-2: #eef2f4;
  --bg: #ffffff;
  --bg-soft: #f6faf9;
  --bg-warm: #fbfaf6;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 36, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 31, 36, 0.06);
  --shadow-lg: 0 24px 60px rgba(11, 31, 36, 0.10);
  --shadow-card: 0 1px 0 rgba(11,31,36,0.04), 0 12px 32px rgba(11,31,36,0.06);
  --shadow-card-hover: 0 2px 0 rgba(11,31,36,0.06), 0 20px 48px rgba(11,31,36,0.12), 0 4px 12px rgba(11,31,36,0.07);

  /* Easing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink-900); margin: 0; line-height: 1.15; letter-spacing: -0.025em; font-family: 'Montserrat', sans-serif; font-weight: 700; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--teal-500);
}
.eyebrow--light { color: var(--teal-100); }
.eyebrow--light::before { background: var(--teal-200); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.15s var(--ease-in-out), box-shadow 0.2s var(--ease-out), color 0.15s var(--ease-in-out);
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: transparent; color: var(--ink-900);
  box-shadow: none; border-color: transparent;
}
.btn-primary:hover { background: transparent; box-shadow: none; color: var(--teal-700); transform: none; }
.btn-ghost { background: #fff; color: var(--teal-700); border-color: var(--teal-200); }
.btn-ghost:hover { background: var(--teal-50); border-color: var(--teal-500); }
.btn-white { background: #fff; color: var(--teal-700); }
.btn-white:hover { background: #f1faf8; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.10); border-color: #fff; }

.btn .arrow {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: currentColor; color: inherit;
  transition: transform 0.2s var(--ease-out);
}
.btn .arrow svg { stroke: #fff; }
.btn-primary .arrow svg, .btn-white .arrow svg { stroke: #fff; }
.btn-white .arrow { background: var(--teal-500); }
.btn-primary .arrow { background: rgba(255,255,255,0.18); }
.btn-primary .arrow svg { stroke: #fff; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease-in-out), box-shadow 0.2s var(--ease-in-out);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--line), 0 4px 16px rgba(11,31,36,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
  max-width: 1440px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: auto; height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; color: #04446a; font-size: 16px; font-family: 'Montserrat', sans-serif; letter-spacing: -0.01em; }
.brand-tag { font-size: 11px; color: #02a8a5; margin-top: 3px; letter-spacing: 0.02em; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links > li { display: flex; align-items: center; }
.nav-links a,
.nav-links button.has-caret {
  color: var(--ink-700);
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s var(--ease-in-out);
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-family: inherit;
}
.nav-links a:hover,
.nav-links button.has-caret:hover { color: var(--teal-700); }
.nav-links a.active { color: var(--ink-900); font-weight: 500; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--teal-500); border-radius: 2px;
}
.nav-links a.has-caret::after { display: none; }

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

.nav-dropdown-menu {
  list-style: none; margin: 0;
  position: absolute; top: 100%; left: -12px;
  padding: 10px 0 0;            /* invisible bridge so hover doesn't break */
  min-width: 220px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out), visibility 0.18s;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Card shell */
.nav-dropdown-menu::before {
  content: "";
  position: absolute; top: 10px; left: 0; right: 0; bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 2px solid var(--teal-500);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(11,31,36,0.10), 0 2px 6px rgba(11,31,36,0.05);
  z-index: -1;
}

/* Section label */
.nav-dropdown-menu .dropdown-label {
  display: block;
  padding: 10px 16px 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-400);
}

/* Divider between the audience groups (Instructors / Students) */
.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  margin: 6px 16px;
  padding: 0;
  background: var(--line);
}

/* Items */
.nav-dropdown-menu li {
  position: relative; z-index: 1;
  padding: 2px 8px;
}
.nav-dropdown-menu li:last-child { padding-bottom: 8px; }

.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: background 0.15s var(--ease-in-out), color 0.15s, border-color 0.15s, padding-left 0.15s;
}
.nav-dropdown-menu li a .drop-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--teal-50);
  border-radius: 8px;
  color: var(--teal-600);
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a .drop-icon svg { width: 15px; height: 15px; }
.nav-dropdown-menu li a:hover {
  background: var(--teal-50);
  color: var(--teal-700);
  border-left-color: var(--teal-500);
  padding-left: 14px;
}
.nav-dropdown-menu li a:hover .drop-icon {
  background: var(--teal-500);
  color: #fff;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink-700);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
}
.lang-current:hover {
  border-color: var(--teal-500);
  background: var(--teal-50);
  color: var(--teal-700);
}
.lang-current svg { transition: transform 0.2s; }
.lang-switcher.ls-open .lang-current { border-color: var(--teal-500); background: var(--teal-50); }
.lang-switcher.ls-open .lang-current svg { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 110px;
  z-index: 300;
}
.lang-switcher.ls-open .lang-dropdown { display: block; }

.lang-opt {
  cursor: pointer;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink-700);
  border-radius: 6px;
  user-select: none;
  transition: background 0.15s, color 0.15s;
  list-style: none;
}
.lang-opt:hover { background: var(--teal-50); color: var(--teal-600); }
.lang-opt--active { color: var(--teal-600); background: var(--teal-100); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: none;
  flex-direction: column; gap: 5px; padding: 0;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 480px;
  height: 65vh;
  max-height: 620px;
  display: grid;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/514405743_10161074130856822_702084907158806625_n.jpg');
  background-size: cover; background-position: center;
  background-color: var(--navy-900);
  z-index: -3;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: -2;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.8;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 120px;
  color: #fff;
  position: relative;
}
.hero .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.hero .eyebrow::before { background: rgba(255,255,255,0.6); }
.hero h1 {
  color: #fff;
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-200);
  font-weight: 400;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  max-width: 560px;
  margin: 0 0 36px;
  font-family: 'Montserrat', sans-serif;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Decorative concentric arcs */
.hero-arc {
  position: absolute; right: -100px; bottom: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 0;
}
.hero-arc::before, .hero-arc::after {
  content: ""; position: absolute; inset: 60px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.05);
}
.hero-arc::after { inset: 120px; }


/* ============ QUICK LINKS ============ */
.quick-links {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ql-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.ql-card:last-child { border-right: none; }
.ql-card:hover {
  background: var(--teal-50);
  box-shadow: inset 0 3px 0 var(--teal-500);
}
.ql-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-600);
  transition: background 0.22s var(--ease-out);
}
.ql-card:hover .ql-icon { background: var(--teal-100); }
.ql-icon svg { width: 22px; height: 22px; }
.ql-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 3px;
}
.ql-title {
  font-size: 15px; font-weight: 600;
  color: var(--ink-900);
  font-family: 'Montserrat', sans-serif;
  transition: color 0.22s var(--ease-out);
}
.ql-desc {
  font-size: 13px;
  color: var(--ink-500);
  font-family: 'Montserrat', sans-serif;
}
.ql-card:hover .ql-title { color: var(--teal-700); }
.ql-arrow {
  flex-shrink: 0;
  color: var(--ink-300);
  transition: color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.ql-arrow svg { width: 18px; height: 18px; display: block; }
.ql-card:hover .ql-arrow {
  color: var(--teal-600);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .quick-links-grid { grid-template-columns: 1fr; }
  .ql-card { border-right: none; border-bottom: 1px solid var(--line); }
  .ql-card:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .ql-card { padding: 20px 24px; }
}

/* ============ WELCOME ============ */
.welcome { padding: 120px 0; background: var(--bg); position: relative; }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.welcome-text .eyebrow { margin-bottom: 18px; }
.welcome-text h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.welcome-text h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.welcome-text p {
  font-size: 16px;
  color: var(--ink-500);
  margin: 0 0 18px;
  max-width: 520px;
}
.welcome-text .btn { margin-top: 16px; }

.welcome-image {
  position: relative;
}
.welcome-image .frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3.2;
  position: relative;
}
.welcome-image .frame img { width: 100%; height: 100%; object-fit: cover; }
.welcome-image .frame.img-fallback img { display: none; }
.welcome-image .frame.img-fallback {
  background: repeating-linear-gradient(45deg, #f1faf8, #f1faf8 10px, #d6f3ee 10px, #d6f3ee 20px);
  display: grid; place-items: center;
  font-family: ui-monospace, SFMono-Regular, monospace;
  color: var(--teal-700); font-size: 13px;
}
.welcome-image .frame.img-fallback::after { content: 'library photo'; }

/* decorative offset card */
.welcome-image .accent {
  position: absolute;
  bottom: -28px; left: -28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.welcome-image .accent .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px; font-weight: 600;
  color: var(--teal-700); line-height: 1;
}
.welcome-image .accent .lbl {
  font-size: 12px; color: var(--ink-500);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============ ANNOUNCEMENTS ============ */
.announcements {
  position: relative;
  background: linear-gradient(105deg, var(--navy-900) 0%, var(--teal-900) 100%);
  overflow: hidden;
}
.announcements::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.ann-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 68px;
  position: relative;
}
.ann-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ann-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: ann-pulse 2s infinite;
}
@keyframes ann-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0);   }
  100% { box-shadow: 0 0 0 0   rgba(74,222,128,0);   }
}
.ann-badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.ann-track {
  flex: 1;
  display: grid;
  overflow: hidden;
}
.ann-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.ann-slide--active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ann-slide p {
  flex: 1; margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  text-align: left !important;
}
.ann-link {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--teal-200);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.18s var(--ease-out), gap 0.18s var(--ease-out);
}
.ann-link:hover { color: #fff; gap: 10px; }
.ann-link svg { width: 13px; height: 13px; }
.ann-controls {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.ann-nav {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.18s, color 0.18s;
  padding: 0;
}
.ann-nav:hover { background: rgba(255,255,255,0.18); color: #fff; }
.ann-nav svg { width: 13px; height: 13px; }
.ann-counter {
  font-size: 11px; font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.35);
  min-width: 30px; text-align: center;
}
.ann-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
}
.ann-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-200));
  width: 0;
  animation: ann-fill 5s linear forwards;
}
@keyframes ann-fill { from { width: 0; } to { width: 100%; } }
.ann-progress-fill.ann-reset { animation: none; width: 0; }

@media (max-width: 768px) {
  .ann-badge-text { display: none; }
  .ann-badge { padding-right: 18px; margin-right: 18px; }
  .ann-counter { display: none; }
}
@media (max-width: 480px) {
  .ann-badge { display: none; }
  .ann-controls { padding-left: 12px; }
}

/* ============ STATS ============ */
.stats {
  padding: 100px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(24,170,157,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.stats::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat { display: flex; flex-direction: column; align-items: center; position: relative; }
.stat-bg-num {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif; font-size: 120px; font-weight: 700;
  color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.stat-icon {
  width: 60px; height: 60px;
  background: rgba(24,170,157,0.12);
  color: var(--teal-200);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
  position: relative;
}
.stat-icon::after {
  content: ""; position: absolute; inset: -6px;
  border: 1px solid rgba(24,170,157,0.25);
  border-radius: 50%;
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px; font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px; color: var(--navy-200);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============ PROGRAMS ============ */
.programs {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
}

.section-head { text-align: center; max-width: 660px; margin: 0 auto 0; position: relative; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-head h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.section-head p { color: var(--ink-500); font-size: 16px; margin: 0; }

/* Filter tabs */
.programs-filter {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  margin: 36px 0 48px;
}
.pfilter {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-500);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.15s var(--ease-in-out);
}
.pfilter:hover { border-color: var(--teal-400); color: var(--teal-700); background: var(--teal-50); }
.pfilter.active { background: var(--teal-500); border-color: var(--teal-500); color: #fff; box-shadow: 0 4px 12px rgba(24,170,157,0.28); }

/* Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.program-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
.program-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

/* Colored header band */
.program-header {
  height: 136px;
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-dark, var(--card-accent)));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.program-header::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  right: -50px; bottom: -70px;
}
.program-header::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  left: -25px; top: -35px;
}

/* Icon inside header */
.program-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: grid; place-items: center;
  color: #fff;
  position: relative; z-index: 1;
  transition: transform 0.28s var(--ease-out);
}
.program-card:hover .program-icon { transform: scale(1.07); }


.program-icon svg { width: 28px; height: 28px; }
/* Fill-based program icons (e.g. Font Awesome) follow the icon color.
   Line icons declare fill="none" and keep using their stroke. */
.program-icon svg:not([fill]),
.cl-hero-icon svg:not([fill]) { fill: currentColor; }

.program-faculty {
  position: absolute;
  bottom: 10px; left: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: 'Montserrat', sans-serif;
  z-index: 1;
}
.program-courses-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.92);
  font-family: 'Montserrat', sans-serif;
  z-index: 1;
}

/* Card body */
.program-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Rating row */
.program-rating {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 10px;
}
.program-stars { color: #f59e0b; font-size: 11px; letter-spacing: 1px; line-height: 1; }
.program-rating-val { font-size: 12px; font-weight: 700; color: var(--ink-800); font-family: 'Montserrat', sans-serif; }
.program-sep { color: var(--ink-300); font-size: 11px; }
.program-students { font-size: 11px; color: var(--ink-400); font-family: 'Montserrat', sans-serif; }

.program-header h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Specializations list */
.program-specializations {
  list-style: none;
  padding: 0; margin: 0 0 4px;
  display: flex; flex-direction: column; gap: 6px;
}
.program-specializations li {
  font-size: 13px; color: var(--ink-600);
  font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; gap: 8px;
  line-height: 1.4;
}
.program-specializations li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--card-accent, var(--teal-500));
  flex-shrink: 0;
}

.program-divider { height: 1px; background: var(--line-2); margin: 14px 0; }

/* Meta row */
.program-meta-row {
  display: flex; gap: 18px;
  margin-bottom: 14px;
}
.program-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-500);
  font-family: 'Montserrat', sans-serif;
}
.program-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--ink-400); }

/* Degree tags */
.program-tags {
  display: flex; gap: 5px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.ptag {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-600);
  border: 1px solid var(--line-2);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}

/* CTA button */
.program-link {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--card-accent, var(--teal-500));
  color: #fff;
  font-size: 13px; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  margin-top: auto;
  transition: filter 0.18s var(--ease-out), transform 0.18s var(--ease-out), gap 0.18s var(--ease-out);
}
.program-link svg { width: 14px; height: 14px; }
.program-link:hover { filter: brightness(1.1); transform: translateY(-1px); gap: 11px; }

/* ============ NEWS ============ */
.news { padding: 56px 0; background: var(--bg-soft); }
.news-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 24px; flex-wrap: wrap;
}
.news-head .eyebrow { margin-bottom: 14px; }
.news-head h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 10px; }
.news-head h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.news-head p { color: var(--ink-500); margin: 0; font-size: 16px; }
.news-all {
  color: var(--teal-700); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--teal-200);
  border-radius: 999px;
  transition: all 0.2s var(--ease-in-out);
  white-space: nowrap;
}
.news-all:hover { background: var(--teal-50); border-color: var(--teal-500); transform: translateY(-1px); }
.news-head-actions { display: flex; align-items: center; gap: 8px; }
.news-arrow {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--teal-200);
  color: var(--teal-700); cursor: pointer;
  transition: background 0.2s var(--ease-in-out), border-color 0.2s, color 0.2s,
              transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.news-arrow svg { width: 18px; height: 18px; }
.news-arrow:hover { background: var(--teal-600); border-color: var(--teal-600); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(18,148,136,0.30); }
.news-arrow:disabled { opacity: 0.4; cursor: default; transform: none; box-shadow: none; background: #fff; color: var(--teal-700); border-color: var(--line); }

/* Grid — 3 equal columns */
.news-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 2px 18px;            /* room for the cards' hover lift + shadow */
  margin: 0 -2px;
  scrollbar-width: none;             /* Firefox */
  -ms-overflow-style: none;          /* old Edge */
}
.news-grid::-webkit-scrollbar { display: none; }
.news-grid > .news-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 cards per view (two 24px gaps) */
  scroll-snap-align: start;
}

/* Base card */
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  display: flex; flex-direction: column;
  position: relative;
}
.news-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.news-card:hover .news-image img { transform: scale(1.05); }

/* ── Featured card — same style as regular cards ── */
.news-card--featured { grid-row: auto; }
.news-card--featured .news-image {
  aspect-ratio: 16 / 9;
  height: auto; min-height: unset;
}
.news-card--featured .news-body {
  display: flex;
  padding: 18px 20px 20px;
  flex: 1; flex-direction: column;
}
.news-overlay { display: none; }

/* ── Regular cards ── */
.news-grid .news-card:not(.news-card--featured) {
  flex-direction: column;
}
.news-grid .news-card:not(.news-card--featured) .news-image {
  aspect-ratio: 16 / 9;
  width: auto; height: auto;
}
.news-grid .news-card:not(.news-card--featured) .news-body {
  padding: 18px 20px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.news-grid .news-card:not(.news-card--featured) h3 {
  font-size: 17px; line-height: 1.35;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.news-grid .news-card:not(.news-card--featured) p {
  display: block;
  color: var(--ink-500); font-size: 13.5px;
  line-height: 1.6; margin: 0 0 16px;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  margin-top: auto;
}
.news-author {
  display: flex; align-items: center; gap: 8px;
}
.news-author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.news-author-name { font-size: 12px; font-weight: 600; color: var(--ink-600, var(--ink-700)); }

/* Image base */
.news-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  overflow: hidden;
}
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.news-card:hover .news-image img { transform: scale(1.04); }
.news-image.img-fallback img { display: none; }
.news-image.img-fallback {
  background: repeating-linear-gradient(45deg, #f1faf8, #f1faf8 10px, #d6f3ee 10px, #d6f3ee 20px);
}


/* Card body */
.news-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.news-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-500);
  letter-spacing: 0.03em;
}
.news-date svg { color: var(--teal-500); flex-shrink: 0; }
.news-readtime {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--ink-400);
}
.news-readtime svg { flex-shrink: 0; }
.news-card h3 {
  font-size: 18px;
  margin-bottom: 10px; line-height: 1.3;
}
.news-card p {
  color: var(--ink-500); font-size: 14px;
  margin: 0 0 16px; line-height: 1.65;
  flex: 1;
}
.news-read {
  color: var(--teal-700); font-weight: 600; font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 5px;
  letter-spacing: 0.02em;
  transition: gap 0.2s var(--ease-out), color 0.15s;
}
.news-read:hover { gap: 9px; color: var(--teal-800); }

/* ── Upcoming Events strip ── */
.events-strip {
  margin-top: 20px;
  padding: 20px 28px;
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.events-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 0% 60%, rgba(24,170,157,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.events-strip-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; position: relative;
}
.events-strip-head h3 {
  color: #fff; font-size: 20px;
  display: flex; align-items: center; gap: 10px;
}
.events-strip-head h3 span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(24,170,157,0.18);
  border: 1px solid rgba(24,170,157,0.3);
}
.events-strip-head h3 span svg { width: 14px; height: 14px; stroke: var(--teal-200); }
.events-strip-head a {
  color: var(--teal-200); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s var(--ease-out), color 0.15s;
}
.events-strip-head a:hover { color: #fff; gap: 10px; }

.events-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.event-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease-in-out), border-color 0.2s var(--ease-in-out), transform 0.2s var(--ease-out);
}
.event-item:hover {
  background: rgba(24,170,157,0.09);
  border-color: rgba(24,170,157,0.22);
  transform: translateY(-2px);
}
.event-date-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 40px; height: 44px;
  background: rgba(24,170,157,0.14);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24,170,157,0.25);
  flex-shrink: 0;
}
.event-day { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 600; color: var(--teal-200); line-height: 1; }
.event-month { font-size: 9px; font-weight: 700; color: var(--teal-500); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.event-info { flex: 1; min-width: 0; }
.event-cat { font-size: 10.5px; font-weight: 700; color: var(--teal-500); letter-spacing: 0.10em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.event-info h4 { font-size: 13.5px; color: #fff; font-family: 'Montserrat', sans-serif; margin-bottom: 6px; line-height: 1.3; }
.event-time { font-size: 11.5px; color: var(--navy-200); display: flex; align-items: center; gap: 5px; }
.event-time svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.7; }

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: 120px 0;
  background: linear-gradient(125deg, var(--navy-900) 0%, var(--teal-800) 55%, var(--teal-600) 100%);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  pointer-events: none;
}
.cta-strip::after {
  content: ""; position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 0 60px rgba(255,255,255,0.03), 0 0 0 120px rgba(255,255,255,0.02);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-inner .eyebrow { color: var(--teal-200); }
.cta-inner .eyebrow::before { background: var(--teal-200); }
.cta-inner h2 {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 52px);
  margin: 12px 0 8px;
  max-width: 560px;
}
.cta-inner h2 em { font-style: normal; color: var(--teal-200); font-weight: 400; }
.cta-inner p { color: rgba(255,255,255,0.82); margin: 0; font-size: 16px; max-width: 540px; }
.cta-strip .btn-white { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ============ FOOTER ============ */
.footer {
  background: #fff;
  color: var(--ink-700);
  padding: 80px 0 28px;
  position: relative;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand p {
  color: var(--ink-500); font-size: 14.5px;
  margin: 18px 0 22px; max-width: 320px; line-height: 1.65;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #8aa3ab;
  transition: background 0.2s var(--ease-in-out), border-color 0.2s var(--ease-in-out), color 0.2s var(--ease-in-out), transform 0.2s var(--ease-in-out);
}
.footer-social a:hover { color: #fff; transform: translateY(-2px); }
.footer-social a:hover svg {
  color: #fff;
}
.footer-social a:hover svg [fill]:not([fill="none"]) {
  fill: #fff;
}
.footer-social a:hover svg [stroke] {
  stroke: #fff;
}
.footer-social a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.footer-social a[aria-label="Twitter"]:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}
.footer-social a[aria-label="LinkedIn"]:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}
.footer-social a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  border-color: #dd2a7b;
}
.footer-social a[aria-label="YouTube"]:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.brand-light .brand-name { color: var(--ink-900); }
.brand-light .brand-tag { color: var(--ink-500); }
.footer-col h4 {
  color: var(--ink-900); font-size: 13px; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
  font-size: 14.5px; color: var(--ink-500);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col li svg { color: var(--teal-500); flex-shrink: 0; }
.footer-col a { color: var(--ink-500); transition: color 0.15s var(--ease-in-out); }
.footer-col a:hover { color: var(--teal-600); }
.footer-bottom {
  border-top: 3px solid #06a7a5;
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--ink-400); font-size: 13px; margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--ink-400); font-size: 13px; }
.footer-legal a:hover { color: var(--ink-900); }
.footer-credit { flex-basis: 100%; text-align: center; color: var(--ink-400); font-size: 13px; margin: 4px 0 0; }
.footer-credit a { color: #06a7a5; font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ============ PROGRAMS HEAD ============ */
.programs-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.programs-head .eyebrow { margin-bottom: 16px; }
.programs-head h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 0; }
.programs-head h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }

.programs--page { padding: 72px 0 100px; }

/* ============ PAGE HERO (courses.html) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-800) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--teal-200); font-weight: 400; }
.page-hero > .container > p,
.page-hero-inner > p {
  color: rgba(255,255,255,0.80);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.65;
}
.page-hero-stats {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.page-hero-stat { text-align: center; padding: 0 32px; }
.page-hero-stat:first-child { padding-left: 0; }
.page-hero-stat-val {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px; font-weight: 600;
  color: #fff; line-height: 1;
  margin-bottom: 4px;
}
.page-hero-stat-lbl {
  font-size: 12px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.page-hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.18);
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}
.breadcrumb a { color: var(--teal-200); transition: color 0.15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { opacity: 0.5; }

/* ============ SINGLE COURSE PAGE ============ */
.sc-hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.sc-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sc-hero-inner { position: relative; z-index: 1; }

.sc-hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.sc-hero-text { color: #fff; }

.sc-hero-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 24px;
}
.sc-hero-icon svg { width: 32px; height: 32px; }

.sc-hero-text .eyebrow { margin-bottom: 12px; }

.sc-hero-text h1 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 1.1;
}

.sc-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.sc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.sc-tag {
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
}

.sc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats cards on the right */
.sc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 280px;
}
.sc-stat-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  backdrop-filter: blur(8px);
}
.sc-stat-icon {
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
}
.sc-stat-icon svg { width: 20px; height: 20px; display: block; }
.sc-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 600;
  color: #fff; line-height: 1.2;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 120px;
}
.sc-stat-lbl {
  font-size: 11px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* Details section */
.sc-details {
  padding: 80px 0 100px;
  background: var(--bg-soft);
}
.sc-details-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.sc-section { margin-bottom: 56px; }
.sc-section:last-child { margin-bottom: 0; }
.sc-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.sc-section h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.sc-section > p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
}

/* Specialization cards */
.sc-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.sc-spec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--spec-accent, var(--teal-500));
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.sc-spec-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.sc-spec-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sc-spec-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.65;
}

/* Outcomes list */
.sc-outcomes {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sc-outcomes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}
.sc-outcome-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Sidebar */
.sc-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }

.sc-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.sc-sidebar-card h3 {
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.sc-sidebar-card--alt { background: var(--bg-soft); }
.sc-sidebar-card .btn-primary { color: #fff; }
.sc-sidebar-card--dark {
  background: linear-gradient(135deg, var(--navy-900), var(--teal-800));
  border-color: transparent;
}
.sc-cta-question {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
}

.sc-overview-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 0;
}
.sc-overview-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13.5px;
  font-family: 'Montserrat', sans-serif;
}
.sc-overview-list li:last-child { border-bottom: none; }
.sc-ov-label { color: var(--ink-500); flex-shrink: 0; }
.sc-ov-val { font-weight: 600; color: var(--ink-800); text-align: right; max-width: 55%; }

.sc-info-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-700);
  transition: color 0.15s;
}
.sc-info-link:hover { color: var(--teal-600); }

.sc-req-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.sc-req-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}
.sc-req-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ============ COURSES LIST PAGE (courses.html) ============ */
.cl-hero {
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.cl-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cl-hero-inner { position: relative; z-index: 1; }

.cl-hero-body {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 28px;
}
.cl-hero-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: grid; place-items: center;
  color: #fff;
}
.cl-hero-icon svg { width: 28px; height: 28px; }
.cl-hero-text .eyebrow { margin-bottom: 8px; }
.cl-hero-text h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  line-height: 1.1;
}
.cl-hero-text p {
  color: rgba(255,255,255,0.80);
  font-size: 15px; margin: 0;
}

.cl-hero-meta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.cl-hero-badge {
  display: inline-flex; align-items: center;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* Body */
.cl-body { padding: 72px 0 100px; background: var(--bg-soft); }

/* Course card in courses.html */
.cl-list { display: flex; flex-direction: column; gap: 20px; }

.cl-course-card {
  display: flex; align-items: stretch; gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.cl-course-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.cl-course-left {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; gap: 12px;
  padding: 28px 20px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--cl-accent) 8%, white), white);
  border-right: 1px solid var(--line);
  min-width: 84px;
}
.cl-course-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--cl-accent);
  line-height: 1;
  opacity: 0.35;
}
.cl-course-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--cl-accent) 12%, transparent);
  display: grid; place-items: center;
  color: var(--cl-accent);
  flex-shrink: 0;
}
.cl-course-icon svg { width: 22px; height: 22px; }

.cl-course-body { flex: 1; padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }

.cl-course-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
}
.cl-course-tagline {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cl-accent);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.cl-course-top h3 {
  font-size: 20px; margin-bottom: 8px; letter-spacing: -0.02em;
}
.cl-course-top p {
  font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.65;
  max-width: 560px;
}

.cl-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  background: var(--cl-accent);
  color: #fff;
  font-size: 13px; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  transition: filter 0.18s var(--ease-out), transform 0.18s var(--ease-out), gap 0.18s;
}
.cl-view-btn svg { width: 14px; height: 14px; }
.cl-view-btn:hover { filter: brightness(1.1); transform: translateY(-1px); gap: 12px; }

.cl-course-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.cl-course-meta span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  color: var(--ink-500); font-family: 'Montserrat', sans-serif;
}
.cl-course-meta svg { color: var(--cl-accent); }
.cl-dept-head { color: var(--ink-700) !important; font-weight: 700 !important; }

/* Empty state */
.cl-empty {
  text-align: center;
  padding: 80px 24px;
}
.cl-empty-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--teal-50);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--teal-500);
}
.cl-empty-icon svg { width: 32px; height: 32px; }
.cl-empty h3 { font-size: 22px; margin-bottom: 12px; }
.cl-empty p  { color: var(--ink-500); font-size: 15px; max-width: 420px; margin: 0 auto 28px; }

/* ============ SINGLE COURSE PAGE — TOPICS GRID ============ */
.sc-tagline {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.06em;
  margin: -12px 0 28px;
  font-family: 'Montserrat', sans-serif;
}

.sc-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sc-topic-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s var(--ease-out), border-color 0.2s;
}
.sc-topic-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--topic-accent, var(--teal-500));
}
.sc-topic-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--topic-accent, var(--teal-500));
  opacity: 0.30; line-height: 1; flex-shrink: 0;
}
.sc-topic-name {
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-800); line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

/* Program reference card in sidebar */
.sc-prog-ref-inner {
  display: flex; align-items: center; gap: 14px;
}
.sc-prog-ref-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--prog-accent-dark, #0b5f58), var(--prog-accent, #18aa9d));
  display: grid; place-items: center;
  color: #fff;
}
.sc-prog-ref-icon svg { width: 20px; height: 20px; }
.sc-prog-ref-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}
.sc-prog-ref-link {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--prog-accent, var(--teal-700));
  transition: gap 0.15s, opacity 0.15s;
}
.sc-prog-ref-link:hover { opacity: 0.8; }

/* Course plan PDF banner */
.sc-plan-banner-section {
  background: var(--bg-soft);
  padding: 0 0 72px;
}
.sc-plan-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--plan-accent-dark, #0b5f58), var(--plan-accent, #18aa9d));
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
}
.sc-plan-banner::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}
.sc-plan-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  flex-shrink: 0;
}
.sc-plan-icon svg {
  width: 28px;
  height: 28px;
}
.sc-plan-content {
  position: relative;
  z-index: 1;
}
.sc-plan-kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.sc-plan-content h2 {
  color: #fff;
  font-size: clamp(20px, 2.3vw, 28px);
  margin: 0 0 8px;
}
.sc-plan-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
}
.sc-plan-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 150px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--plan-accent-dark, #0b5f58);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(15,23,42,0.14);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sc-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.20);
}
.sc-plan-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 760px) {
  .sc-plan-banner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 26px 22px;
  }
  .sc-plan-content p {
    max-width: none;
  }
  .sc-plan-btn {
    width: 100%;
  }
}

/* ============ COURSE CARDS (singleCourse.html) ============ */
.sc-courses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sc-course-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.sc-course-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--course-accent), var(--course-accent-dark));
  border-radius: 4px 0 0 4px;
}
.sc-course-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.sc-course-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--course-accent);
  line-height: 1;
  min-width: 36px;
  opacity: 0.25;
  user-select: none;
}
.sc-course-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--course-accent) 12%, transparent);
  display: grid; place-items: center;
  color: var(--course-accent);
}
.sc-course-icon svg { width: 22px; height: 22px; }
.sc-course-body { flex: 1; min-width: 0; }
.sc-course-body h4 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sc-course-body p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.65;
  margin: 0 0 14px;
}
.sc-course-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.sc-course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  font-family: 'Montserrat', sans-serif;
}
.sc-course-meta svg { color: var(--course-accent); flex-shrink: 0; }

@media (max-width: 640px) {
  .sc-course-card { flex-wrap: wrap; gap: 14px; }
  .sc-course-num { display: none; }
}

@media (max-width: 1024px) {
  .cl-course-top { flex-direction: column; gap: 16px; }
  .cl-view-btn { align-self: flex-start; }
  .sc-topics-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cl-course-card { flex-direction: column; }
  .cl-course-left { flex-direction: row; padding: 16px 20px; border-right: none; border-bottom: 1px solid var(--line); }
  .cl-course-body { padding: 18px 20px; }
  .cl-hero-body { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff;
    padding: 20px 28px; gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open > li { width: 100%; }
  .welcome-grid { grid-template-columns: 1fr; gap: 56px; }
  .welcome-text p { max-width: none; }
  .welcome-image .accent { left: 16px; bottom: -24px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .program-header { height: 118px; }
  .news-grid > .news-card { flex: 0 0 calc((100% - 24px) / 2); }   /* 2 per view */
  .events-list { grid-template-columns: repeat(2, 1fr); }
  .events-strip { padding: 28px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .hero { min-height: 540px; height: auto; max-height: none; }
  .hero-inner { padding: 80px 24px 120px; }
  .hero-arc { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-header { height: 108px; }
  .program-icon { width: 58px; height: 58px; }
  .program-icon svg { width: 24px; height: 24px; }
  .news-grid > .news-card { flex: 0 0 86%; }   /* ~1 per view, peeking the next */
  .events-list { grid-template-columns: 1fr; }
  .events-strip { padding: 24px 20px; margin-top: 28px; }
  .welcome { padding: 72px 0; }
  .programs, .news, .cta-strip { padding: 72px 0; }
  .stats { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-head { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .programs-head { flex-direction: column; align-items: flex-start; }
  .page-hero-stats { gap: 0; }
  .page-hero-stat { padding: 0 20px; }
  .page-hero-stat-divider { height: 32px; }
}

@media (max-width: 1024px) {
  .sc-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .sc-hero-stats { grid-template-columns: repeat(4, 1fr); min-width: unset; }
  .sc-details-grid { grid-template-columns: 1fr; }
  .sc-sidebar { position: static; }
}

/* ============ MISSION & VISION SECTION ============ */
.mv-section { padding: 40px 0 80px; background: var(--bg-soft); }
.mv-section-head { text-align: center; margin-bottom: 48px; }
.mv-section-head h2 { margin-top: 8px; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.mv-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.mv-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mv-card-icon svg { width: 26px; height: 26px; stroke: var(--teal-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mv-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.mv-card p { color: var(--ink-500); line-height: 1.75; margin: 0; font-size: 14.5px; }

/* ============ CONTACT INFO CARDS ============ */
.contact-info-section { padding: 80px 0 40px; }
.contact-section-head { text-align: center; margin-bottom: 48px; }
.contact-section-head h2 { margin-top: 8px; }
.contact-section-head p { color: var(--ink-500); margin-top: 12px; font-size: 15px; }
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  text-align: center;
  transition: box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.contact-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.contact-card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-card-icon svg { width: 28px; height: 28px; stroke: var(--teal-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.contact-card p { color: var(--ink-500); font-size: 14px; line-height: 1.65; margin: 0; }
.contact-card a { color: var(--teal-700); transition: color 0.15s; }
.contact-card a:hover { color: var(--teal-500); }

/* ============ CONTACT FORM ============ */
.contact-form-section { padding: 40px 0 80px; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
}
.contact-form-text { padding-top: 8px; }
.contact-form-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; }
.contact-form-text p { color: var(--ink-500); line-height: 1.75; font-size: 15px; margin-bottom: 32px; }
.contact-form-extras { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact-extra-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(11,31,36,0.05);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.contact-extra-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(11,31,36,0.10);
  border-color: var(--teal-200);
}
.contact-extra-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--teal-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.25s var(--ease-out);
}
.contact-extra-item:hover .contact-extra-icon { background: var(--teal-100); }
.contact-extra-icon svg { width: 20px; height: 20px; stroke: var(--teal-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-extra-label { font-size: 12px; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-extra-val { font-size: 14px; color: var(--ink-700); font-weight: 500; }
.contact-extra-val a { color: var(--teal-700); }
.contact-extra-val a:hover { color: var(--teal-500); }
.cf-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-700); font-family: 'Montserrat', sans-serif; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink-800);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s var(--ease-in-out), box-shadow 0.15s var(--ease-in-out);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-300); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(24,170,157,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

@media (max-width: 1024px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cf-card { padding: 28px 20px; }
}

@media (max-width: 640px) {
  .sc-hero { padding: 60px 0 56px; }
  .sc-hero-stats { grid-template-columns: 1fr 1fr; }
  .sc-outcomes { grid-template-columns: 1fr; }
  .sc-details { padding: 56px 0 72px; }
  .page-hero { padding: 60px 0 56px; }
}

/* ============ CAMPUS LIFE PAGE ============ */
.cl-page-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end;
  overflow: hidden; background: #050d1a;
}
.cl-page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.cl-page-hero:hover .cl-page-hero-bg { transform: scale(1); }
.cl-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.90) 0%, rgba(5,13,26,0.45) 60%, rgba(5,13,26,0.15) 100%);
}
.cl-page-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(94,234,212,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cl-page-hero-inner { position: relative; z-index: 2; padding: 0 0 64px; width: 100%; }
.cl-page-hero-inner .breadcrumb { margin-bottom: 20px; }
.cl-page-hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin: 0 0 14px;
}
.cl-page-hero-inner h1 em { color: #5eead4; font-style: normal; }
.cl-page-hero-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 540px; line-height: 1.65; margin: 0; }

.cl-stats { background: #1FA39A; padding: 0; }
.cl-stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.cl-stat { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.18); }
.cl-stat:last-child { border-right: none; }
.cl-stat-num { display: block; font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; }
.cl-stat-lbl { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

.cl-gallery-section {
  position: relative;
  background: linear-gradient(180deg, #f6fafc 0%, #e9f1f6 100%);
  padding: 94px 0 112px;
  overflow: hidden;
}
.cl-gallery-section::before {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  top: -150px; right: -150px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,170,157,0.13) 0%, transparent 68%);
}
.cl-gallery-section::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
  bottom: -180px; left: -170px; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.09) 0%, transparent 70%);
}
.cl-gallery-section > .container { position: relative; z-index: 1; }

.cl-section-header { text-align: center; margin-bottom: 58px; }
.cl-section-header .eyebrow {
  margin-bottom: 16px; color: #0d9488;
  background: rgba(24,170,157,0.10);
  padding: 8px 16px; border-radius: 999px;
}
.cl-section-header h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: #0f172a; line-height: 1.12; margin: 0 0 16px; }
.cl-section-header h2 em { color: #0e7a71; font-style: normal; }
.cl-section-header p { font-size: 1.02rem; color: #64748b; max-width: 545px; margin: 0 auto; line-height: 1.65; }

.cl-bento { columns: 3; column-gap: 14px; }
.cl-bento-item { break-inside: avoid; margin-bottom: 14px; position: relative; overflow: hidden; border-radius: 14px; cursor: pointer; }
.cl-bento-item img { width: 100%; height: auto; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.cl-bento-item:hover img { transform: scale(1.05); }
.cl-bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,13,26,0.75) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s ease; }
.cl-bento-item:hover .cl-bento-overlay { opacity: 1; }
.cl-bento-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; transform: translateY(6px); opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; }
.cl-bento-item:hover .cl-bento-label { transform: translateY(0); opacity: 1; }
.cl-bento-cat { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5eead4; margin-bottom: 3px; }
.cl-bento-title { display: block; font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.3; }

/* ── Album Grid ──────────────────────────────────────────────── */
/* Masonry layout — varied card heights for a dynamic, gap-free gallery (any count). */
.album-grid {
  columns: 4;
  column-gap: 18px;
}
.album-grid .album-card {
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
}
/* Repeating height rhythm — organic size variety */
.album-card { height: 300px; }
.album-card:nth-child(6n+1) { height: 384px; }
.album-card:nth-child(6n+2) { height: 280px; }
.album-card:nth-child(6n+3) { height: 344px; }
.album-card:nth-child(6n+4) { height: 264px; }
.album-card:nth-child(6n+5) { height: 360px; }
.album-card:nth-child(6n+6) { height: 304px; }

.album-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #0b1f24;
  outline: none;
  box-shadow: 0 6px 20px rgba(11,31,36,0.12);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.55s cubic-bezier(0.22,1,0.36,1);
}
.album-card::after { /* crisp inner ring for a premium edge */
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}
.album-card:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(11,31,36,0.30); }
.album-card:focus-visible { box-shadow: 0 0 0 3px var(--teal-500), 0 18px 40px rgba(11,31,36,0.28); }

.album-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.6s ease;
}
.album-card:hover .album-card-bg,
.album-card:focus-visible .album-card-bg { transform: scale(1.12); filter: saturate(1.08) brightness(1.04); }

.album-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(6,16,26,0.90) 0%, rgba(6,16,26,0.42) 48%, rgba(6,16,26,0.04) 100%);
  transition: background 0.5s ease;
}
.album-card:hover .album-card-overlay,
.album-card:focus-visible .album-card-overlay {
  background: linear-gradient(to top, rgba(5,38,36,0.93) 0%, rgba(6,28,32,0.50) 52%, rgba(13,148,136,0.14) 100%);
}

/* Floating photo-count badge (glassmorphism) */
.album-card-badge {
  position: absolute; top: 15px; right: 15px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: #fff;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  backdrop-filter: blur(8px) saturate(150%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.album-card-badge svg { width: 13px; height: 13px; }
.album-card:hover .album-card-badge,
.album-card:focus-visible .album-card-badge {
  background: rgba(24,170,157,0.55); border-color: rgba(94,234,212,0.50);
  transform: translateY(-2px) scale(1.04);
}

.album-card-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px 26px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.album-card:hover .album-card-content,
.album-card:focus-visible .album-card-content { transform: translateY(-2px); }

.album-date {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #5eead4; margin-bottom: 11px;
  background: rgba(94,234,212,0.14); padding: 4px 11px; border-radius: 999px;
}
.album-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.22rem; font-weight: 600;
  color: #fff; margin: 0; line-height: 1.22;
  text-shadow: 0 1px 14px rgba(0,0,0,0.30);
}
.album-card:nth-child(6n+1) .album-title { font-size: 1.5rem; }

.album-desc {
  font-size: 0.84rem; color: rgba(255,255,255,0.80); line-height: 1.5;
  margin: 0; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px);
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease,
              transform 0.5s cubic-bezier(0.22,1,0.36,1), margin 0.5s ease;
}
.album-card:hover .album-desc,
.album-card:focus-visible .album-desc { max-height: 66px; opacity: 1; transform: translateY(0); margin: 9px 0 0; }

.album-card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 15px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: #fff;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.album-card:hover .album-card-cta,
.album-card:focus-visible .album-card-cta { opacity: 1; transform: translateY(0); }
.album-card-cta-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-500); color: #fff;
  box-shadow: 0 4px 12px rgba(24,170,157,0.50);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.album-card-cta-arrow svg { width: 14px; height: 14px; }
.album-card:hover .album-card-cta-arrow { transform: translateX(4px); box-shadow: 0 6px 18px rgba(24,170,157,0.65); }

/* Touch devices have no hover — keep the description + CTA visible */
@media (hover: none) {
  .album-desc { max-height: 66px; opacity: 1; transform: none; margin: 9px 0 0; }
  .album-card-cta { opacity: 1; transform: none; }
}

.cl-no-albums { text-align: center; color: var(--ink-400); padding: 72px 0; font-size: 1rem; }

/* Album Modal */
.album-modal {
  display: none; position: fixed; inset: 0; z-index: 9990;
  align-items: flex-end; justify-content: stretch;
}
.album-modal.open { display: flex; }
.album-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,13,26,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.album-modal-dialog {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 24px 24px 0 0;
  width: 100%; max-height: 88vh;
  overflow-y: auto; overflow-x: hidden;
  padding: 32px 32px 40px;
  animation: albumSlideUp 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes albumSlideUp { from { transform: translateY(48px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.album-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 2;
  padding-top: 2px;
}
.album-modal-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 600;
  color: var(--ink-900); margin: 0;
}
.album-modal-close {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 20px; cursor: pointer; color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
  line-height: 1;
}
.album-modal-close:hover { background: var(--line); transform: scale(1.1); }
.album-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.album-modal-img-wrap {
  aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; cursor: pointer;
  background: var(--bg-soft);
}
.album-modal-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s var(--ease-out);
  display: block;
}
.album-modal-img-wrap:hover img { transform: scale(1.07); }

@media (max-width: 960px) {
  .album-grid { columns: 2; }
  .album-modal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .album-grid { columns: 1; }
  .album-modal-grid { grid-template-columns: repeat(2, 1fr); }
  .album-modal-dialog { padding: 20px 16px 32px; border-radius: 20px 20px 0 0; }
  .album-modal-title { font-size: 1.2rem; }
}

.cl-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(5,13,26,0.95); align-items: center; justify-content: center; padding: 24px; }
.cl-lightbox.open { display: flex; }
.cl-lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.cl-lightbox-close { position: fixed; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.cl-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.cl-lightbox-caption { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); text-align: center; }
.cl-lightbox-caption span { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: rgba(255,255,255,0.8); }

.cl-cta { background: linear-gradient(135deg, #0b5f58 0%, #18aa9d 100%); padding: 72px 0; text-align: center; }
.cl-cta .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 12px; display: block; }
.cl-cta h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; font-weight: 400; margin: 0 0 12px; }
.cl-cta h2 em { font-style: normal; color: #ccfbf1; }
.cl-cta p { color: rgba(255,255,255,0.75); margin: 0 auto 32px; max-width: 480px; line-height: 1.6; }
.cl-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) { .cl-bento { columns: 2; } }
@media (max-width: 640px) {
  .cl-stats-inner { grid-template-columns: 1fr; }
  .cl-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .cl-stat:last-child { border-bottom: none; }
}
@media (max-width: 480px) { .cl-bento { columns: 1; } }

/* ============ CALENDAR PAGE ============ */
.cal-section { background: #f0f4f8; padding: 72px 0 96px; }
.cal-month-block { margin-bottom: 48px; }
.cal-month-block:last-child { margin-bottom: 0; }
.cal-month-label { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 600; color: #0f172a; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(13,148,136,0.25); display: flex; align-items: center; gap: 10px; }
.cal-month-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(13,148,136,0.12); border: 1px solid rgba(13,148,136,0.3); flex-shrink: 0; }
.cal-month-icon svg { width: 14px; height: 14px; stroke: #0d9488; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cal-event-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; box-shadow: 0 1px 4px rgba(15,23,42,0.06); transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s; }
.cal-event-item:hover { box-shadow: 0 4px 16px rgba(13,148,136,0.12); border-color: rgba(13,148,136,0.35); transform: translateY(-2px); }
.cal-event-item.is-past { opacity: 0.6; }
.cal-date-box { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 44px; height: 48px; background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.20); border-radius: 8px; flex-shrink: 0; }
.cal-day  { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 600; color: #0d9488; line-height: 1; }
.cal-mon  { font-size: 9px; font-weight: 700; color: #0f766e; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.cal-info { flex: 1; min-width: 0; }
.cal-cat  { font-size: 10.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.cal-info h4 { font-size: 13.5px; color: #0f172a; font-family: 'Montserrat', sans-serif; margin-bottom: 6px; line-height: 1.3; }
.cal-time { font-size: 11.5px; color: #64748b; display: flex; align-items: center; gap: 5px; }
.cal-time svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.7; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) { .cal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cal-grid { grid-template-columns: 1fr; } }
.cal-event-item { cursor: pointer; }
.cal-event-item:focus-visible { outline: 2px solid #0d9488; outline-offset: 2px; }

/* ── Calendar Event Modal ─────────────────────────────── */
.cal-modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.cal-modal[hidden] { display: none; }
.cal-modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.cal-modal-dialog { position: relative; background: #fff; border-radius: 16px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(15,23,42,0.18), 0 4px 16px rgba(15,23,42,0.10); animation: cal-modal-in 0.22s ease; outline: none; }
@keyframes cal-modal-in { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }
.cal-modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid #e2e8f0; background: #f8fafc; cursor: pointer; font-size: 20px; line-height: 30px; color: #64748b; display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s; z-index: 1; padding: 0; }
.cal-modal-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.cal-modal-header { display: flex; gap: 14px; align-items: flex-start; padding: 24px 24px 18px; border-bottom: 1px solid #f1f5f9; }
.cal-modal-date-box { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 56px; height: 62px; background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.25); border-radius: 10px; flex-shrink: 0; }
.cal-modal-day { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 700; color: #0d9488; line-height: 1; }
.cal-modal-mon { font-size: 10px; font-weight: 700; color: #0f766e; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.cal-modal-head-text { flex: 1; min-width: 0; padding-right: 32px; }
.cal-modal-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: #0d9488; display: block; margin-bottom: 5px; }
.cal-modal-title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; color: #0f172a; margin: 0 0 5px; line-height: 1.25; }
.cal-modal-fulldate { font-size: 12.5px; color: #64748b; display: block; }
.cal-modal-body { padding: 18px 24px 24px; }
.cal-modal-meta-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cal-modal-meta-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #334155; }
.cal-modal-meta-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.65; }
.cal-modal-meta-item[hidden] { display: none; }
.cal-modal-desc { font-size: 14px; color: #475569; line-height: 1.75; margin-bottom: 20px; white-space: pre-line; }
.cal-modal-desc[hidden] { display: none; }
.cal-modal-link[hidden] { display: none; }
@media (max-width: 480px) { .cal-modal-dialog { border-radius: 12px; } .cal-modal-header { padding: 20px 16px 14px; } .cal-modal-body { padding: 14px 16px 20px; } .cal-modal-title { font-size: 18px; } }

/* ============ ABOUT PAGE ============ */
.welcome { padding-bottom: 70px; }
.welcome-text .btn-primary {
  border: 2px solid rgba(255,255,255,0.35);
  outline: 2px solid rgba(13,148,136,0.25);
  outline-offset: 3px;
}

/* Accreditation */
.accred-section {
  padding: 80px 0 40px;
  background: #f8fafc;
  position: relative;
}
.accred-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,148,136,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.accred-section-head { text-align: center; margin-bottom: 56px; }
.accred-section-head h2 { margin-top: 10px; }
.accred-section-head p {
  max-width: 520px;
  margin: 12px auto 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}
.accred-bodies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.accred-body-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0d9488;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(5,13,26,0.05);
}
.accred-body-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accred-body-icon svg { width: 26px; height: 26px; stroke: #fff; }
.accred-body-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.3;
}
.accred-body-content p { font-size: 0.9rem; color: #64748b; line-height: 1.75; margin: 0; }

.accred-programs-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-top: 48px;
  margin-top: 8px;
  position: relative;
}
.accred-programs-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #0d9488 0%, #cbd5e1 40%, transparent 100%);
}
.accred-programs-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  white-space: nowrap;
  padding-left: 16px;
  border-left: 4px solid #0d9488;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.accred-programs-head::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #e2e8f0, transparent);
  border-radius: 1px;
}
.accred-programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.accred-program-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #0d9488;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 1px 4px rgba(5,13,26,0.05);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.accred-program-item:hover {
  border-color: #0d9488;
  border-left-color: #0d9488;
  box-shadow: 0 6px 22px rgba(13,148,136,0.15);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 65%);
}
.accred-program-num {
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(13,148,136,0.3);
}

/* Mission & Vision */
.mv-section { padding-bottom: 32px !important; }

/* Our Values */
.our-values-section { padding: 32px 0 80px; background: #f8fafc; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(5,13,26,0.10); }
.value-card-icon {
  width: 56px; height: 56px;
  background: #f0fdfa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card-icon svg { width: 26px; height: 26px; stroke: #0d9488; }
.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .accred-bodies { grid-template-columns: 1fr; }
  .accred-programs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .accred-programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ── Single Course: Who Should Enroll & Career Paths ──────────── */
.sc-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) { .sc-who-grid { grid-template-columns: 1fr; } }

.sc-who-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--sc-accent, #18aa9d);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.sc-who-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
}
.sc-who-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-who-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sc-who-item p {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}
.sc-careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .sc-careers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .sc-careers-grid { grid-template-columns: 1fr; } }
.sc-career-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 20px 12px; text-align: center; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 1px 4px rgba(15,23,42,0.05); transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
.sc-career-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(15,23,42,0.10); border-color: var(--career-accent, #18aa9d); }
.sc-career-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sc-career-icon svg { width: 22px; height: 22px; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sc-career-title { font-size: 12.5px; font-weight: 600; color: #0f172a; line-height: 1.35; }

/* ── Single News Article ──────────────────────────────────────── */
.news-single-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; padding-bottom: 56px; overflow: hidden; }
.news-single-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.news-single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,13,26,0.82) 0%, rgba(5,13,26,0.45) 60%, rgba(5,13,26,0.2) 100%); }
.news-single-hero-inner { position: relative; z-index: 2; }
.news-single-hero-inner .breadcrumb a,
.news-single-hero-inner .breadcrumb span { color: rgba(255,255,255,0.75); }
.news-single-hero-inner .breadcrumb svg { stroke: rgba(255,255,255,0.5); }
.news-single-hero-inner h1 { color: #ffffff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 12px 0 10px; max-width: 760px; line-height: 1.2; }
.news-single-excerpt { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 640px; line-height: 1.65; margin: 0 0 16px; }
.news-single-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.news-single-meta .news-date,
.news-single-meta .news-readtime { display: flex; align-items: center; gap: 5px; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.news-single-meta .news-date svg,
.news-single-meta .news-readtime svg { stroke: rgba(255,255,255,0.65); }
.news-single-meta .news-author { display: flex; align-items: center; gap: 8px; }
.news-single-meta .news-author-name { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.news-single-meta .news-author-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0; }

.news-single-body { padding: 72px 0 96px; background: var(--bg-soft); }
.news-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
@media (max-width: 900px) {
  .news-single-layout { grid-template-columns: 1fr; }
  .news-single-content { padding: 28px 24px; }
}

.news-single-content {
  font-size: 1rem; line-height: 1.8; color: #1e293b;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 48px;
  box-shadow: 0 10px 34px rgba(11,31,36,0.07);
}
.news-single-content > :first-child { margin-top: 0; }
.news-single-content > :last-child { margin-bottom: 0; }
.news-single-content h2 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; color: #0f172a; margin: 2em 0 0.6em; }
.news-single-content h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; color: #0f172a; margin: 1.6em 0 0.5em; }
.news-single-content p { margin-bottom: 1.25em; }
.news-single-content img { max-width: 100%; border-radius: 12px; margin: 1.5em 0; }
.news-single-content ul, .news-single-content ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.news-single-content li { margin-bottom: 0.4em; }
.news-single-content blockquote { border-left: 4px solid #0d9488; padding: 12px 20px; margin: 1.5em 0; background: #f0fdfa; border-radius: 0 8px 8px 0; color: #0b5f58; font-style: italic; }

/* ── News media blocks ── */
.news-media {
  margin-bottom: 36px;
  border-radius: 14px;
  overflow: hidden;
}
.news-media--youtube iframe,
.news-media--video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 4px 24px rgba(15,23,42,0.12);
}
.news-media--link {
  display: flex;
  overflow: visible;
}
.news-media--link .btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.news-sidebar-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.news-sidebar-card h4 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: #0f172a; margin: 0 0 16px; }
.news-sidebar-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.news-sidebar-card li { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 12px; }
.news-sidebar-card li:last-child { border-bottom: none; padding-bottom: 0; }
.news-sidebar-card li span { color: #64748b; }
.news-sidebar-card li strong { color: #0f172a; text-align: right; max-width: 55%; }

/* ── News Archive ─────────────────────────────────────────────── */
.news-archive-hero { background: var(--navy-950, #050d1a); position: relative; overflow: hidden; }
.news-archive-grid { padding: 72px 0 96px; }
.news-archive-grid .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .news-archive-grid .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .news-archive-grid .container { grid-template-columns: 1fr; } }
.news-archive-empty { text-align: center; padding: 80px 0; color: #64748b; }

/* ── Apply Page ──────────────────────────────────────────────── */
.apply-docs-section { padding: 88px 0 80px; background: var(--bg); }
.apply-docs-head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.apply-docs-head .eyebrow { margin-bottom: 16px; }
.apply-docs-head h2 { font-size: clamp(26px, 4vw, 40px); margin-top: 0; }
.apply-docs-head h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.apply-docs-head p { color: var(--ink-500); font-size: 16px; line-height: 1.7; margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }

.apply-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.apply-doc-card--last { grid-column: 1 / 2; }

.apply-doc-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.apply-doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.apply-doc-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-800) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.apply-doc-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.apply-doc-icon svg { width: 22px; height: 22px; stroke: var(--teal-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.apply-doc-body { flex: 1; min-width: 0; }
.apply-doc-body h4 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--ink-900); margin: 0 0 8px; line-height: 1.25; }
.apply-doc-body p { color: var(--ink-500); font-size: 0.875rem; line-height: 1.65; margin: 0; }

.apply-doc-note {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 40px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.apply-doc-note svg { width: 20px; height: 20px; stroke: var(--teal-700); flex-shrink: 0; margin-top: 2px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.apply-doc-note p { margin: 0; color: var(--teal-900, #083f3a); font-size: 0.875rem; line-height: 1.7; }

/* Apply steps */
.apply-steps-section { padding: 80px 0 88px; background: var(--bg-soft); }
.apply-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.apply-step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.apply-step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.apply-step-icon svg { width: 28px; height: 28px; stroke: var(--teal-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.apply-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
}
.apply-step h4 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 600; margin: 0 0 10px; color: var(--ink-900); }
.apply-step p { color: var(--ink-500); font-size: 0.875rem; line-height: 1.65; margin: 0; }
.apply-step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-200), var(--teal-500));
  align-self: center;
  margin-top: -60px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .apply-doc-grid { grid-template-columns: 1fr; }
  .apply-doc-card--last { grid-column: auto; }
  .apply-steps-grid { flex-direction: column; align-items: center; gap: 32px; }
  .apply-step-connector { display: none; }
  .apply-step { padding: 0; max-width: 320px; width: 100%; }
}

/* ── Support Page ────────────────────────────────────────────── */
.sp-section-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.sp-section-head .eyebrow { margin-bottom: 14px; }
.sp-section-head h2 { font-size: clamp(26px, 4vw, 40px); margin: 0; }
.sp-section-head h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.sp-section-head p { color: var(--ink-500); font-size: 16px; line-height: 1.7; margin-top: 14px; }

/* Who section */
.sp-who-section { padding: 88px 0 80px; background: var(--bg-soft); }
.sp-who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.sp-who-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--line); border-top: 4px solid var(--card-color, var(--teal-500));
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  display: flex; flex-direction: column;
}
.sp-who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.sp-who-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--card-light, #effaf8);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.sp-who-icon svg { width: 26px; height: 26px; stroke: var(--card-color, var(--teal-600)); }
.sp-who-card h4 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--ink-900); margin: 0 0 10px; }
.sp-who-card p { color: var(--ink-500); font-size: 0.875rem; line-height: 1.65; margin: 0 0 18px; flex: 1; }
.sp-who-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.sp-who-tags span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  background: var(--card-light, #effaf8); color: var(--card-color, var(--teal-700));
  border-radius: 20px; padding: 3px 10px;
}

/* Ways section */
.sp-ways-section { padding: 80px 0; background: #fff; }
.sp-ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-way-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow 0.22s var(--ease-out);
}
.sp-way-card:hover { box-shadow: var(--shadow-card); }
.sp-way-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.sp-way-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sp-way-icon--teal  { background: var(--teal-50);  } .sp-way-icon--teal  svg { stroke: var(--teal-700); }
.sp-way-icon--purple{ background: #f5f3ff; }         .sp-way-icon--purple svg { stroke: #7c3aed; }
.sp-way-icon--gold  { background: #fffbeb; }         .sp-way-icon--gold   svg { stroke: #d97706; }
.sp-way-body { flex: 1; min-width: 0; }
.sp-way-body h4 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink-900); margin: 0 0 6px; }
.sp-way-body p { color: var(--ink-500); font-size: 0.85rem; line-height: 1.6; margin: 0 0 10px; }
.sp-way-link { display: block; font-size: 0.9rem; font-weight: 600; color: var(--teal-700); word-break: break-all; transition: color 0.15s; }
.sp-way-link:hover { color: var(--teal-500); }
.sp-way-link--text { color: var(--ink-700); cursor: default; }
.sp-way-hours { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-400); margin-top: 6px; }

/* Form section */
.sp-form-section { padding: 88px 0 96px; background: var(--bg-soft); }
.sp-form-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 680px; margin: 0 auto; }
.sp-form-info { text-align: center; }
.sp-form-info .eyebrow { margin-bottom: 14px; }
.sp-form-info h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 16px; }
.sp-form-info h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }
.sp-form-info > p { color: var(--ink-500); font-size: 1rem; line-height: 1.7; margin: 0 0 32px; }
.sp-form-tips { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.sp-form-tips li {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: 0.9rem; color: var(--ink-700); line-height: 1.55;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(11,31,36,0.05);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.sp-form-tips li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(11,31,36,0.10);
  border-color: var(--teal-200);
}
.sp-tip-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--teal-100); display: flex; align-items: center; justify-content: center; margin-top: 1px; transition: background 0.25s var(--ease-out); }
.sp-form-tips li:hover .sp-tip-icon { background: var(--teal-200); }
.sp-tip-icon svg { width: 13px; height: 13px; stroke: var(--teal-700); }
.spf-card {
  background: #fff; border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

@media (max-width: 1024px) { .sp-who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .sp-ways-grid { grid-template-columns: 1fr; }
  .sp-form-grid  { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) { .sp-who-grid { grid-template-columns: 1fr; } }

/* ── Single Album Page ───────────────────────────────────────── */
.album-hero {
  position: relative; height: 480px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.album-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.album-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.90) 0%, rgba(5,13,26,0.35) 55%, transparent 100%);
}
.album-hero-inner {
  position: relative; z-index: 1;
  padding-bottom: 48px;
}
.album-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.album-back-link:hover { color: #fff; }
.album-back-link svg { transition: transform 0.15s; }
.album-back-link:hover svg { transform: translateX(-3px); }
.album-hero-content {}
.album-hero-date {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #5eead4; margin-bottom: 12px;
}
.album-hero h1 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: #fff; margin: 0 0 10px; line-height: 1.1;
}
.album-hero-desc {
  color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.6; margin: 0 0 18px;
  max-width: 540px;
}
.album-hero-meta { display: flex; align-items: center; gap: 16px; }
.album-hero-count {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65);
}
.album-hero-count svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Photo grid */
.album-page-grid-section { padding: 56px 0 80px; background: #f8fafc; }
.album-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.album-photo-item {
  position: relative; aspect-ratio: 4/3;
  border-radius: 12px; overflow: hidden;
  cursor: pointer; background: #e2e8f0;
}
.album-photo-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.album-photo-item:hover img { transform: scale(1.07); }
.album-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(5,13,26,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.album-photo-item:hover .album-photo-overlay,
.album-photo-item:focus-visible .album-photo-overlay { opacity: 1; }
.album-photo-overlay svg { width: 28px; height: 28px; stroke: #fff; }

.album-no-photos { text-align: center; color: var(--ink-400); padding: 72px 0; }

/* Page-level lightbox */
.alb-lb {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,13,26,0.96);
  align-items: center; justify-content: center;
  padding: 24px;
}
.alb-lb.open { display: flex; }
.alb-lb-inner { position: relative; max-width: 90vw; text-align: center; }
.alb-lb-img {
  max-width: 90vw; max-height: 82vh;
  border-radius: 12px; object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}
.alb-lb-caption {
  margin-top: 14px; font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
}
.alb-lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; line-height: 1;
}
.alb-lb-close:hover { background: rgba(255,255,255,0.2); }
.alb-lb-prev, .alb-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; line-height: 1;
}
.alb-lb-prev { left: 20px; }
.alb-lb-next { right: 20px; }
.alb-lb-prev:hover, .alb-lb-next:hover { background: rgba(255,255,255,0.22); }

/* Back footer strip */
.album-page-footer { padding: 48px 0; text-align: center; background: #fff; border-top: 1px solid var(--line); }
.album-page-footer .btn { display: inline-flex; align-items: center; gap: 8px; }

/* Ensure album-card <a> has no underline */
a.album-card { text-decoration: none; display: block; }

@media (max-width: 900px) {
  .album-page-grid { grid-template-columns: repeat(3, 1fr); }
  .album-hero { height: 380px; }
}
@media (max-width: 600px) {
  .album-page-grid { grid-template-columns: repeat(2, 1fr); }
  .album-hero { height: 320px; }
  .alb-lb-prev { left: 8px; } .alb-lb-next { right: 8px; }
}

/* Section titles (two-part headings with an emphasized word): normal weight, not bold.
   Hero / page titles are <h1> and keep their bold weight. */
h2:has(> em) { font-weight: 400; }

/* Sections whose emphasized word was missing the brand-teal accent treatment
   (light backgrounds): match the rest of the site. */
.accred-section-head h2 em,
.mv-section-head h2 em,
.contact-section-head h2 em,
.contact-form-text h2 em,
.courses-listing-head h2 em { font-style: normal; color: #0e7a71; font-weight: 400; }

/* "Load More" — reveals extra album cards / photos in batches.
   .loadmore-on is added by JS, so without JS every item stays visible. */
.album-grid.loadmore-on .is-hidden-item,
.album-page-grid.loadmore-on .is-hidden-item { display: none; }

.load-more-wrap { text-align: center; margin-top: 44px; }
.load-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1.5px solid var(--teal-200);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.28s var(--ease-out), background 0.28s var(--ease-out),
              border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
              transform 0.28s var(--ease-out);
}
.load-more-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-800) 100%);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(14, 122, 113, 0.28);
  transform: translateY(-2px);
}
.load-more-btn:active { transform: translateY(0); box-shadow: 0 6px 14px rgba(14, 122, 113, 0.24); }
.load-more-btn:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 3px; }
.load-more-btn .lm-icon {
  width: 16px; height: 16px;
  transition: transform 0.28s var(--ease-out);
}
.load-more-btn:hover .lm-icon { transform: translateY(3px); }

/* ===== Campus Life — full-screen hero + stats, with image slider ===== */
.cl-hero-wrap {
  display: flex;
  flex-direction: column;
  /* Subtract the 76px sticky navbar so the hero AND the stats strip both fit
     within one screen (otherwise the navbar pushes the stats below the fold). */
  min-height: calc(100vh - 76px);    /* fallback */
  min-height: calc(100svh - 76px);
}
/* min-height:0 lets the hero shrink inside the flex column so the stats strip
   is always pulled into view (its own 480px min-height would otherwise overflow). */
.cl-hero-wrap .cl-page-hero { flex: 1 1 auto; min-height: 0; }
.cl-hero-wrap .cl-stats     { flex: 0 0 auto; }

/* Slider: stacked background layers that crossfade */
.cl-page-hero-slider { position: absolute; inset: 0; }
.cl-page-hero-slider .cl-page-hero-bg {
  opacity: 0;
  transition: opacity 1.1s var(--ease-out), transform 8s ease;
}
.cl-page-hero-slider .cl-page-hero-bg.is-active { opacity: 1; }

/* Slider dots */
.cl-hero-dots {
  position: absolute; z-index: 3;
  left: 0; right: 0; bottom: 22px;
  display: flex; justify-content: center; gap: 9px;
}
.cl-hero-dot {
  width: 9px; height: 9px; padding: 0;
  border: none; border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s var(--ease-out), width 0.25s var(--ease-out);
}
.cl-hero-dot:hover { background: rgba(255,255,255,0.75); }
.cl-hero-dot.is-active { background: #fff; width: 26px; }

/* ─── Justified body text on content pages (English + Arabic) ───
   Scoped to long-form readable paragraphs only — About welcome &
   accreditation text, course descriptions, and news article bodies.
   Headings, buttons, menus, forms, cards, and footer are untouched. */
.welcome-text p,
.accred-body-content p,
.sc-section p,
.news-single-content p {
  text-align: justify;
}
