/*
Theme Name: SVA Policies Child
Template:   sva-policies
Version:    2.0
Description: Child theme for SVA Department Resources.
*/

/* ── Reset & tokens ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Skip to content link (hidden until focused) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
  background: var(--teal-dark);
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-to-content:focus { left: 50%; transform: translateX(-50%); }

/* Mobile nav toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--ink-2);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--surface); }

/* Suppress any plugin-injected external-link arrow indicators */
.main-content a[target="_blank"]::after,
.sidebar a[target="_blank"]::after,
.site-footer a[target="_blank"]::after { content: none !important; }

:root {
  --red:        #CC0000;
  --red-dark:   #9A0000;
  --red-light:  #FFF0F0;
  --teal:       #00869B;
  --teal-light: #E6F7FA;
  --ink:        #1A1A1A;
  --ink-2:      #444444;
  --ink-3:      #767676;
  --rule:       #E2E2E2;
  --surface:    #F6F6F4;
  --white:      #FFFFFF;
  --font-head:  'Inter Tight', sans-serif;
  --font-body:  'Inter', sans-serif;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --teal-dark:  #006070;
  --teal-grad:  linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  --red-grad:   linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  --transition: 0.18s cubic-bezier(0.4,0,0.2,1);
}

html { font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--red); }
*:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 2px; }
p { margin: 0; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.header-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-brand-text .brand-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.header-brand-text .brand-sub {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 400;
}
.header-spacer { flex: 1; }
.header-search {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 6px 14px;
  gap: 8px;
  width: 220px;
}
.header-search input {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--ink);
  width: 100%;
  font-family: var(--font-body);
}
.header-search input::placeholder { color: var(--ink-3); }
.header-search svg { flex-shrink: 0; color: var(--ink-3); }
.header-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-social a {
  color: var(--ink-3);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.header-social a:hover { background: var(--surface); color: var(--red); text-decoration: none; }
.header-social svg { width: 16px; height: 16px; }

/* ── Layout ──────────────────────────────────────── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Sidebar nav ─────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 88px;
}
.sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 6px;
}
.nav-list { list-style: none; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  font-weight: 400;
  transition: background 0.12s, color 0.12s;
}
.nav-list > li > a:hover {
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}
.nav-list > li.active > a { background: var(--red-light); color: var(--red); font-weight: 600; }
.nav-list .sub-menu {
  list-style: none;
  margin: 2px 0 4px 12px;
  border-left: 2px solid var(--rule);
  padding-left: 10px;
  display: none;
}
.nav-list li:hover .sub-menu,
.nav-list li.open .sub-menu { display: block; }
.nav-list .sub-menu li a {
  display: block;
  padding: 5px 6px;
  font-size: 12px;
  color: var(--ink-3);
  border-radius: var(--radius-sm);
  transition: color 0.12s;
}
.nav-list .sub-menu li a:hover { color: var(--red); text-decoration: none; }
.nav-list .has-sub > a::after {
  content: '›';
  float: right;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1;
}

/* ── Main content ────────────────────────────────── */
.main-content { min-width: 0; }

.page-title-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.page-title-bar::before {
  content: '';
  display: block;
  width: 4px;
  height: 32px;
  background: var(--teal-grad);
  border-radius: 2px;
  flex-shrink: 0;
}
.page-title-bar h1 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.page-breadcrumb {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 28px;
  margin-top: -20px;
}
.page-breadcrumb a { color: var(--ink-3); }
.page-breadcrumb a:hover { color: var(--red); }

/* ── Two-column content grid ─────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.content-col { display: flex; flex-direction: column; gap: 20px; }

/* ── Section panels ──────────────────────────────── */
.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.panel:hover { box-shadow: var(--shadow-md); }
.panel-head {
  background: var(--teal-grad);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.panel-head.no-toggle { cursor: default; }
.panel-head h2 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.panel-head .toggle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.panel-head .toggle-icon svg { width: 12px; height: 12px; color: white; }
.panel-head[aria-expanded="false"] .toggle-icon { transform: rotate(-90deg); }
.panel-body {
  padding: 0;
}
.panel-body.hidden { display: none; }

/* ── Announcements accordion ─────────────────────── */
.announce-list { list-style: none; }
.announce-item { border-bottom: 1px solid var(--rule); }
.announce-item:last-child { border-bottom: none; }
.announce-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.12s;
}
.announce-trigger:hover { background: var(--surface); }
.announce-trigger-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  line-height: 1.4;
  flex: 1;
}
.announce-trigger a {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  line-height: 1.4;
}
.announce-chevron {
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.2s;
  color: var(--ink-3);
}
.announce-trigger[aria-expanded="true"] .announce-chevron { transform: rotate(180deg); }
.announce-content {
  padding: 0 18px 16px 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  display: none;
}
.announce-content.open { display: block; }
.announce-content p { margin-bottom: 10px; }
.announce-content p:last-child { margin-bottom: 0; }
.announce-content strong { font-weight: 600; color: var(--ink); }
.announce-content a { color: var(--teal); }
.announce-content ol { margin: 10px 0 10px 18px; }
.announce-content ol li { margin-bottom: 6px; font-size: 13px; }

/* ── STAR panel ──────────────────────────────────── */
.star-body { padding: 18px; }
.star-body p { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin-bottom: 14px; }
.star-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.15s;
}
.star-link-btn:hover { background: var(--red-dark); color: white; text-decoration: none; }
.star-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.star-img-wrap a { display: block; }
.star-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.15s;
}
.star-img-wrap a:hover img { opacity: 0.9; }
.star-img-caption {
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  padding: 8px;
  background: var(--surface);
}

/* ── Campus Safety ───────────────────────────────── */
.safety-links { padding: 16px 18px 4px; }
.safety-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--teal);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.safety-links a:last-child { border-bottom: none; }
.safety-links a:hover { color: var(--red); text-decoration: none; }
.safety-links a svg { flex-shrink: 0; color: var(--ink-3); }

