/* ============================================================
   USS EDU THEME — Main Stylesheet
   Universitas Sumatera Selatan
   PHP 8.2 | WordPress 6.4+
   ============================================================ */

/* ── Google Fonts preconnect handled via functions.php ── */

/* ════════════════════════════════════════════════════════════
   CSS VARIABLES — dikontrol via Customizer
════════════════════════════════════════════════════════════ */
:root {
  --navy:        #003d82;
  --navy-mid:    #0056b3;
  --navy-light:  #2874a6;
  --blue:        #0056b3;
  --blue-light:  #0078e7;
  --gold:        #e6a800;
  --gold-light:  #ffc107;
  --gold-pale:   #fffbeb;
  --surface:     #f5f5f5;
  --surface-alt: #eaeaea;
  --white:       #ffffff;
  --text:        #333333;
  --text-mid:    #555555;
  --text-muted:  #888888;
  --border:      #dde3ea;
  --border-light:#eaeaea;
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 6px rgba(0,61,130,0.07);
  --shadow:      0 2px 16px rgba(0,61,130,0.10);
  --shadow-md:   0 6px 32px rgba(0,61,130,0.14);
  --shadow-lg:   0 16px 56px rgba(0,61,130,0.18);
  --transition:  all 0.18s ease;
  --max-width:   1160px;
}

