/* ============================================================
   THE VOICE OF EDUCATION — SHARED STYLESHEET
   voe.css · All pages import this file
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:opsz,ital,wght@8..60,0,300;8..60,0,400;8..60,0,600;8..60,1,300;8..60,1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --white:   #ffffff;
  --off:     #f8f8f6;
  --paper:   #f3f2ee;
  --border:  #e8e8e4;
  --border2: #d0d0c8;
  --ink:     #111110;
  --ink2:    #2a2a28;
  --mid:     #6b6b66;
  --light:   #9a9a94;
  --accent:  #1a3a5c;
  --accent2: #2d5a3d;
  --red:     #b83232;
  --gold:    #8a6914;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --pad: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white); color: var(--ink);
  font-family: var(--font-sans); font-size: 15px;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* TYPOGRAPHY */
.t-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid);
}
.t-label-accent { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-block; font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 22px; transition: all 0.18s;
  white-space: nowrap; border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: var(--white); color: var(--accent); border-color: var(--white); }
.btn-white:hover { background: var(--off); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.btn-outline-light:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

/* TAGS */
.tag {
  display: inline-block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 3px 10px; border: 1px solid var(--border2); color: var(--mid);
}
.tag-accent { border-color: var(--accent); color: var(--accent); }
.tag-white { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.6); }

/* AVATAR */
.avatar {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; flex-shrink: 0;
}
.avatar-sm  { width: 36px; height: 36px; font-size: 13px; }
.avatar-md  { width: 48px; height: 48px; font-size: 18px; }
.avatar-lg  { width: 64px; height: 64px; font-size: 24px; }
.avatar-xl  { width: 88px; height: 88px; font-size: 32px; }

/* SECTION HEADER */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 2px solid var(--ink); margin-bottom: 32px;
}
.section-head h2 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
}
.section-head a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); transition: color 0.15s;
}
.section-head a:hover { color: var(--ink); }

/* DIVIDERS */
hr { border: none; }
.rule { border-top: 1px solid var(--border); }
.rule-dark { border-top: 2px solid var(--ink); }

/* TICKER */
.ticker-bar { background: var(--ink); padding: 9px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; }
.ticker-label {
  background: var(--red); color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 14px; white-space: nowrap; flex-shrink: 0; margin-right: 20px;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; gap: 48px;
  animation: ticker 32s linear infinite; white-space: nowrap;
}
.ticker-track span { color: #bbb; font-size: 11px; }
.ticker-track span::before { content: '· '; color: #444; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* SITE HEADER */
.site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.site-header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 24px;
}
.site-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  color: var(--ink); white-space: nowrap; letter-spacing: -0.01em;
}
.site-logo em { font-style: italic; color: var(--accent); }
.site-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.site-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--ink2); padding: 8px 12px; transition: color 0.15s; white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.site-nav a.active { font-weight: 600; }
.site-header-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* SITE FOOTER */
.site-footer { background: var(--ink); color: var(--white); padding: 52px 0 24px; border-top: 3px solid var(--accent); }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px;
}
.footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-brand-name em { font-style: italic; color: rgba(255,255,255,0.35); }
.footer-desc { font-size: 12px; color: #777; line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #888; transition: all 0.15s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #555; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a { font-size: 13px; color: #888; transition: color 0.15s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 11px; color: #444;
}
.footer-bottom a { color: #555; transition: color 0.15s; }
.footer-bottom a:hover { color: #aaa; }
.footer-bottom-links { display: flex; gap: 20px; }

/* NEWSLETTER BAR */
.newsletter-bar { padding: 52px 0; border-top: 1px solid var(--border); background: var(--off); }
.newsletter-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.newsletter-text p { font-size: 13px; color: var(--mid); line-height: 1.6; }
.newsletter-form { display: flex; flex: 1; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 13px 18px;
  border: 1.5px solid var(--border2); border-right: none;
  font-family: var(--font-sans); font-size: 13px; outline: none; background: var(--white);
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: 13px 24px; background: var(--accent); color: #fff;
  border: 1.5px solid var(--accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; transition: background 0.15s;
}
.newsletter-form button:hover { background: var(--ink); border-color: var(--ink); }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--ink); color: var(--white); padding: 64px 0 56px; border-bottom: 3px solid var(--accent); }
.page-hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.45); }
.page-hero-desc {
  font-family: var(--font-serif); font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.6); max-width: 600px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--light);
  padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 48px;
}
.breadcrumb a { color: var(--mid); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border2); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  :root { --pad: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .site-header-actions .btn-ghost { display: none; }
}