.safety-sub { border-top: 1px solid var(--rule); }
.safety-sub-trigger {
  width: 100%;
  background: var(--surface);
  border: none;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  padding: 11px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.12s;
}
.safety-sub-trigger:hover { background: var(--red-light); }
.safety-sub-trigger:last-child { border-bottom: none; }
.safety-sub-trigger span {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
}
.safety-sub-trigger svg { color: var(--ink-3); transition: transform 0.2s; }
.safety-sub-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.safety-sub-content {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  border-bottom: 1px solid var(--rule);
  display: none;
}
.safety-sub-content.open { display: block; }
.safety-sub-content p { margin-bottom: 8px; }
.safety-sub-content a { color: var(--teal); }
.safety-sub-content ol { margin: 10px 0 0 18px; }
.safety-sub-content ol li { margin-bottom: 6px; }

/* ── Quick Links ─────────────────────────────────── */
.quick-section { padding: 18px; }
.quick-section + .quick-section {
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.quick-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.quick-link-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.quick-link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.quick-link-list li a:hover {
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}
.quick-link-list li a svg { color: var(--ink-3); flex-shrink: 0; }
.quick-link-list li a:hover svg { color: var(--red); }

/* ── Staff Hero Banner ───────────────────────────── */
.staff-hero {
  background: var(--teal-grad);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.staff-hero-text h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.staff-hero-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.staff-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: background var(--transition);
}
.hero-pill:hover {
  background: rgba(255,255,255,0.28);
  color: white;
  text-decoration: none;
}
.hero-pill svg { flex-shrink: 0; }

/* ── HR sidebar card ─────────────────────────────── */
.hr-side { display: flex; flex-direction: column; gap: 14px; }
.hr-side-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.hr-side-card-head { background: var(--teal-grad); padding: 11px 16px; }
.hr-side-card-head h3 { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: #fff; margin: 0; }
.hr-side-card-body { padding: 14px 16px; }
.hr-side-card-body p { font-size: 13px; color: var(--ink-2); margin-bottom: 6px; line-height: 1.5; }
.hr-side-card-body a { color: var(--teal); text-decoration: none; font-weight: 500; }
.hr-side-card-body a:hover { color: var(--red); }
.hr-side-link { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--ink-2); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--rule); }
.hr-side-link:last-child { border-bottom: none; padding-bottom: 0; }
.hr-side-link:hover { color: var(--red); text-decoration: none; }
.hr-side-link svg { color: var(--teal); flex-shrink: 0; }

/* ── HR callout box ──────────────────────────────── */
.hr-callout { background: var(--teal-light); border-left: 3px solid var(--teal); border-radius: var(--radius-md); padding: 12px 16px; margin-bottom: 14px; font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.hr-callout strong { color: var(--teal-dark); }

/* ── Section-sub accordion ───────────────────────── */
.section-sub { border-top: 1px solid var(--rule); }
.section-sub-trigger {
  width: 100%;
  background: var(--surface);
  border: none;
  border-bottom: 1px solid var(--rule);
  border-left: 3px solid transparent;
  text-align: left;
  padding: 11px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition), border-left-color var(--transition);
}
.section-sub-trigger:hover { background: var(--teal-light); border-left-color: var(--teal); }
.section-sub-trigger:hover span { color: var(--teal-dark); }
.section-sub-trigger span { font-size: 13px; font-weight: 500; color: var(--ink); }
.section-sub-trigger[aria-expanded="true"] { background: var(--teal-grad); border-left-color: var(--teal); }
.section-sub-trigger[aria-expanded="true"] span { color: #fff; }
.section-sub-trigger svg { color: var(--ink-3); transition: transform 0.2s; }
.section-sub-trigger[aria-expanded="true"] svg { transform: rotate(180deg); color: rgba(255,255,255,0.75); }
.section-sub-content { padding: 14px 18px; font-size: 13px; color: var(--ink-2); line-height: 1.7; border-bottom: 1px solid var(--rule); display: none; }
.section-sub-content.open { display: block; }
.section-sub-content p { margin-bottom: 8px; }
.section-sub-content p:last-child { margin-bottom: 0; }
.section-sub-content a { color: var(--teal); }
.section-sub-content ul { margin: 8px 0 0 18px; }
.section-sub-content ul li { margin-bottom: 5px; }

/* ── Benefit category label ──────────────────────── */
.benefit-category-label { padding: 8px 18px 6px; background: linear-gradient(to right, var(--teal-light), transparent); border-left: 3px solid var(--teal); border-bottom: 1px solid var(--rule); border-top: 1px solid var(--rule); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dark); }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-logo { opacity: 0.5; width: 28px; height: 28px; }
.footer-inner p { font-size: 13px; line-height: 1.5; }
.footer-inner a { color: rgba(255,255,255,0.7); }
.footer-inner a:hover { color: white; text-decoration: none; }
.footer-copy { margin-left: auto; font-size: 12px; color: rgba(255,255,255,0.4); white-space: nowrap; }

/* ── Back to top ─────────────────────────────────── */
.back-to-top {
  display: flex;
  align-items: center;
  gap: 5px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--teal-grad);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { color: #fff; text-decoration: none; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  /* body prefix beats any same-specificity .page-wrap override in per-template $page_extra_css */
  body .page-wrap { grid-template-columns: 1fr; }
  .main-content { grid-row: 1; }
  .sidebar {
    position: fixed;
    top: 64px;
    left: 0;
    width: min(280px, 85vw);
    height: calc(100vh - 64px);
    overflow-y: auto;
    background: var(--white);
    border-right: 1px solid var(--rule);
    border-radius: 0;
    padding: 20px 16px;
    margin-bottom: 0;
    z-index: 99;
    transform: translateX(-110%);
    transition: transform var(--transition);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
  }
  body.sidebar-open::before {
    content: '';
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(0,0,0,0.25);
    z-index: 98;
  }
  .nav-toggle { display: flex; align-items: center; }
  .content-grid { grid-template-columns: 1fr; }
  .header-social { display: none; }
  .header-search { width: 160px; }
}
@media (max-width: 600px) {
  .header-search { display: none; }
  body .page-wrap { padding: 20px 16px 32px; }
}

  