/* ════════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ════════════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 700;
  border: none; cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); }
.btn-ghost {
  background: transparent; color: var(--blue);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--blue); }

/* Section header */
.section-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title {
  font-size: 19px; font-weight: 800;
  color: var(--navy); letter-spacing: -.3px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: '';
  width: 3px; height: 22px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-more {
  font-size: 12.5px; font-weight: 700;
  color: var(--blue-light);
  display: flex; align-items: center; gap: 4px;
  opacity: .75;
}
.section-more:hover { opacity: 1; color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════════════════════ */
.site-topbar {
  background: var(--navy);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-contact { display: flex; gap: 16px; align-items: center; }
.topbar-contact a {
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 5px;
}
.topbar-contact a:hover { color: var(--gold-light); }
.topbar-sep { opacity: .25; }
.topbar-links { display: flex; gap: 6px; }
.topbar-links a {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.5);
  padding: 2px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  transition: var(--transition);
}
.topbar-links a:hover { color: var(--gold-light); border-color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   HEADER — STYLE A (Compact: logo kiri, nav kanan)
════════════════════════════════════════════════════════════ */
.header-style-a {
  background: var(--white);
  border-bottom: 2.5px solid var(--gold);
  box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 200;
}
.header-style-a .header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* ════════════════════════════════════════════════════════════
   HEADER — STYLE B (Logo+nama atas, nav bar gelap bawah)
════════════════════════════════════════════════════════════ */
.header-style-b {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 200;
}
.header-style-b .header-brand {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.header-style-b .brand-inner {
  display: flex; align-items: center;
  gap: 20px;
}
.header-style-b .brand-divider {
  width: 1px; height: 54px;
  background: var(--border);
  margin: 0 6px; flex-shrink: 0;
}
.header-style-b .brand-tagline-area {
  display: flex; flex-direction: column; gap: 6px;
}
.header-style-b .brand-tagline {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted); line-height: 1.5;
  max-width: 240px;
}
.brand-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(230,168,0,.1);
  border: 1px solid rgba(230,168,0,.3);
  color: #806000;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 12px;
  letter-spacing: .2px;
}

/* ════════════════════════════════════════════════════════════
   HEADER — STYLE C (Full center)
════════════════════════════════════════════════════════════ */
.header-style-c {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 200;
}
.header-style-c .header-brand {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.header-style-c .brand-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.header-style-c .brand-logo-row {
  display: flex; align-items: center; gap: 18px;
}
.header-style-c .brand-text { text-align: center; }
.header-style-c .brand-tagline {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500; margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   LOGO EMBLEM (shared)
════════════════════════════════════════════════════════════ */
.logo-emblem {
  width: 52px; height: 52px;
  background: linear-gradient(145deg, var(--navy-light), var(--navy));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--gold);
  flex-shrink: 0;
  position: relative; overflow: hidden;
}
.logo-emblem::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.logo-emblem-text {
  font-size: 18px; font-weight: 900;
  color: white; letter-spacing: -1px;
  position: relative; z-index: 1;
  line-height: 1;
}
.logo-emblem img {
  width: 36px; height: 36px; object-fit: contain;
  border-radius: 50%; position: relative; z-index: 1;
}
.site-logo.sm { height: 36px; width: auto; }

/* Brand text (shared) */
.brand-univ {
  font-size: 16px; font-weight: 800;
  color: var(--navy); letter-spacing: -.2px;
  margin-bottom: 0;
}
.brand-name {
  font-size: 12.5px; font-weight: 400;
  color: var(--text-muted); letter-spacing: .2px;
  line-height: 1.3;
}
.brand-name .accent { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   NAV (shared)
════════════════════════════════════════════════════════════ */
.site-nav-bar {
  background: var(--navy);
  border-bottom: 2.5px solid var(--gold);
}
.nav-list {
  display: flex; align-items: center;
  justify-content: center;
  gap: 2px;
}

/* Style A nav (dalam header, no bar) */
.header-style-a .nav-list { justify-content: flex-end; gap: 1px; }

.nav-item { position: relative; }
.nav-link {
  display: block; padding: 12px 14px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.78);
  border-radius: 0;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .18s;
}
.nav-link:hover,
.nav-link.current-menu-item,
.nav-link.current-menu-ancestor {
  color: var(--gold-light);
}
.nav-link:hover::after,
.nav-link.current-menu-item::after,
.nav-link.current-menu-ancestor::after {
  transform: scaleX(1);
}

/* Style A nav links — on white bg */
.header-style-a .nav-link {
  color: var(--text-mid);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
}
.header-style-a .nav-link::after { display: none; }
.header-style-a .nav-link:hover,
.header-style-a .nav-link.current-menu-item { color: var(--navy); background: rgba(13,33,55,.06); }

/* nav CTA (Website USS) */
.nav-link-cta {
  color: var(--gold-light) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}
.nav-link-cta::after { display: none !important; }

/* nav separator */
.nav-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.12);
  margin: 0 4px; flex-shrink: 0;
}

/* Dropdown */
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2.5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px; padding: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 300;
}
.nav-item:hover > .dropdown { transform: translateX(-50%) translateY(0); }

/* Style A dropdown left-aligned */
.header-style-a .dropdown {
  left: 0; transform: translateY(-8px);
}
.header-style-a .nav-item:hover > .dropdown { transform: translateY(0); }

.dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a::before {
  content: '›';
  color: var(--gold); font-size: 18px; font-weight: 700; line-height: 1;
  flex-shrink: 0;
}
.dropdown a:hover { background: var(--surface); color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.site-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue) 100%);
  padding: 60px 0 72px;
  position: relative; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(26,82,118,.3) 0%, transparent 70%),
    radial-gradient(circle at 8% 85%, rgba(230,168,0,.07) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230,168,0,.15);
  border: 1px solid rgba(230,168,0,.35);
  color: var(--gold-light);
  padding: 5px 14px; border-radius: 20px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 32px; font-weight: 800;
  color: white; line-height: 1.22;
  letter-spacing: -.5px; margin-bottom: 14px;
}
.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-desc {
  font-size: 15.5px; color: rgba(255,255,255,.65);
  max-width: 500px; line-height: 1.75; margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Stats card */
.hero-stats {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  backdrop-filter: blur(10px);
  min-width: 210px; flex-shrink: 0;
}
.stat-num {
  font-size: 26px; font-weight: 800;
  color: var(--gold-light); line-height: 1;
  letter-spacing: -.5px;
}
.stat-label {
  font-size: 11.5px; color: rgba(255,255,255,.5);
  margin-top: 3px; font-weight: 500; line-height: 1.35;
}

/* ════════════════════════════════════════════════════════════
   QUICK ACCESS BAR
════════════════════════════════════════════════════════════ */
.quick-access {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.qa-inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qa-label {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .7px;
  margin-right: 4px; flex-shrink: 0;
}
.qa-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  white-space: nowrap;
  transition: var(--transition);
}
.qa-chip:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   MAIN LAYOUT
════════════════════════════════════════════════════════════ */
.site-main {
  max-width: var(--max-width);
  margin: 36px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 292px;
  gap: 28px;
  align-items: start;
}

/* No sidebar */
.site-main.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.is-singular .site-main.no-sidebar {
  max-width: var(--max-width);
}

/* ════════════════════════════════════════════════════════════
   POST CARDS (archive / home listing)
════════════════════════════════════════════════════════════ */
.posts-list { display: flex; flex-direction: column; gap: 16px; }

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; gap: 18px; padding: 20px;
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.post-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .2s;
  border-radius: 2px 0 0 2px;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card:hover::before { transform: scaleY(1); }

.post-thumb {
  width: 104px; height: 78px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 28px;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-body { flex: 1; min-width: 0; }
.post-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px; flex-wrap: wrap;
}
.post-category {
  font-size: 10.5px; font-weight: 700;
  color: var(--blue);
  background: rgba(0,86,179,.08);
  padding: 2px 9px; border-radius: 10px;
  text-transform: uppercase; letter-spacing: .3px;
}
.post-date {
  font-size: 11.5px; color: var(--text-muted); font-weight: 500;
}
.post-title {
  font-size: 14.5px; font-weight: 700; color: var(--text);
  line-height: 1.42; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--blue); }
.post-excerpt {
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Pagination */
.pagination {
  display: flex; gap: 6px; margin-top: 28px;
  justify-content: center;
}
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
}
.page-numbers:hover { background: var(--navy); color: white; border-color: var(--navy); }
.page-numbers.current { background: var(--navy); color: white; border-color: var(--navy); }
.page-numbers.dots { border: none; background: none; cursor: default; }

/* ════════════════════════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════════════════════════ */
.single-hero {
  background: var(--navy);
  padding: 40px 0;
  color: white;
}
.single-hero .post-category { color: var(--gold-light); background: rgba(230,168,0,.15); }
.single-hero .post-date { color: rgba(255,255,255,.55); }
.single-title {
  font-size: 26px; font-weight: 800;
  color: white; line-height: 1.3;
  margin: 12px 0;
}
.single-featured {
  width: 100%; max-height: 420px; object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 28px 0;
}
.single-content,
.page-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
}
.single-content h2,
.single-content h3,
.single-content h4,
.page-content h2,
.page-content h3,
.page-content h4 { color: var(--navy); font-weight: 700; margin: 32px 0 14px; line-height: 1.4; }
.single-content h2, .page-content h2 { font-size: 22px; }
.single-content h3, .page-content h3 { font-size: 18px; }
.single-content h4, .page-content h4 { font-size: 16px; }
.single-content p,
.page-content p { margin-bottom: 20px; }
.single-content a,
.page-content a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(0,86,179,.25); transition: var(--transition); }
.single-content a:hover,
.page-content a:hover { border-bottom-color: var(--blue); }
.single-content ul, .single-content ol,
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-content ul, .page-content ul { list-style: disc; }
.single-content ol, .page-content ol { list-style: decimal; }
.single-content li, .page-content li { margin-bottom: 8px; padding-left: 6px; }
.single-content strong, .page-content strong { color: var(--text); font-weight: 700; }
.single-content blockquote,
.page-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px; margin: 24px 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--text);
  font-size: 15px;
}
.single-content img, .page-content img { border-radius: var(--radius-sm); margin: 24px 0; max-width: 100%; height: auto; }
.single-content table, .page-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.single-content th, .single-content td, .page-content th, .page-content td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.single-content th, .page-content th { background: var(--surface); font-weight: 700; color: var(--navy); }
.single-content table tr:nth-child(even) td,
.page-content table tr:nth-child(even) td { background: var(--surface); }

