/* ══════════════════════════════════════════════════════════
   EGEX Division Pages — Full Design System
   Per-page accent via --accent + --accent-rgb on :root
   ══════════════════════════════════════════════════════════ */

body { background: #060606; overflow-x: hidden; }

/* ── Ticker ───────────────────────────────────────────────── */
.div-ticker {
  position: fixed; top: 0; left: 0; right: 0;
  height: 22px; z-index: 2000; overflow: hidden;
  display: flex; align-items: center;
  background: #020202;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
}
.div-ticker-track {
  display: flex;
  animation: ticker-scroll 50s linear infinite;
  white-space: nowrap; will-change: transform;
}
.div-ticker-track span {
  font-family: var(--font-body); font-size: 0.42rem;
  letter-spacing: 0.3em; color: rgba(var(--accent-rgb), 0.45);
  padding: 0 3rem;
}
.div-ticker-track span.sep {
  color: rgba(var(--accent-rgb), 0.12); padding: 0 0.5rem; letter-spacing: 0;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.has-ticker #main-nav { top: 22px; }

/* ── Classification bar ───────────────────────────────────── */
.div-classbar {
  position: fixed; top: 22px; left: 0; right: 0; height: 20px;
  z-index: 1500; display: flex; align-items: center;
  justify-content: space-between; padding: 0 2.5rem;
  background: rgba(var(--accent-rgb), 0.03);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.07);
  backdrop-filter: blur(4px);
}
.div-classbar-left, .div-classbar-right {
  font-family: var(--font-body); font-size: 0.38rem;
  letter-spacing: 0.25em; color: rgba(var(--accent-rgb), 0.35);
}
.div-classbar-center {
  font-family: var(--font-body); font-size: 0.38rem;
  letter-spacing: 0.4em; color: rgba(var(--accent-rgb), 0.2);
}
.has-ticker #main-nav { top: 42px; }

/* ── Hero ─────────────────────────────────────────────────── */
.div-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3.5rem 5.5rem; overflow: hidden; background: #040404;
}

/* Animated diagonal stripe grid */
.div-hero::before {
  content: ''; position: absolute; inset: -50%;
  background-image: repeating-linear-gradient(
    -20deg, transparent 0, transparent 38px,
    rgba(var(--accent-rgb), 0.022) 38px, rgba(var(--accent-rgb), 0.022) 39px
  );
  animation: stripe-drift 35s linear infinite;
  pointer-events: none; z-index: 0;
}
@keyframes stripe-drift { 0% { transform: translateY(0); } 100% { transform: translateY(90px); } }

.div-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none; z-index: 1; opacity: 0.5;
}
.div-hero-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.09) 2px, rgba(0,0,0,0.09) 4px);
  pointer-events: none; z-index: 2;
}
.div-hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 90% at 10% 50%, transparent 35%, rgba(0,0,0,0.95) 100%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(0,0,0,0.85) 0%, transparent 70%);
  pointer-events: none; z-index: 3;
}
.div-hero-sweep {
  position: absolute; top: 0; left: -100%; width: 25%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.022), transparent);
  animation: hero-sweep 14s ease-in-out infinite;
  pointer-events: none; z-index: 4;
}
@keyframes hero-sweep { 0% { left: -25%; } 55% { left: 110%; } 100% { left: 110%; } }

.div-hero-corner {
  position: absolute; width: 55px; height: 55px;
  pointer-events: none; z-index: 5;
}
.div-hero-corner-tl { top: 88px; left: 3.5rem; border-top: 1px solid rgba(var(--accent-rgb), 0.3); border-left: 1px solid rgba(var(--accent-rgb), 0.3); }
.div-hero-corner-br { bottom: 5.5rem; right: 3.5rem; border-bottom: 1px solid rgba(var(--accent-rgb), 0.3); border-right: 1px solid rgba(var(--accent-rgb), 0.3); }