/* ── Page wrapper ────────────────────────────────────────────── */
.fp-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px 80px; display: flex; flex-direction: column; gap: 40px; }

/* ── Hero ────────────────────────────────────────────────────── */
.fp-hero { background: var(--teal-grad); border-radius: var(--radius-lg); padding: 52px 48px 44px; box-shadow: var(--shadow-md); }
.fp-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.fp-hero h1 { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 14px; }
.fp-hero-sub { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 580px; margin-bottom: 24px; }
.fp-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); border-radius: 20px; padding: 7px 15px; font-size: 12px; font-weight: 500; color: white; text-decoration: none; transition: background var(--transition); }
.hero-pill:hover { background: rgba(255,255,255,0.26); color: white; text-decoration: none; }
.hero-pill svg { flex-shrink: 0; }

/* ── Section heading ─────────────────────────────────────────── */
.section-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.section-heading::before { content: ''; display: block; width: 4px; height: 22px; background: var(--teal-grad); border-radius: 2px; flex-shrink: 0; }
.section-heading h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.section-heading span { font-size: 13px; color: var(--ink-3); }

/* ── Audience cards ──────────────────────────────────────────── */
.audience-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--red);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.audience-card-icon { width: 40px; height: 40px; background: var(--red-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.audience-card-icon svg { color: var(--red); }
.audience-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.audience-card p { font-size: 13px; color: var(--ink-3); line-height: 1.5; }
.audience-card .card-cta { margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 4px; }

/* ── Department grid ─────────────────────────────────────────── */
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dept-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.dept-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dept-card-head { background: var(--teal-grad); }
.dept-card-head a { display: block; padding: 13px 16px; font-family: var(--font-head); font-size: 13px; font-weight: 600; color: white; letter-spacing: 0.01em; }
.dept-card-head a:hover { background: rgba(0,0,0,0.12); color: white; text-decoration: none; }
.dept-card-head.ext a::after { content: ' ↗'; font-size: 11px; opacity: 0.7; }
.dept-card-body { padding: 12px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.dept-card-desc { font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.dept-sub-links { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.dept-sub-links li a { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-2); padding: 5px 6px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); }
.dept-sub-links li a:hover { background: var(--teal-light); color: var(--teal-dark); text-decoration: none; }
.dept-sub-links li a svg { color: var(--ink-3); flex-shrink: 0; }
.dept-sub-links li a:hover svg { color: var(--teal); }

/* ── Quick links strip ───────────────────────────────────────── */
.quick-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.quick-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--rule); border-radius: 20px; padding: 7px 15px; font-size: 12px; font-weight: 500; color: var(--ink-2); text-decoration: none; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.quick-chip:hover { background: var(--red-light); color: var(--red); border-color: rgba(204,0,0,0.2); text-decoration: none; }
.quick-chip svg { color: var(--ink-3); flex-shrink: 0; }
.quick-chip:hover svg { color: var(--red); }

/* ── Announcements panel ─────────────────────────────────────── */
.announce-list { list-style: none; }
.announce-item { border-bottom: 1px solid var(--rule); }
.announce-item:last-child { border-bottom: none; }
.announce-trigger { width: 100%; background: none; border: none; text-align: left; padding: 14px 18px; display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-family: var(--font-body); transition: background 0.12s; }
.announce-trigger:hover { background: var(--surface); }
.announce-trigger-text { font-size: 13px; font-weight: 500; color: var(--red); line-height: 1.4; flex: 1; }
.announce-trigger a { font-size: 13px; font-weight: 500; color: var(--red); }
.announce-chevron { flex-shrink: 0; margin-top: 1px; transition: transform 0.2s; color: var(--ink-3); }
.announce-trigger[aria-expanded="true"] .announce-chevron { transform: rotate(180deg); }
.announce-content { padding: 0 18px 16px; font-size: 13px; color: var(--ink-2); line-height: 1.7; display: none; }
.announce-content.open { display: block; }
.announce-content p { margin-bottom: 10px; }
.announce-content p:last-child { margin-bottom: 0; }
.announce-content strong { font-weight: 600; color: var(--ink); }
.announce-content a { color: var(--teal); }

/* ── Academic Advisement page ────────────────────── */
.aa-hero {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://resources.sva.edu/wp-content/uploads/2021/02/placeholder04.jpg') center/cover no-repeat;
  opacity: 0.25;
  border-radius: var(--radius-lg);
}
.aa-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.aa-hero h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
  max-width: 560px;
}
.aa-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.6;
  position: relative;
}
.aa-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 6px;
  width: fit-content;
  position: relative;
  transition: background 0.15s;
}
.aa-hero-cta:hover { background: var(--red-dark); color: #fff; text-decoration: none; }

.aa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.aa-panel {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.aa-panel h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.aa-panel p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 10px;
}
.aa-panel p:last-child { margin-bottom: 0; }

.aa-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aa-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-2);
}
.aa-services li:last-child { border-bottom: none; }
.aa-services li svg { color: var(--teal); flex-shrink: 0; }

.aa-contact-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.aa-contact-card:last-child { margin-bottom: 0; }
.aa-contact-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.aa-contact-title {
  font-size: 11px;
  color: var(--white);
  background: var(--teal);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}
.aa-contact-details { display: flex; flex-direction: column; gap: 5px; }
.aa-contact-details span {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
}
.aa-contact-details span svg { flex-shrink: 0; margin-top: 1px; color: var(--ink-3); }
.aa-contact-details a { color: var(--teal); }
.aa-contact-details a:hover { color: var(--red); }