/* ════════════════════════════════════════════════════════════
   SIDEBAR & WIDGETS
════════════════════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.widget-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-title {
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.widget-title::before {
  content: '';
  width: 3px; height: 14px;
  background: var(--gold);
  border-radius: 2px; flex-shrink: 0;
}
.widget-body { padding: 10px; }
.widget-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.widget-link::before {
  content: '›';
  color: var(--gold); font-size: 18px; font-weight: 800;
  line-height: 1; flex-shrink: 0;
}
.widget-link:hover { background: var(--surface); color: var(--navy); }

/* Agenda widget */
.agenda-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.agenda-item:hover { background: var(--surface); }
.agenda-date {
  background: var(--navy); color: white;
  border-radius: var(--radius-sm);
  padding: 6px 10px; text-align: center;
  flex-shrink: 0; min-width: 46px;
}
.agenda-day { font-size: 20px; font-weight: 800; line-height: 1; }
.agenda-month { font-size: 10px; font-weight: 600; opacity: .6; text-transform: uppercase; }
.agenda-info .agenda-title { font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.35; }
.agenda-info .agenda-time { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* Search widget */
.widget-search {
  display: flex; gap: 0;
}
.widget-search input {
  flex: 1; padding: 9px 14px;
  border: 1px solid var(--border); border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 13px; font-family: inherit;
  outline: none; color: var(--text);
  background: var(--white);
}
.widget-search input:focus { border-color: var(--blue); }
.widget-search button {
  padding: 9px 14px;
  background: var(--navy); color: white;
  border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  transition: var(--transition);
}
.widget-search button:hover { background: var(--blue); }

/* ════════════════════════════════════════════════════════════
   PAGE CONTENT
════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 36px 0;
  color: white; border-bottom: 3px solid var(--gold);
}
.page-hero h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.page-breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 8px;
}
.page-breadcrumb a { color: rgba(255,255,255,.6); }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb .sep { opacity: .4; }

.page-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
}

/* ════════════════════════════════════════════════════════════
   404
════════════════════════════════════════════════════════════ */
.error-404 {
  text-align: center; padding: 80px 24px;
  max-width: 560px; margin: 0 auto;
}
.error-404 .error-num { font-size: 80px; font-weight: 800; color: var(--border); line-height: 1; }
.error-404 h1 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 16px 0 10px; }
.error-404 p { color: var(--text-muted); margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.6); margin-top: 60px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: 13px; margin-top: 14px; line-height: 1.75;
  color: rgba(255,255,255,.4);
}
.footer-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a {
  font-size: 12.5px; color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: 7px;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-col h4 {
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col a {
  display: block;
  padding: 3px 0;
  font-size: 13px; color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .14s;
}
.footer-col a:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.footer-bottom {
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .site-main { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-contact { display: none; }
  .header-style-b .brand-divider,
  .header-style-b .brand-tagline-area { display: none; }
  .header-style-b .brand-name { font-size: 15px; }
  .hero-title { font-size: 24px; }
  .site-main { margin: 24px auto; }
  .single-content, .page-content { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav-list { flex-wrap: wrap; justify-content: flex-start; }
  .post-card { flex-direction: column; }
  .post-thumb { width: 100%; height: 180px; }
  .header-style-c .brand-logo-row { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   WP CORE CLASSES
════════════════════════════════════════════════════════════ */
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--text-muted); margin-top: 6px; text-align: center; }
.sticky { position: relative; }
.screen-reader-text { @extend .sr-only; }