.div-hero-glyph {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: clamp(200px, 30vw, 420px); opacity: 0.03;
  pointer-events: none; user-select: none; z-index: 4; filter: grayscale(1);
}

.div-hero-content { position: relative; z-index: 5; max-width: 1300px; width: 100%; margin: 0 auto; }

.div-division-id {
  font-family: var(--font-body); font-size: 0.5rem; letter-spacing: 0.38em;
  color: rgba(var(--accent-rgb), 0.45); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.div-division-id::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: rgba(var(--accent-rgb), 0.45);
}

.div-breadcrumb {
  font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.2em;
  color: rgba(var(--accent-rgb), 0.4); margin-bottom: 2rem;
}
.div-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.div-breadcrumb a:hover { color: var(--accent); }
.div-breadcrumb .sep { opacity: 0.3; margin: 0 0.6rem; }

.div-active-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.5rem;
  letter-spacing: 0.22em; color: rgba(var(--accent-rgb), 0.75);
  margin-bottom: 2rem;
}
.div-active-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(var(--accent-rgb), 0.5);
  animation: active-pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes active-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(var(--accent-rgb), 0.5); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: none; }
}

/* ─── GIANT TITLE ─────────────────────────────────────────── */
.div-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight: 200;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 0.88;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
/* Glitch */
.div-title::before, .div-title::after {
  content: attr(data-text); position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  letter-spacing: inherit; line-height: inherit;
  pointer-events: none; opacity: 0;
}
.div-title::before { color: rgba(var(--accent-rgb), 0.85); animation: glitch-before 12s ease-in-out infinite; }
.div-title::after  { color: rgba(255, 50, 50, 0.5);        animation: glitch-after  12s ease-in-out infinite; }
@keyframes glitch-before {
  0%, 88%, 100% { opacity: 0; transform: none; clip-path: none; }
  89%  { opacity: 1; clip-path: inset(12% 0 58% 0); transform: translate(-5px, 0); }
  91%  { opacity: 0; }
  93%  { opacity: 1; clip-path: inset(68% 0 8% 0);  transform: translate(4px, 0); }
  95%  { opacity: 0; }
}
@keyframes glitch-after {
  0%, 88%, 100% { opacity: 0; transform: none; clip-path: none; }
  90%  { opacity: 1; clip-path: inset(38% 0 32% 0); transform: translate(6px, 0); }
  92%  { opacity: 0; }
  94%  { opacity: 1; clip-path: inset(72% 0 4% 0);  transform: translate(-4px, 0); }
  96%  { opacity: 0; }
}
/* Entry */
.div-title {
  clip-path: inset(100% 0 0 0);
  animation: title-reveal 1s cubic-bezier(0.2, 0, 0, 1) 0.15s forwards;
}
@keyframes title-reveal { 0% { clip-path: inset(100% 0 0 0); } 100% { clip-path: inset(0 0 0 0); } }

.div-tagline {
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.28);
  margin-bottom: 3.5rem;
  opacity: 0; animation: fade-up 0.8s ease 0.65s forwards;
}
@keyframes fade-up { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

.div-hero-rule {
  width: 100%; height: 1px;
  background: rgba(var(--accent-rgb), 0.14); position: relative;
  opacity: 0; animation: fade-up 0.6s ease 0.9s forwards;
}
.div-hero-rule::after {
  content: ''; position: absolute; left: -100px; top: -1.5px;
  width: 100px; height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent));
  box-shadow: 0 0 24px var(--accent), 0 0 48px rgba(var(--accent-rgb), 0.4);
  animation: scan-line 7s ease-in-out 1.2s infinite;
}
@keyframes scan-line {
  0%   { left: -100px; opacity: 0; }
  4%   { opacity: 1; }
  92%  { left: calc(100% + 100px); opacity: 1; }
  100% { left: calc(100% + 100px); opacity: 0; }
}

