/* =========================================================
   PVM INTERNATIONAL ACADEMY — Design System
   Palette: navy / brass-gold / parchment / forest / ink
   Type: Fraunces (display) + Inter (body) + IBM Plex Mono (data/eyebrow)
   ========================================================= */

:root {
  --navy: #151E81;
  --navy-deep: #0E1560;
  --gold: #A34300;
  --gold-soft: #D9762E;
  --parchment: #F6F3EC;
  --parchment-dim: #EDE8DB;
  --forest: #165C0E;
  --ink: #23262B;
  --ink-soft: #5B5F66;
  --white: #FFFFFF;
  --line: rgba(21, 30, 129, 0.14);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 14px; }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 17px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px;
}
.topbar a { color: var(--gold-soft); }
.topbar .tb-left { display: flex; gap: 22px; }
.topbar .tb-left span, .topbar .tb-left a { white-space: nowrap; }

header.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  height: 46px; width: auto; display: block;
  background: var(--white); padding: 5px 8px; border-radius: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { color: var(--white); font-family: var(--font-display); font-size: 18px; letter-spacing: .01em; }
.brand-text small { color: var(--gold-soft); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
footer .brand-mark { background: var(--white); }

nav.main-nav { display: flex; align-items: center; gap: 22px; }
nav.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
nav.main-nav a.active, nav.main-nav a:hover { color: var(--white); }
nav.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer;
}
@media (max-width: 1200px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-cta .btn span.long { display: none; }
}
nav.main-nav.open {
  display: flex; position: absolute; top: 78px; left: 0; right: 0;
  background: var(--navy); flex-direction: column; padding: 18px 24px 26px; gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero {
  position: relative;
  background: radial-gradient(ellipse at 20% -10%, rgba(199,154,60,0.18), transparent 55%), var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,21,96,0.75), rgba(14,21,96,0.55) 40%, rgba(14,21,96,0.9));
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  margin-top: 18px;
}
.hero h1 em { color: var(--gold-soft); font-style: normal; }
.hero p.lede { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 540px; margin-top: 20px; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.stat-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 70px; padding-top: 34px;
  max-width: 900px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat .num { font-family: var(--font-mono); color: var(--gold-soft); font-size: 30px; }
.stat .label { font-size: 12.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

.page-hero {
  background: var(--navy); color: var(--white);
  padding: 66px 0 46px; position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 5vw, 44px); margin-top: 14px; }
.crumb { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: .06em; }
.crumb a { color: var(--gold-soft); }

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(22,35,63,0.28); }
.card .thumb { aspect-ratio: 4/3; background: var(--parchment-dim); overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 22px; }
.card .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest); background: rgba(47,82,51,0.08); padding: 4px 10px; border-radius: 20px; display: inline-block;
}
.card h3 { font-size: 19px; margin-top: 12px; }
.card p { color: var(--ink-soft); font-size: 14.5px; margin-top: 8px; }

.divider-gold { height: 3px; width: 56px; background: var(--gold); margin: 18px 0; }

.band { background: var(--navy); color: var(--white); }
.band .section-head p { color: rgba(255,255,255,0.65); }
.band .section-head h2 { color: var(--white); }
.band .eyebrow { color: var(--gold-soft); }