.aa-subpage-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  margin-top: 4px;
}
.aa-subpage-link:hover {
  border-color: var(--red);
  background: var(--red-light);
  text-decoration: none;
}
.aa-subpage-link-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aa-subpage-link-icon svg { color: var(--red); }
.aa-subpage-link-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.aa-subpage-link-text span {
  font-size: 12px;
  color: var(--ink-3);
}
.aa-subpage-link-arrow { margin-left: auto; color: var(--ink-3); }
.aa-subpage-link:hover .aa-subpage-link-arrow { color: var(--red); }

@media (max-width: 700px) {
  body .aa-grid { grid-template-columns: 1fr; }
  .aa-hero { padding: 28px 20px; }
  .aa-hero h2 { font-size: 22px; }
}

/* ── Advisor page styles ──────────────────────────── */
.advisors-wrap { display: flex; flex-direction: column; gap: 0; }

.dept-section {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.dept-section:first-child { padding-top: 0; }
.dept-section:last-child { border-bottom: none; }

.dept-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dept-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
}

.advisor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.advisor-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}

.advisor-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.advisor-role {
  font-size: 11px;
  color: var(--white);
  background: var(--teal);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.advisor-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.advisor-details span {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
}
.advisor-details span svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--ink-3);
}
.advisor-details a { color: var(--teal); }
.advisor-details a:hover { color: var(--red); }

@media (max-width: 600px) {
  body .advisor-cards { grid-template-columns: 1fr; }
}

/* ── Colleague UI 5 page ─────────────────────────── */
.ui5-intro {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
  font-style: italic;
}

.ui5-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.ui5-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}
.ui5-card:hover { border-color: var(--teal); }

.ui5-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ui5-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-pdf  { background: #FEE2E2; color: #991B1B; }
.icon-video { background: #EDE9FE; color: #5B21B6; }
.icon-link  { background: var(--teal-light); color: var(--teal); }

.ui5-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.ui5-card-desc {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}
.ui5-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  padding: 5px 10px;
  background: var(--teal-light);
  border-radius: 20px;
  width: fit-content;
  transition: background 0.15s, color 0.15s;
}
.ui5-card-link:hover {
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
}
.ui5-card-link svg { flex-shrink: 0; }

.ui5-policy {
  background: var(--surface);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}
.ui5-policy a { color: var(--teal); }
.ui5-policy a:hover { color: var(--red); }

.ui5-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: 20px;
}
.ui5-back-link:hover { color: var(--red); text-decoration: none; }

/* ── Colleague Computing page ────────────────────── */
.cc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.cc-prose { min-width: 0; }

.cc-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.cc-section:last-child { border-bottom: none; margin-bottom: 0; }

.cc-section h2 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.cc-section p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.cc-section p:last-child { margin-bottom: 0; }
.cc-section a { color: var(--teal); }
.cc-section a:hover { color: var(--red); }
.cc-section strong { font-weight: 600; color: var(--ink); }
.cc-section em { font-style: italic; }

/* Module pills */
.cc-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cc-module-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(0,134,155,0.2);
}

/* Quick access docs */
.cc-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cc-doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.cc-doc-link:hover {
  border-color: var(--red);
  background: var(--red-light);
  text-decoration: none;
}
.cc-doc-icon {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-3);
}
.cc-doc-link:hover .cc-doc-icon { color: var(--red); }
.cc-doc-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}
.cc-doc-link:hover .cc-doc-name { color: var(--red); }
.cc-doc-arrow { color: var(--ink-3); flex-shrink: 0; }
.cc-doc-link:hover .cc-doc-arrow { color: var(--red); }

/* Right sidebar */
.cc-sidebar { display: flex; flex-direction: column; gap: 16px; }

.cc-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cc-card-head {
  background: var(--teal);
  padding: 12px 16px;
}
.cc-card-head h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.cc-card-body { padding: 16px; }
.cc-card-body p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 8px;
}
.cc-card-body p:last-child { margin-bottom: 0; }
.cc-card-body a { color: var(--teal); }
.cc-card-body a:hover { color: var(--red); }

.cc-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.4;
}
.cc-contact-row:last-child { border-bottom: none; }
.cc-contact-row svg { flex-shrink: 0; margin-top: 1px; color: var(--ink-3); }
.cc-contact-row a { color: var(--teal); }
.cc-contact-row a:hover { color: var(--red); }

.cc-subpage-links { display: flex; flex-direction: column; gap: 6px; }
.cc-subpage-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 13px;
  color: var(--ink-2);
  transition: border-color 0.15s, background 0.15s;
}
.cc-subpage-link:hover {
  border-color: var(--red);
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}
.cc-subpage-link svg { color: var(--ink-3); flex-shrink: 0; }
.cc-subpage-link:hover svg { color: var(--red); }
.cc-subpage-link span { flex: 1; }
.cc-subpage-link .arrow { margin-left: auto; }

.cc-policy-note {
  background: var(--surface);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 4px;
}
.cc-policy-note a { color: var(--teal); }

@media (max-width: 800px) {
  body .cc-layout { grid-template-columns: 1fr; }
}

/* ── Ellucian Clients Website page ───────────────── */
.ellucian-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.ellucian-prose {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.ellucian-prose p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ellucian-prose p:last-child { margin-bottom: 0; }
.ellucian-prose a { color: var(--teal); }
.ellucian-prose a:hover { color: var(--red); }

.ellucian-cta { color: var(--teal-dark); text-decoration: underline; font-size: 14px; }
.ellucian-cta:hover { color: var(--red); text-decoration: underline; }

.ellucian-sidebar { display: flex; flex-direction: column; gap: 14px; }

.ellucian-info-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ellucian-info-card-head {
  background: var(--teal);
  padding: 11px 16px;
}
.ellucian-info-card-head h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.ellucian-info-card-body { padding: 14px 16px; }
.ellucian-info-card-body p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 8px;
}
.ellucian-info-card-body p:last-child { margin-bottom: 0; }