/* ── Stats bar ─────────────────────────────────────────────── */
.div-stats {
  display: flex; background: #030303;
  border-top: 1px solid rgba(var(--accent-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.07);
  position: relative;
}
.div-stats::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.3) 50%, transparent);
  opacity: 0.6;
}
.div-stat {
  flex: 1; padding: 3rem 3.5rem 2.5rem;
  border-right: 1px solid rgba(var(--accent-rgb), 0.06);
  position: relative; overflow: hidden; cursor: default;
  transition: background 0.5s;
}
.div-stat::before {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  transition: width 1.4s cubic-bezier(0.2, 0, 0, 1);
}
.div-stat.in-view::before { width: 100%; }
.div-stat:last-child { border-right: none; }
.div-stat:hover { background: rgba(var(--accent-rgb), 0.03); }

/* MASSIVE stat numbers */
.div-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--accent);
  font-weight: 200;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.div-stat-label {
  font-family: var(--font-body); font-size: 0.5rem;
  letter-spacing: 0.32em; color: rgba(255,255,255,0.22);
  text-transform: uppercase;
}

/* ── Mission line (full-width accent) ─────────────────────── */
.div-mission-line {
  width: 100%; padding: 0; margin: 0;
  height: 1px; position: relative; overflow: visible;
  background: rgba(var(--accent-rgb), 0.07);
}
.div-mission-line::before {
  content: ''; position: absolute;
  left: 3.5rem; top: -8px; bottom: -8px;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}
.div-mission-line::after {
  content: 'ACTIVE // CLEARANCE: UNCLASSIFIED';
  position: absolute; left: calc(3.5rem + 18px); top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body); font-size: 0.38rem;
  letter-spacing: 0.35em; color: rgba(var(--accent-rgb), 0.35);
  white-space: nowrap;
}

/* ── Glyph divider ────────────────────────────────────────── */
.div-glyph-row {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  padding: 4rem 3.5rem; max-width: 1300px; margin: 0 auto;
}
.div-glyph-row::before, .div-glyph-row::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.12));
}
.div-glyph-row::after { background: linear-gradient(270deg, transparent, rgba(var(--accent-rgb), 0.12)); }
.div-glyph-row img { width: 18px; opacity: 0.06; pointer-events: none; user-select: none; }

/* ── Content ──────────────────────────────────────────────── */
.div-content {
  max-width: 1300px; margin: 0 auto;
  padding: 5rem 3.5rem 3rem;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem; align-items: start;
}

.div-section-label {
  font-family: var(--font-body); font-size: 0.52rem;
  letter-spacing: 0.38em; color: var(--accent);
  opacity: 0.65; margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.div-section-label::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(var(--accent-rgb), 0.15); max-width: 50px;
}

.div-text-block p {
  font-size: 0.88rem; color: rgba(255,255,255,0.48);
  line-height: 2.05; margin-bottom: 1.6rem;
}
.div-text-block p:first-of-type {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem; line-height: 1.95;
}
.div-text-block a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.3);
  transition: border-color 0.2s, color 0.2s; padding-bottom: 1px;
}
.div-text-block a:hover { border-color: var(--accent); color: #fff; }

.div-contact-line {
  margin-top: 2.5rem; font-family: var(--font-body);
  font-size: 0.62rem; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.22);
  display: flex; align-items: center; gap: 0.8rem;
}
.div-contact-line::before { content: '//'; color: var(--accent); opacity: 0.6; }

/* ── Terminal ─────────────────────────────────────────────── */
.div-terminal-wrap {
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: rgba(0, 0, 0, 0.45);
  position: relative;
  box-shadow:
    0 0 80px rgba(var(--accent-rgb), 0.06),
    0 0 200px rgba(var(--accent-rgb), 0.03),
    inset 0 0 80px rgba(0,0,0,0.4);
}
.div-terminal-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.3) 60%, transparent);
  opacity: 0.6;
}
.div-terminal-wrap::after {
  content: ''; position: absolute;
  inset: -1px; border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%) border-box;
  pointer-events: none;
}