.form-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: 0 30px 60px -40px rgba(22,35,63,0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; background: var(--parchment); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.form-status { font-family: var(--font-mono); font-size: 13px; margin-top: 14px; padding: 10px 14px; border-radius: var(--radius); display: none; }
.form-status.ok { display: block; background: rgba(47,82,51,0.1); color: var(--forest); }
.form-status.err { display: block; background: rgba(178,58,58,0.1); color: #B23A3A; }

footer.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 70px 0 26px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: var(--white); font-size: 13px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer a:hover { color: var(--gold-soft); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

.gallery-grid { overflow: hidden; width: 100%; }
.gallery-marquee-track { display: flex; gap: 14px; width: max-content; animation: gallery-marquee 35s linear infinite; }
.gallery-grid:hover .gallery-marquee-track { animation-play-state: paused; }
.gallery-grid .g-item {
  flex: 0 0 260px; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--parchment-dim);
}
.gallery-grid .g-item img, .gallery-grid .g-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item iframe { width: 100%; height: 100%; border: 0; }
@keyframes gallery-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-marquee-track { animation: none; }
}
@media (max-width: 560px) { .gallery-grid .g-item { flex: 0 0 200px; } }

.empty-state {
  text-align: center; padding: 60px 20px; color: var(--ink-soft); font-family: var(--font-mono); font-size: 14px;
  border: 1px dashed var(--line); border-radius: var(--radius);
}

.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- About Page: Sidebar Tabs ---------- */
.about-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  box-shadow: 0 30px 60px -40px rgba(21,30,129,0.25);
  padding: 36px; margin-top: -60px; position: relative; z-index: 5;
}
.about-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: flex-start; }
.about-sidebar { display: flex; flex-direction: column; border-right: 1px solid var(--line); padding-right: 20px; position: sticky; top: 100px; }
.about-sidebar button {
  text-align: left; background: none; border: none; border-bottom: 1px solid var(--line);
  padding: 14px 4px; font-family: var(--font-body); font-size: 14.5px; font-weight: 500;
  color: var(--ink); cursor: pointer;
}
.about-sidebar button:last-child { border-bottom: none; }
.about-sidebar button:hover { color: var(--gold); }
.about-sidebar button.active { color: var(--gold); font-weight: 700; }
.about-panel { display: none; }
.about-panel.active { display: block; }
@media (max-width: 860px) {
  .about-card { margin-top: 0; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 10px; position: static; gap: 6px; }
  .about-sidebar button { white-space: nowrap; border-bottom: none; }
}
/* ---------- Admin: per-field editor ---------- */
.field-block { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.field-block:last-child { border-bottom: none; }
.field-block label {
  display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.field-block input[type="text"], .field-block textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--font-body); font-size: 14.5px; background: var(--parchment); color: var(--ink);
}
.field-block textarea { min-height: 90px; }
.field-block input[type="file"] { font-size: 13px; margin-bottom: 4px; }
.field-row { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.field-status { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.field-status.ok { color: var(--forest); }
.field-status.err { color: #B23A3A; }
/* ---------- Extra-small phones (under 480px) ---------- */
@media (max-width: 480px) {
  .brand-mark { height: 36px; padding: 4px 6px; }
  .brand-text strong { font-size: 15px; white-space: normal; line-height: 1.1; }
  .brand-text small { display: none; }
  .nav-row { min-height: 64px; height: auto; padding: 10px 0; }
  .hero { padding: 90px 0 60px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .topbar .tb-left:last-child { display: none; }
  .about-card { padding: 20px; }
  .form-panel { padding: 22px; }
} 
/* ---------- Admission Enquiry Popup ---------- */
#admission-popup-overlay {
  position: fixed; inset: 0; background: rgba(14,21,96,0.75); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#admission-popup-overlay.show { display: flex; }
.admission-popup-card {
  background: var(--white); border-radius: 4px; max-width: 440px; width: 100%;
  padding: 34px; position: relative; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
}
.admission-popup-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink-soft);
}
.admission-popup-close:hover { color: var(--navy); }
/* ---------- Gallery: better mobile sizing ---------- */
@media (max-width: 480px) {
  .gallery-grid .g-item { flex: 0 0 160px; }
  .gallery-marquee-track { gap: 10px; }
}
/* ---------- Gallery: swipeable on mobile/tablet instead of auto-scroll ---------- */
@media (max-width: 768px) {
  .gallery-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .gallery-grid .g-item { scroll-snap-align: start; }
  .gallery-marquee-track { animation: none !important; }
}
/* ---------- Gallery: full grid mode for the dedicated Gallery page ---------- */
.gallery-grid.gallery-grid-full {
  overflow: visible;
}
.gallery-grid.gallery-grid-full .gallery-marquee-track {
  animation: none !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}
.gallery-grid.gallery-grid-full .g-item { flex: none; }
@media (max-width: 860px) {
  .gallery-grid.gallery-grid-full .gallery-marquee-track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid.gallery-grid-full .gallery-marquee-track { grid-template-columns: repeat(2, 1fr); }
}
/* ---------- Lightbox: fullscreen photo/video viewer ---------- */
#lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#lightbox-overlay.show { display: flex; }
#lightbox-content-wrap { max-width: 92vw; max-height: 82vh; display: flex; align-items: center; justify-content: center; }
#lightbox-content img, #lightbox-content video { max-width: 92vw; max-height: 82vh; object-fit: contain; display: block; }
#lightbox-content iframe { width: min(92vw, 900px); height: min(82vh, 506px); border: 0; }
#lightbox-caption { color: rgba(255,255,255,0.8); font-family: var(--font-mono); font-size: 13px; text-align: center; margin-top: 14px; }
#lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: var(--white); font-size: 30px; cursor: pointer; line-height: 1;
}
#lightbox-close:hover { color: var(--gold-soft); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12);
  border: none; color: var(--white); font-size: 28px; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
.gallery-grid .g-item { cursor: zoom-in; }
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 22px; }
}
/* ---------- Prevent flash of placeholder content before real data loads ---------- */
body { opacity: 0; transition: opacity 0.25s ease; }
body.loaded { opacity: 1; }
/* ---------- Topbar: better spacing so it doesn't get squeezed ---------- */
.topbar { padding: 6px 0; }
.topbar .container {
  height: auto; min-height: 36px; flex-wrap: wrap; row-gap: 6px; padding: 4px 24px;
}
.topbar-social a { width: 24px; height: 24px; font-size: 13px; flex-shrink: 0; }
@media (max-width: 900px) {
  .topbar .tb-left { flex-wrap: wrap; row-gap: 6px; }
  .topbar .container { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
  .topbar .tb-left:first-child span { display: block; width: 100%; text-align: center; }
}
/* ---------- Topbar social icons: bigger and more visible ---------- */
.topbar-social a {
  width: 30px !important;
  height: 30px !important;
  font-size: 16px !important;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--gold-soft) !important;
  color: var(--gold-soft);
  font-weight: 700;
}
.topbar-social a:hover { background: var(--gold-soft); color: var(--navy-deep); }
.topbar-social { gap: 10px !important; }
/* ---------- Topbar social icons: emoji, next to phone numbers ---------- */
.topbar-social { display: inline-flex; gap: 10px; margin-left: 14px; }
.topbar-social a { font-size: 16px; line-height: 1; }
.topbar-social a i { font-size: 14px; }
/* ---------- Floating WhatsApp button (always visible, bottom-right) ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35); transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float i { color: #fff; font-size: 28px; }
@media (max-width: 560px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 18px; right: 18px; }
  .whatsapp-float i { font-size: 24px; }
}
/* ---------- Floating Instagram button (stacked above WhatsApp) ---------- */
.instagram-float {
  position: fixed; bottom: 92px; right: 24px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35); transition: transform .2s ease;
}
.instagram-float:hover { transform: scale(1.08); }
.instagram-float i { color: #fff; font-size: 26px; }
@media (max-width: 560px) {
  .instagram-float { width: 48px; height: 48px; bottom: 74px; right: 18px; }
  .instagram-float i { font-size: 22px; }
}
/* ---------- Second floating WhatsApp button, next to the first ---------- */
.whatsapp-float-2 { right: 90px; }
@media (max-width: 560px) {
  .whatsapp-float-2 { right: 76px; }
}
/* ---------- Mandatory Public Disclosure tables ---------- */
.disclosure-table { width: 100%; border-collapse: collapse; margin: 20px 0 40px; font-size: 14.5px; }
.disclosure-table th, .disclosure-table td {
  border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top;
}
.disclosure-table th {
  background: var(--navy); color: var(--white); font-family: var(--font-mono);
  font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
}
.disclosure-table tr:nth-child(even) td { background: var(--parchment-dim); }
.disclosure-table td:first-child { width: 48px; text-align: center; color: var(--ink-soft); }
.disclosure-table a.doc-link {
  color: var(--gold); font-weight: 600; text-decoration: underline;
}
.disclosure-section-title { margin-top: 50px; }
.disclosure-section-title:first-child { margin-top: 0; }
@media (max-width: 700px) {
  .disclosure-table, .disclosure-table thead, .disclosure-table tbody, .disclosure-table th, .disclosure-table td, .disclosure-table tr { display: block; }
  .disclosure-table thead { display: none; }
  .disclosure-table tr { border: 1px solid var(--line); margin-bottom: 14px; }
  .disclosure-table td { border: none; border-bottom: 1px solid var(--line); }
  .disclosure-table td:first-child { display: none; }
}
/* ---------- Disabled document links (not uploaded yet) ---------- */
.doc-link-disabled {
  opacity: 0.45;
  cursor: not-allowed !important;
  pointer-events: none;
  text-decoration: none !important;
}