.ellucian-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.4;
}
.ellucian-benefit:last-child { border-bottom: none; }
.ellucian-benefit svg { flex-shrink: 0; margin-top: 1px; color: var(--teal); }

.ellucian-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: 20px;
}
.ellucian-back:hover { color: var(--red); text-decoration: none; }

@media (max-width: 800px) {
  body .ellucian-layout { grid-template-columns: 1fr; }
}

/* ── Financial Aid page ──────────────────────────── */
.fa-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  align-items: start;
}
.fa-main { min-width: 0; }
.fa-sidebar { display: flex; flex-direction: column; gap: 14px; }

/* Sections */
.fa-section {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.fa-section:last-child { margin-bottom: 0; }
.fa-section h2 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.fa-section p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.fa-section p:last-child { margin-bottom: 0; }
.fa-section a { color: var(--teal); }
.fa-section strong { color: var(--ink); }

.fa-callout {
  background: var(--red-light);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.fa-callout strong { color: var(--red-dark); }

/* Accordions */
.fa-accordion { border: 1px solid var(--rule); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
.fa-accordion:last-child { margin-bottom: 0; }
.fa-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s;
}
.fa-accordion-btn:hover { background: #EBEBEA; }
.fa-accordion-btn[aria-expanded="true"] { background: var(--ink); color: #fff; }
.fa-accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.fa-accordion-btn[aria-expanded="true"] .fa-accordion-chevron { transform: rotate(180deg); }
.fa-accordion-body {
  display: none;
  padding: 16px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  background: var(--white);
}
.fa-accordion-body.open { display: block; }
.fa-accordion-body p { margin-bottom: 10px; }
.fa-accordion-body p:last-child { margin-bottom: 0; }
.fa-accordion-body ul { margin: 8px 0 10px 16px; }
.fa-accordion-body li { margin-bottom: 4px; }
.fa-accordion-body a { color: var(--teal); }
.fa-accordion-body strong { color: var(--ink); font-weight: 600; }
.fa-accordion-body em { font-style: italic; }
.fa-accordion-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin-top: 8px; }

/* Sidebar cards */
.fa-sidebar-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fa-sidebar-card-head {
  background: var(--teal);
  padding: 11px 16px;
}
.fa-sidebar-card-head h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.fa-sidebar-card-body { padding: 14px 16px; }
.fa-sidebar-card-body p { font-size: 13px; color: var(--ink-2); margin-bottom: 6px; line-height: 1.5; }
.fa-sidebar-card-body p:last-child { margin-bottom: 0; }
.fa-sidebar-card-body a { color: var(--teal); text-decoration: none; font-weight: 500; }
.fa-sidebar-card-body a:hover { color: var(--red); }

.fa-ql-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.fa-ql-link:last-child { border-bottom: none; padding-bottom: 0; }
.fa-ql-link:hover { color: var(--red); text-decoration: none; }
.fa-ql-link svg { color: var(--teal); flex-shrink: 0; }

.fa-subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.fa-subpage-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.fa-subpage-link:hover { border-color: var(--teal); background: var(--teal-light); color: var(--teal); text-decoration: none; }
.fa-subpage-link svg { color: var(--teal); flex-shrink: 0; }

@media (max-width: 900px) {
  body .fa-layout { grid-template-columns: 1fr; }
  body .fa-subpage-grid { grid-template-columns: 1fr; }
}

/* ── FA About / Staff Directory ─────────────────── */
.fa-about-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: 20px;
}
.fa-about-back:hover { color: var(--red); text-decoration: none; }

.fa-dir-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 12px;
}

.fa-dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.fa-dir-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.fa-dir-card-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.fa-dir-card-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 10px;
  padding: 2px 9px;
  margin-bottom: 10px;
}
.fa-dir-card-role.role-advisor {
  background: var(--red-light);
  color: var(--red-dark);
}
.fa-dir-card-range {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: var(--surface);
  color: var(--ink-3);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1px 7px;
  margin-bottom: 10px;
  margin-left: 5px;
}
.fa-dir-contact { display: flex; flex-direction: column; gap: 5px; }
.fa-dir-contact-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-3);
}
.fa-dir-contact-row svg { flex-shrink: 0; color: var(--ink-3); }
.fa-dir-contact-row a { color: var(--teal); text-decoration: none; }
.fa-dir-contact-row a:hover { color: var(--red); }

@media (max-width: 600px) {
  body .fa-dir-grid { grid-template-columns: 1fr; }
}

/* ── FA Code of Conduct ──────────────────────────── */
.fa-coc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: 20px;
}
.fa-coc-back:hover { color: var(--red); text-decoration: none; }

.fa-coc-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
}

.fa-coc-main {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.fa-coc-main p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.fa-coc-main p:last-child { margin-bottom: 0; }
.fa-coc-main a { color: var(--teal); }
.fa-coc-main h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.fa-coc-principles {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fa-coc-principles li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.fa-coc-principles li:first-child { padding-top: 0; }
.fa-coc-principles li:last-child { border-bottom: none; }
.fa-coc-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.fa-coc-sidebar { display: flex; flex-direction: column; gap: 14px; }
.fa-coc-sidebar-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fa-coc-sidebar-card-head {
  background: var(--teal);
  padding: 11px 16px;
}
.fa-coc-sidebar-card-head h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.fa-coc-sidebar-card-body { padding: 14px 16px; }
.fa-coc-sidebar-card-body p { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin-bottom: 8px; }
.fa-coc-sidebar-card-body p:last-child { margin-bottom: 0; }
.fa-coc-sidebar-card-body a { color: var(--teal); text-decoration: none; font-weight: 500; }
.fa-coc-sidebar-card-body a:hover { color: var(--red); }

@media (max-width: 800px) {
  body .fa-coc-layout { grid-template-columns: 1fr; }
}

/* ── FA FAQ ──────────────────────────────────────── */
.fa-faq-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-3); text-decoration: none; margin-bottom: 20px;
}
.fa-faq-back:hover { color: var(--red); text-decoration: none; }