.div-terminal-header {
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(var(--accent-rgb), 0.025);
}
.div-terminal-label {
  font-family: var(--font-body); font-size: 0.46rem;
  letter-spacing: 0.24em; color: rgba(var(--accent-rgb), 0.5);
  display: flex; align-items: center; gap: 0.6rem;
}
.div-terminal-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: 0.7;
  animation: active-pulse 2s ease-in-out infinite;
}
.div-terminal-dots { display: flex; gap: 5px; }
.div-terminal-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.15); background: transparent;
}
.div-terminal-dots span:first-child {
  background: rgba(var(--accent-rgb), 0.4);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.div-terminal-wrap .cred-terminal { grid-template-columns: 1fr; }
.div-terminal-wrap .cred-line {
  opacity: 1; transform: none;
  padding: 0.8rem 1.4rem;
}
.div-terminal-wrap .cred-line:hover {
  background: rgba(var(--accent-rgb), 0.06);
}
.div-terminal-wrap .cred-prefix { color: var(--accent); opacity: 0.5; }
.div-terminal-wrap .cred-status { color: var(--accent); }
.div-terminal-wrap .cred-status::before { background: var(--accent); }

/* ── CTA ──────────────────────────────────────────────────── */
.div-cta-strip {
  max-width: 1300px; margin: 0 auto;
  padding: 1.5rem 3.5rem 6rem;
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}

.div-cta-btn {
  font-family: var(--font-heading); font-size: 0.7rem;
  letter-spacing: 0.3em; color: var(--accent); text-decoration: none;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  padding: 1rem 2.6rem;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  transition: color 0.35s, border-color 0.35s;
}
.div-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.div-cta-btn span { position: relative; z-index: 1; }
.div-cta-btn:hover { color: #000; border-color: var(--accent); }
.div-cta-btn:hover::before { transform: translateX(0); }
.div-cta-btn.ghost {
  border-color: rgba(var(--accent-rgb), 0.18); color: rgba(255,255,255,0.35);
}
.div-cta-btn.ghost::before { background: rgba(var(--accent-rgb), 0.08); }
.div-cta-btn.ghost:hover { color: rgba(255,255,255,0.9); }

.div-back-link {
  font-family: var(--font-body); font-size: 0.58rem;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.2); text-decoration: none;
  margin-left: auto; transition: color 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.div-back-link:hover { color: var(--accent); }

/* ── Footer ───────────────────────────────────────────────── */
.div-footer {
  border-top: 1px solid rgba(var(--accent-rgb), 0.07);
  padding: 2rem 3.5rem;
}
.div-footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.div-footer-inner span, .div-footer-inner a {
  font-family: var(--font-body); font-size: 0.5rem;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.18); text-decoration: none;
}
.div-footer-inner a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .div-content { grid-template-columns: 1fr; gap: 3.5rem; padding: 4rem 2rem 2rem; }
  .div-stats { flex-wrap: wrap; }
  .div-stat { flex: 0 0 50%; padding: 2rem; }
  .div-hero, .div-cta-strip, .div-footer { padding-left: 2rem; padding-right: 2rem; }
  .div-hero-corner-tl { left: 2rem; }
  .div-hero-corner-br { right: 2rem; }
  .div-glyph-row { padding: 3rem 2rem; }
}
@media (max-width: 580px) {
  .div-stat { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(var(--accent-rgb), 0.06); }
  .div-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .div-hero-glyph { display: none; }
  .div-classbar-center { display: none; }
  .div-back-link { margin-left: 0; width: 100%; }
  /* Hide overflow text on mission line */
  .div-mission-line::after { display: none; }
  /* Tighten classbar padding */
  .div-classbar { padding: 0 1rem; }
  .div-classbar-left, .div-classbar-right { font-size: 0.32rem; }
  /* CTA stack on mobile */
  .div-cta-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .div-cta-btn { width: 100%; justify-content: center; }
}