.fa-faq-intro {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 24px;
  font-size: 13px; color: var(--ink-2); line-height: 1.7;
}
.fa-faq-intro a { color: var(--teal); }

/* ── FA Forms page ───────────────────────────────── */
.fa-forms-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-3); text-decoration: none; margin-bottom: 20px;
}
.fa-forms-back:hover { color: var(--red); text-decoration: none; }

.fa-forms-intro {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 24px;
  font-size: 13px; color: var(--ink-2); line-height: 1.7;
}

.fa-forms-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px;
}

.fa-forms-grid {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px;
}

.fa-forms-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 14px 18px;
  text-decoration: none; transition: border-color 0.15s, background 0.15s;
}
.fa-forms-card:hover { border-color: var(--teal); background: var(--teal-light); text-decoration: none; }

.fa-forms-card-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: var(--radius-md);
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.fa-forms-card:hover .fa-forms-card-icon { background: var(--teal); color: #fff; }
.fa-forms-card-icon.icon-ext { background: var(--teal-light); color: var(--teal); }
.fa-forms-card:hover .fa-forms-card-icon.icon-ext { background: var(--teal); color: #fff; }

.fa-forms-card-body { flex: 1; }
.fa-forms-card-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--ink); margin: 0 0 3px;
}
.fa-forms-card:hover .fa-forms-card-title { color: var(--teal); }
.fa-forms-card-desc { font-size: 12px; color: var(--ink-3); margin: 0; line-height: 1.5; }

.fa-forms-card-arrow { color: var(--ink-3); flex-shrink: 0; margin-top: 6px; }
.fa-forms-card:hover .fa-forms-card-arrow { color: var(--teal); }

.fa-forms-note {
  font-size: 11px; color: var(--ink-3); font-style: italic;
  margin: -4px 0 20px 52px;
}

/* ── FA Links page ───────────────────────────────── */
.fa-links-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-3); text-decoration: none; margin-bottom: 20px;
}
.fa-links-back:hover { color: var(--red); text-decoration: none; }

.fa-links-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.fa-links-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fa-links-card-head {
  background: var(--teal);
  padding: 11px 18px;
}
.fa-links-card-head h2 {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; color: #fff; margin: 0;
}
.fa-links-card-body { padding: 6px 0; }

.fa-links-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: background 0.12s;
}
.fa-links-item:last-child { border-bottom: none; }
.fa-links-item:hover { background: var(--teal-light); text-decoration: none; }
.fa-links-item svg { flex-shrink: 0; color: var(--teal); }
.fa-links-item:hover svg { color: var(--teal); }
.fa-links-item span { font-size: 13px; color: var(--ink-2); }
.fa-links-item:hover span { color: var(--teal); }

.fa-links-note-card {
  background: var(--red-light);
  border: 1px solid #F5C6C6;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  font-size: 13px; color: var(--ink-2); line-height: 1.6;
  margin-bottom: 20px;
}
.fa-links-note-card a { color: var(--teal); }
.fa-links-note-card strong { color: var(--ink); }

@media (max-width: 760px) {
  body .fa-links-layout { grid-template-columns: 1fr; }
}

/* ── FA Managing Your Debt ───────────────────────── */
.fa-debt-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-3); text-decoration: none; margin-bottom: 20px;
}
.fa-debt-back:hover { color: var(--red); text-decoration: none; }

.fa-debt-intro {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 20px;
}
.fa-debt-intro p { font-size: 13px; color: var(--ink-2); line-height: 1.75; margin-bottom: 10px; }
.fa-debt-intro p:last-child { margin-bottom: 0; }
.fa-debt-intro a { color: var(--teal); }

.fa-debt-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: 20px; text-decoration: none; margin-top: 12px;
  transition: background 0.15s;
}
.fa-debt-cta:hover { background: var(--red-dark); color: #fff; text-decoration: none; }

.fa-debt-section-head {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--white); background: var(--ink); border-radius: var(--radius-md);
  padding: 10px 18px; margin: 24px 0 10px;
}

/* ── HR content sections ─────────────────────────── */
.hr-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
}
.hr-section:hover { box-shadow: var(--shadow-md); }
.hr-section:last-child { margin-bottom: 0; }
.hr-section h2 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.hr-section p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.hr-section p:last-child { margin-bottom: 0; }
.hr-section a { color: var(--teal); }
.hr-section strong { color: var(--ink); }
.hr-section ul {
  margin: 8px 0 12px 20px;
}
.hr-section ul li {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 4px;
}

/* ── HR two-column layout ────────────────────────── */
.hr-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  align-items: start;
}
.hr-main { min-width: 0; }

/* ── Panel ───────────────────────────────────────── */
.panel-intro {
  padding: 14px 18px 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
  border-bottom: 1px solid var(--rule);
}
.panel-intro p { margin-bottom: 8px; }
.panel-intro p:last-child { margin-bottom: 0; }

/* ── Benefits FAQ accordion ──────────────────────── */
.section-sub { border-top: 1px solid var(--rule); }
.section-sub-trigger {
  width: 100%;
  background: var(--surface);
  border: none;
  border-bottom: 1px solid var(--rule);
  border-left: 3px solid transparent;
  text-align: left;
  padding: 11px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition), border-left-color var(--transition);
}
.section-sub-trigger:hover {
  background: var(--red-light);
  border-left-color: var(--teal);
}
.section-sub-trigger span { font-size: 13px; font-weight: 500; color: var(--red); }
.section-sub-trigger svg { color: var(--ink-3); transition: transform 0.2s; }
.section-sub-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.section-sub-content {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  border-bottom: 1px solid var(--rule);
  display: none;
}
.section-sub-content.open { display: block; }
.section-sub-content p { margin-bottom: 8px; }
.section-sub-content p:last-child { margin-bottom: 0; }
.section-sub-content a { color: var(--teal); }
.section-sub-content ul { margin: 8px 0 0 18px; }
.section-sub-content ul li { margin-bottom: 5px; }

/* ── Benefits layout (main + sidebar) ───────────── */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  align-items: start;
}
.benefits-main { min-width: 0; }

/* ── Holiday table ───────────────────────────────── */
.holiday-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}
.holiday-table th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-bottom: 2px solid var(--rule);
}
.holiday-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
}
.holiday-table tr:last-child td { border-bottom: none; }
.holiday-table tr:hover td { background: var(--surface); }
.holiday-table td:first-child { font-weight: 500; color: var(--ink); }

/* ── Contact grid ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
}
.contact-card {
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  background: var(--teal-light);
  box-shadow: var(--shadow-md);
}
.contact-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-title {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 8px;
  line-height: 1.3;
}
.contact-links { display: flex; flex-direction: column; gap: 3px; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--teal);
}
.contact-links a:hover { color: var(--red); text-decoration: none; }
.contact-links svg { flex-shrink: 0; color: var(--ink-3); }

/* ── Contact summary bar ─────────────────────────── */
.contact-summary-bar {
  padding: 11px 18px;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-3);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.contact-summary-bar svg { color: var(--teal); flex-shrink: 0; }
.contact-summary-bar a { color: var(--ink-3); }
.contact-summary-bar a:hover { color: var(--red); }

/* ── Form list ───────────────────────────────────── */
.form-list { list-style: none; padding: 0; }
.form-list li { border-bottom: 1px solid var(--rule); }
.form-list li:last-child { border-bottom: none; }
.form-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color var(--transition);
}
.form-list a:hover { color: var(--red); text-decoration: none; }
.form-list a svg { color: var(--teal); flex-shrink: 0; }
.form-list a:hover svg { color: var(--red); }
.form-list .form-desc {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 1px;
}

/* ── Form category label ─────────────────────────── */
.form-category-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 20px 0 8px;
  border-left: 3px solid var(--teal);
  padding-left: 8px;
}
.form-category-label:first-child { margin-top: 0; }

/* ── Video card grid ─────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.video-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.video-card-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.video-card h3 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.video-card p { font-size: 12px; color: var(--ink-3); line-height: 1.4; margin: 0; }
.video-card a { text-decoration: none; color: inherit; }
.video-card a:hover h3 { color: var(--teal); }

/* ── Booklet list ────────────────────────────────── */
.booklet-list { list-style: none; padding: 0; margin-top: 12px; }
.booklet-list li { border-bottom: 1px solid var(--rule); }
.booklet-list li:last-child { border-bottom: none; }
.booklet-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color var(--transition);
}
.booklet-list a:hover { color: var(--red); }
.booklet-list a svg { color: var(--teal); flex-shrink: 0; }

/* ── Generic link list (used in Benefits, Payroll, etc.) ── */
.link-list-body { padding: 8px 0; }
.link-list-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  transition: background 0.12s, color 0.12s;
}
.link-list-body a:last-child { border-bottom: none; }
.link-list-body a:hover {
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}
.link-list-body a svg { color: var(--ink-3); flex-shrink: 0; }
.link-list-body a:hover svg { color: var(--red); }
.link-list-body a .link-label { flex: 1; line-height: 1.35; }
.link-list-body a .link-sub {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 1px;
}

/* ── Contact cards ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
}
.contact-card {
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  background: var(--teal-light);
  box-shadow: var(--shadow-md);
}
.contact-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-title {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 8px;
  line-height: 1.3;
}
.contact-links { display: flex; flex-direction: column; gap: 3px; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--teal);
}
.contact-links a:hover { color: var(--red); text-decoration: none; }
.contact-links svg { flex-shrink: 0; color: var(--ink-3); }

/* ── Hero Welcome Banner ─────────────────────────── */
.hero-banner {
  background: var(--teal-grad);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.hero-inner {
  padding: 28px 28px 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.hero-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.hero-text h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hero-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
.hero-text p + p { margin-top: 6px; }
.hero-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hero-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 5px 13px;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.hero-contact-links a:hover {
  background: rgba(255,255,255,0.32);
  border-color: rgba(255,255,255,0.55);
  text-decoration: none;
  color: white;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 28px 18px;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-chips a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 13px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.hero-chips a:hover {
  background: rgba(255,255,255,0.95);
  color: var(--teal-dark);
  border-color: rgba(255,255,255,0.95);
  text-decoration: none;
}

/* ── Quick Links sidebar panel ───────────────────── */
.quick-section { padding: 18px; }
.quick-section + .quick-section {
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.quick-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.quick-link-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.quick-link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.quick-link-list li a:hover {
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}
.quick-link-list li a svg { color: var(--ink-3); flex-shrink: 0; }
.quick-link-list li a:hover svg { color: var(--red); }

/* ── Quick Links chip grid ───────────────────────── */
.quick-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 18px; }
.quick-chip-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--ink-2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.quick-chip-grid a svg { color: var(--ink-3); flex-shrink: 0; }
.quick-chip-grid a:hover {
  background: var(--red-light);
  color: var(--red);
  border-color: rgba(204,0,0,0.25);
  text-decoration: none;
}
.quick-chip-grid a:hover svg { color: var(--red); }

/* ── Login Request Forms page ────────────────────── */
.lrf-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lrf-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.lrf-nav-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
  text-decoration: none;
}

.lrf-form-section {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  scroll-margin-top: 80px;
}
.lrf-form-section:last-child { margin-bottom: 0; }

.lrf-form-head {
  background: var(--teal);
  padding: 16px 24px;
}
.lrf-form-head h2 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.lrf-form-head p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.lrf-form-body { padding: 24px; }

.lrf-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.lrf-field-grid.single { grid-template-columns: 1fr; }

.lrf-field { display: flex; flex-direction: column; gap: 5px; }
.lrf-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.lrf-field .req { color: var(--red); margin-left: 2px; }

.lrf-field input[type="text"],
.lrf-field input[type="email"],
.lrf-field input[type="tel"],
.lrf-field input[type="date"] {
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  width: 100%;
  transition: border-color 0.15s;
}
.lrf-field input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,134,155,0.12);
}