/* ── Tablet breakpoint ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero title capped for tablets */
  .div-title { font-size: clamp(3rem, 12vw, 5rem); }

  /* Stats bar: 2-col on tablet */
  .div-stats { flex-wrap: wrap; }
  .div-stat { flex: 0 0 50%; padding: 2rem 1.5rem; }

  /* Terminal blocks single column */
  .div-terminal-wrap .cred-terminal { grid-template-columns: 1fr; }

  /* Ticker text overflow prevention */
  .div-ticker { overflow: hidden; }
  .div-ticker-track span { font-size: 0.38rem; padding: 0 2rem; }

  /* Hero padding */
  .div-hero { padding: 0 2rem 4rem; }
  .div-hero-corner-tl { left: 2rem; }
  .div-hero-corner-br { right: 2rem; }

  /* CTA full-width */
  .div-cta-strip { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1.5rem 2rem 4rem; }
  .div-cta-btn { width: 100%; justify-content: center; text-align: center; }
  .div-back-link { margin-left: 0; width: 100%; justify-content: center; }

  /* Footer wrap */
  .div-footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; }

  /* Content single column */
  .div-content { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem 2rem; }

  /* Body min font size */
  .div-text-block p { font-size: 0.88rem; min-font-size: 14px; }

  /* Glyph row tighter */
  .div-glyph-row { padding: 3rem 2rem; }

  /* Classbar tighter */
  .div-classbar { padding: 0 1.2rem; }
}

/* ── Phone breakpoint ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero title max 40px on phones */
  .div-title { font-size: clamp(2rem, 10vw, 2.5rem); }

  /* Stats bar: single column stack */
  .div-stats { flex-direction: column; }
  .div-stat {
    flex: 0 0 100%; border-right: none;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.06);
    padding: 1.5rem 1.2rem;
  }
  .div-stat:last-child { border-bottom: none; }

  /* Stat numbers smaller */
  .div-stat-num { font-size: clamp(2rem, 8vw, 3rem); }

  /* Hero glyph hidden */
  .div-hero-glyph { display: none; }

  /* Classbar center hidden, sides smaller */
  .div-classbar-center { display: none; }
  .div-classbar-left, .div-classbar-right { font-size: 0.3rem; letter-spacing: 0.15em; }
  .div-classbar { padding: 0 0.8rem; }

  /* Ticker smaller */
  .div-ticker-track span { font-size: 0.35rem; padding: 0 1.5rem; }

  /* Hero tighter padding */
  .div-hero { padding: 0 1.2rem 3.5rem; min-height: 85vh; }
  .div-hero-corner-tl { left: 1.2rem; top: 70px; }
  .div-hero-corner-br { right: 1.2rem; bottom: 3.5rem; }

  /* Mission line hide text */
  .div-mission-line::after { display: none; }

  /* Content padding */
  .div-content { padding: 2.5rem 1.2rem 2rem; gap: 2.5rem; }

  /* CTA padding */
  .div-cta-strip { padding: 1rem 1.2rem 4rem; }
  .div-cta-btn { padding: 0.8rem 1.5rem; font-size: 0.6rem; }

  /* Footer */
  .div-footer { padding: 1.5rem 1.2rem; }

  /* Tagline */
  .div-tagline { font-size: 0.6rem; margin-bottom: 2.5rem; }

  /* Division ID */
  .div-division-id { font-size: 0.42rem; }

  /* Breadcrumb */
  .div-breadcrumb { font-size: 0.48rem; margin-bottom: 1.5rem; }

  /* Section label */
  .div-section-label { font-size: 0.45rem; }

  /* Text block readability: ensure min 14px */
  .div-text-block p { font-size: max(0.88rem, 14px); line-height: 1.85; }
  .div-text-block p:first-of-type { font-size: max(0.93rem, 15px); }

  /* Glyph row */
  .div-glyph-row { padding: 2.5rem 1.2rem; }
}