.lrf-radio-group,
.lrf-check-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.lrf-radio-option,
.lrf-check-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.lrf-radio-option input,
.lrf-check-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--teal);
}

.lrf-divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 20px 0;
}

.lrf-messages { margin-bottom: 14px; }
.formSuccess {
  display: none;
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 12px;
}
.formFail, .formInvalid {
  display: none;
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 12px;
}
.idError {
  display: none;
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 12px;
}

.lrf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s;
}
.lrf-submit:hover { background: var(--red-dark); }

.lrf-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  margin-bottom: 20px;
}
.lrf-back:hover { color: var(--red); text-decoration: none; }

@media (max-width: 600px) {
  body .lrf-field-grid { grid-template-columns: 1fr; }
  .lrf-form-body { padding: 16px; }
}

/* ── Procurement video sections ─────────────────── */
.proc-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.proc-prose {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.proc-prose p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.proc-prose p:last-child { margin-bottom: 0; }
.proc-prose a { color: var(--teal); }
.proc-prose strong { font-weight: 600; color: var(--ink); }

.proc-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.proc-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}

.proc-video-group {
  margin-bottom: 24px;
}
.proc-video-group-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.proc-video-list { display: flex; flex-direction: column; gap: 6px; }
.proc-video-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.proc-video-link:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  text-decoration: none;
}
.proc-video-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: #EDE9FE;
  color: #5B21B6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proc-video-link:hover .proc-video-icon { background: var(--teal); color: #fff; }
.proc-video-name {
  font-size: 13px;
  color: var(--ink-2);
  flex: 1;
  font-weight: 500;
}
.proc-video-link:hover .proc-video-name { color: var(--teal); }
.proc-video-arrow { color: var(--ink-3); flex-shrink: 0; }
.proc-video-link:hover .proc-video-arrow { color: var(--teal); }

@media (max-width: 800px) {
  body .proc-layout { grid-template-columns: 1fr; }
}

/* ── Hero contact banner ─────────────────────────── */
.hero-banner {
  background: var(--teal-grad);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-md);
}
.hero-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.hero-text { flex: 1; }
.hero-text h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.hero-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 4px;
}
.hero-text p:last-child { margin-bottom: 0; }
.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hero-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: background var(--transition);
}
.hero-contacts a:hover { background: rgba(255,255,255,0.3); text-decoration: none; color: white; }
.hero-contacts a svg { flex-shrink: 0; }

/* ── Link list (resources & forms) ──────────────── */
.link-list-body { padding: 6px 0; }
.link-list-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.link-list-body a:last-child { border-bottom: none; }
.link-list-body a:hover { background: var(--surface); color: var(--red); text-decoration: none; }
.link-list-body a:hover svg { color: var(--red); }
.link-list-body a svg { color: var(--teal); flex-shrink: 0; }
.link-label { display: flex; flex-direction: column; }
.link-sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; font-weight: 400; }

/* ── Category label ──────────────────────────────── */
.list-category-label {
  padding: 8px 18px 6px;
  background: linear-gradient(to right, var(--teal-light), transparent);
  border-left: 3px solid var(--teal);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

/* ── Registration books archive ──────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.books-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.books-grid a:nth-child(odd) { border-right: 1px solid var(--rule); }
.books-grid a:hover { background: var(--surface); color: var(--red); text-decoration: none; }
.books-grid a:hover svg { color: var(--red); }
.books-grid a svg { color: var(--teal); flex-shrink: 0; }
.books-current {
  padding: 14px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--rule);
}
.books-current-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
  transition: background var(--transition);
}
.books-current-item:hover { background: #d0eff4; text-decoration: none; color: var(--teal-dark); }
.books-current-item svg { color: var(--teal); flex-shrink: 0; }
.books-archive-label {
  padding: 10px 18px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
}

/* ── Info card ───────────────────────────────────── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card-head {
  background: var(--teal-grad);
  padding: 11px 16px;
}
.info-card-head h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.info-card-body { padding: 14px 16px; }
.info-card-body p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 6px;
}
.info-card-body p:last-child { margin-bottom: 0; }
.info-card-body a { color: var(--teal); font-weight: 500; }
.info-card-body a:hover { color: var(--red); }
.info-card-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 8px;
  line-height: 1.45;
}
.info-card-row:last-child { margin-bottom: 0; }
.info-card-row svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.info-card-row a { color: var(--teal); font-weight: 500; }
.info-card-row a:hover { color: var(--red); }

/* ── Print styles ────────────────────────────────── */
@media print {
  .sidebar, .nav-toggle, .header-social, .header-search,
  .site-footer, .page-breadcrumb, .back-to-top { display: none !important; }
  .site-header { box-shadow: none; border-bottom: 1px solid #ccc; }
  body .page-wrap { grid-template-columns: 1fr; padding: 16px 0; }
  .panel, .fa-section, .fa-links-card, .lrf-form-section,
  .ellucian-info-card, .cc-card, .ui5-card { box-shadow: none; border: 1px solid #ccc; }
  .panel-head, .fa-sidebar-card-head, .fa-links-card-head, .lrf-form-head,
  .ellucian-info-card-head, .cc-card-head { background: #006070 !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10px; color: #666; word-break: break-all; }
  .fa-forms-card[href]::after, .ui5-card-link[href]::after,
  .fa-links-item[href]::after, .nav-list a[href]::after { content: none; }
  .fp-hero, .aa-hero { break-inside: avoid; }
}
.info-card-divider { border: none; border-top: 1px solid var(--rule); margin: 10px 0; }
