:root {
  --navy-950: #04162f;
  --navy-900: #071e3d;
  --navy-800: #0b2d59;
  --navy-700: #164a86;
  --gold: #c9a227;
  --gold-light: #e0b84c;
  --ink: #10233e;
  --slate: #5f6f83;
  --line: #dfe5eb;
  --soft: #f4f7fa;
  --white: #fff;
  --shadow: 0 14px 36px rgba(7, 30, 61, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(1296px, calc(100% - 48px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 16px; background: #fff; color: var(--navy-900); border-radius: 6px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.topbar { min-height: 38px; background: var(--navy-950); color: #e9eef5; font-size: 12px; }
.topbar-inner, .topbar-group { display: flex; align-items: center; }
.topbar-inner { min-height: 38px; justify-content: space-between; }
.topbar-group { gap: 8px; }
.topbar-group i, .footer-bottom i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; margin: 0 7px; opacity: .65; }

.site-header { position: relative; z-index: 25; background: #fff; }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-copy { min-width: 0; }
.brand-mark { width: 58px; height: 68px; flex: 0 0 auto; position: relative; display: grid; place-items: center; color: var(--gold-light); background: var(--navy-800); border: 4px solid var(--gold); clip-path: polygon(50% 0, 95% 17%, 88% 70%, 50% 100%, 12% 70%, 5% 17%); }
.brand-mark::before { content: ""; position: absolute; width: 28px; height: 33px; border: 2px solid var(--gold-light); border-top: 0; bottom: 13px; clip-path: polygon(0 0, 100% 0, 50% 100%); }
.brand-star { position: absolute; top: 9px; font-size: 13px; }
.brand-river { position: absolute; bottom: 11px; font-size: 23px; font-weight: 900; transform: rotate(90deg); }
.brand-copy strong { display: block; color: #101820; font-size: clamp(18px, 2vw, 28px); line-height: 1.1; letter-spacing: -.025em; text-transform: uppercase; }
.brand-copy > span { display: block; margin-top: 5px; color: #45546a; font-size: 14px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.search-box { width: 310px; height: 46px; display: flex; border: 1px solid #d6dce4; border-radius: 8px; background: #fbfcfd; }
.search-box input { min-width: 0; flex: 1; padding: 0 0 0 15px; border: 0; outline: none; background: transparent; color: var(--ink); font-size: 13px; }
.search-box button { width: 48px; display: grid; place-items: center; color: var(--navy-900); background: transparent; border: 0; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 25px; border: 1px solid transparent; border-radius: 8px; font-weight: 750; font-size: 14px; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button.gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 9px 20px rgba(201, 162, 39, .2); }
.button.compact { min-height: 46px; padding-inline: 17px; }
.button.navy { color: #fff; background: var(--navy-800); }
.button.outline { color: #fff; border-color: #fff; background: rgba(7, 30, 61, .2); }
.mobile-menu-button { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--navy-900); }

.main-nav { background: linear-gradient(90deg, var(--navy-950), var(--navy-800)); color: #fff; }
.nav-inner { min-height: 50px; display: flex; align-items: stretch; gap: 38px; }
.nav-inner a { position: relative; display: flex; align-items: center; gap: 8px; color: #e4eaf1; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.nav-inner a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.nav-inner a:hover::after, .nav-inner a.active::after { transform: scaleX(1); }
.nav-inner a.active { color: var(--gold-light); }
.nav-caret { font-size: 15px; }

.hero { position: relative; height: 448px; overflow: hidden; background: var(--navy-900); color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { background-position: center; background-size: cover; transform: scale(1.025); transition: transform 6.5s ease; }
.hero-slide.active .hero-image { transform: scale(1); }
.hero-overlay { background: linear-gradient(90deg, rgba(4, 22, 47, .99) 0%, rgba(4, 25, 55, .95) 35%, rgba(7, 30, 61, .46) 58%, rgba(7, 30, 61, .08) 100%); }
.hero-content { position: relative; height: 100%; display: flex; align-items: center; z-index: 1; }
.hero-copy { max-width: 680px; padding-bottom: 30px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--gold-light); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { max-width: 650px; margin: 0; color: #fff; font-size: clamp(34px, 4vw, 50px); line-height: 1.14; letter-spacing: -.035em; font-weight: 800; }
.hero-copy > p { max-width: 580px; margin: 15px 0 0; color: #e1e8f0; font-size: 16px; line-height: 1.65; }
.hero-meta { display: flex; align-items: center; gap: 12px; margin-top: 13px; color: #d9e2ed; font-size: 13px; }
.hero-meta b { color: var(--gold); }
.hero-actions { display: flex; gap: 14px; margin-top: 21px; }
.slider-controls { position: absolute; left: 50%; bottom: 24px; z-index: 4; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); }
.slider-count { display: flex; align-items: baseline; gap: 5px; min-width: 62px; }
.slider-count strong { color: var(--gold-light); font-size: 17px; }
.slider-count span { color: #fff; font-size: 13px; }
.slider-progress { width: 280px; height: 3px; margin-right: 14px; overflow: hidden; background: rgba(255,255,255,.28); }
.slider-progress span { display: block; height: 100%; background: var(--gold-light); transition: width .4s; }
.slider-controls button { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(7, 30, 61, .35); }
.slider-controls button:last-child { color: var(--gold-light); border-color: var(--gold-light); }
.slider-controls button:first-of-type svg { transform: rotate(180deg); }

.ticker { min-height: 52px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; margin-top: 18px; overflow: hidden; border: 1px solid #d8dee6; border-radius: 8px; box-shadow: 0 4px 18px rgba(7,30,61,.05); }
.ticker-label { align-self: stretch; display: flex; align-items: center; gap: 10px; padding: 0 20px; color: #fff; background: linear-gradient(135deg, var(--gold), #b58c12); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.pulse { font-size: 9px; color: #fff; animation: pulse 1.6s infinite; }
.ticker-window { min-width: 0; overflow: hidden; }
.ticker-track { width: max-content; display: flex; align-items: center; animation: ticker-scroll 42s linear infinite; }
.ticker-content { display: flex; align-items: center; white-space: nowrap; }
.ticker-content a { padding: 0 20px; color: #1d2c3f; font-size: 13px; font-weight: 600; }
.ticker-content a:hover { color: var(--gold); }
.ticker-content span { color: var(--gold); }
.ticker:hover .ticker-track, .ticker:focus-within .ticker-track { animation-play-state: paused; }
@keyframes pulse { 50% { opacity: .35; } }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

.section { padding: 82px 0; }
.section.soft { background: var(--soft); }
.section-heading { margin-bottom: 30px; }
.section-kicker { display: block; margin-bottom: 7px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-heading h2 { position: relative; margin: 0; color: var(--navy-900); font-size: clamp(27px, 3vw, 37px); line-height: 1.2; letter-spacing: -.035em; }
.section-heading h2::after { content: ""; display: block; width: 46px; height: 3px; margin-top: 14px; background: var(--gold); }
.section-heading > p { max-width: 560px; margin: 14px 0 0; color: #cad5e3; line-height: 1.7; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.category-tabs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.category-tabs button { padding: 10px 15px; color: #40516a; border: 0; border-radius: 7px; background: transparent; font-size: 12px; font-weight: 650; }
.category-tabs button.active { color: #fff; background: var(--gold); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-image { height: 210px; display: block; padding: 14px; background-position: center; background-size: cover; }
.news-image span { display: inline-block; padding: 7px 10px; color: #fff; border-radius: 4px; background: var(--navy-700); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.news-card-body { padding: 20px; }
.card-meta, .card-meta span { display: flex; align-items: center; }
.card-meta { gap: 18px; color: #748196; font-size: 11px; }
.card-meta span { gap: 6px; }
.news-card h3 { margin: 12px 0 17px; font-size: 18px; line-height: 1.45; letter-spacing: -.01em; }
.news-card h3 a:hover { color: var(--navy-700); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-size: 12px; font-weight: 800; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.text-link.standalone { font-size: 13px; }
.center { margin-top: 38px; text-align: center; }

.services-section { padding: 78px 0; color: #fff; background: linear-gradient(110deg, var(--navy-950), var(--navy-800)); }
.light-heading h2 { color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 130px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.07); transition: transform .2s, background .2s, border .2s; }
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255,255,255,.12); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--navy-950); border-radius: 10px; background: var(--gold-light); }
.service-card strong, .service-card small { display: block; }
.service-card strong { font-size: 15px; }
.service-card small { margin-top: 7px; color: #c8d4e2; font-size: 11px; line-height: 1.5; }
.service-card > svg { color: var(--gold-light); }

.content-columns { display: grid; grid-template-columns: 1.35fr .9fr; gap: 68px; }
.agenda-list { display: grid; gap: 12px; }
.agenda-item { display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 20px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.agenda-item time { height: 64px; display: grid; place-content: center; text-align: center; border-radius: 8px; background: var(--navy-800); color: #fff; }
.agenda-item time strong { font-size: 23px; line-height: 1; }
.agenda-item time span { margin-top: 4px; color: var(--gold-light); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.agenda-item h3 { margin: 0; font-size: 15px; line-height: 1.4; }
.agenda-item p { display: flex; align-items: center; gap: 7px; margin: 9px 0 0; color: #6e7b8d; font-size: 11px; }
.agenda-item p i { width: 3px; height: 3px; border-radius: 50%; background: #9ba5b1; }
.agenda-item > a { color: var(--gold); padding: 8px; }
.agenda-list + .text-link { margin-top: 22px; }
.announcement-panel { padding: 30px; border-top: 4px solid var(--gold); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.announcement-panel .section-heading { margin-bottom: 15px; }
.announcement-panel .section-heading h2 { font-size: 28px; }
.announcement-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.announcement-item > span:first-child { width: 37px; height: 37px; display: grid; place-items: center; color: var(--navy-700); border-radius: 7px; background: #edf4fc; }
.announcement-item strong, .announcement-item small { display: block; }
.announcement-item strong { font-size: 12px; line-height: 1.45; }
.announcement-item small { margin-top: 5px; color: #7a8696; font-size: 10px; }
.announcement-item > svg { color: var(--gold); }

.leader-section { overflow: hidden; color: #fff; background: var(--navy-900); }
.leader-inner { min-height: 485px; display: grid; grid-template-columns: 44% 56%; }
.leader-photo { align-self: center; overflow: hidden; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 32%, rgba(224,184,76,.2), transparent 28%), linear-gradient(135deg, #49617e, #172e4a 55%, #081c36); }
.leader-photo:empty { min-height: 360px; }
.leader-photo-image { display: block; width: 100%; height: auto; max-height: 520px; object-fit: contain; object-position: center bottom; }
.leader-photo span { margin-bottom: 25px; padding: 7px 12px; border-radius: 5px; background: rgba(7,30,61,.72); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.leader-copy { align-self: center; padding: 55px 20px 55px 72px; }
.leader-copy h2 { max-width: 630px; margin: 8px 0 18px; color: #fff; font-size: clamp(29px, 3.2vw, 42px); line-height: 1.2; letter-spacing: -.035em; }
.leader-copy blockquote { max-width: 670px; margin: 0 0 22px; color: #ccd7e4; font-family: Georgia, serif; font-size: 17px; font-style: italic; line-height: 1.7; }
.leader-copy > strong, .leader-copy > small { display: block; }
.leader-copy > small { margin-top: 4px; color: var(--gold-light); font-size: 11px; }
.gold-link { margin-top: 22px; color: var(--gold-light); }

.stats-section { background: var(--gold); color: var(--navy-950); }
.stats-grid { min-height: 145px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stats-grid div { padding: 15px 25px; text-align: center; border-right: 1px solid rgba(4,22,47,.18); }
.stats-grid div:last-child { border: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { font-size: 34px; letter-spacing: -.04em; }
.stats-grid span { margin-top: 5px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.gallery-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; grid-template-rows: 330px; gap: 18px; }
.gallery-grid a { display: flex; align-items: end; padding: 20px; border-radius: 12px; background-position: center; background-size: cover; box-shadow: inset 0 -100px 80px rgba(4,22,47,.5); transition: transform .25s; }
.gallery-grid a:hover { transform: translateY(-4px); }
.gallery-grid span { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; }

.site-footer { padding-top: 68px; color: #cad3df; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 2fr .8fr .8fr 1.2fr; gap: 60px; padding-bottom: 55px; }
.footer-brand-title .brand-mark { width: 44px; height: 52px; }
.footer-brand-title .brand-copy strong { color: #fff; font-size: 16px; }
.footer-brand-title .brand-copy > span { color: #aebaca; font-size: 11px; }
.footer-brand > p { max-width: 430px; margin: 20px 0; color: #aebaca; font-size: 12px; line-height: 1.8; }
.site-footer h3 { margin: 3px 0 20px; color: #fff; font-size: 14px; }
.site-footer h3::after { content: ""; display: block; width: 30px; height: 2px; margin-top: 9px; background: var(--gold); }
.site-footer > .container > div:not(:first-child) > a { display: block; margin: 0 0 13px; color: #aebaca; font-size: 12px; }
.site-footer > .container > div:not(:first-child) > a:hover { color: var(--gold-light); }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin: 0 0 10px; }
.footer-menu a { color: #aebaca; font-size: 12px; }
.footer-menu a:hover { color: var(--gold-light); }
.footer-menu .sub-menu { margin: 8px 0 0 12px; padding: 0; list-style: none; }
.footer-widget ul, .footer-widget ol { margin: 0; padding: 0; list-style: none; }
.footer-widget li { margin: 0 0 10px; }
.footer-widget a { color: #aebaca; font-size: 12px; }
.footer-widget a:hover { color: var(--gold-light); }
.footer-widget .sub-menu, .footer-widget .wp-block-navigation__submenu-container { margin: 8px 0 0 12px; }
.footer-widget .wp-block-navigation { display: block; }
.home-news-layout .center { margin-top: 30px; }
.site-footer > .container > div:last-child p { display: flex; align-items: flex-start; gap: 10px; color: #aebaca; font-size: 11px; line-height: 1.55; }
.site-footer > .container > div:last-child svg { flex: 0 0 auto; color: var(--gold-light); }
.socials { display: flex; gap: 9px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.17); border-radius: 7px; }
.socials a:hover { color: var(--navy-950); background: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { min-height: 59px; display: flex; align-items: center; justify-content: space-between; color: #8594a7; font-size: 10px; }
.footer-bottom span:last-child { display: flex; align-items: center; }

@media (max-width: 1080px) {
  .search-box { display: none; }
  .nav-inner { gap: 22px; }
  .hero-copy { max-width: 630px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 700px); }
  .desktop-only, .button.compact { display: none; }
  .header-inner { min-height: 78px; }
  .brand-mark { width: 44px; height: 53px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy > span { font-size: 10px; }
  .mobile-menu-button { display: grid; }
  .main-nav { position: absolute; left: 0; right: 0; z-index: 20; overflow: hidden; max-height: 0; transition: max-height .3s; }
  .main-nav.open { max-height: 430px; }
  .nav-inner { align-items: stretch; flex-direction: column; gap: 0; padding-block: 8px; }
  .nav-inner a { justify-content: space-between; padding: 12px 4px; }
  .hero { height: 540px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,22,47,.97), rgba(7,30,61,.65)); }
  .hero-copy { max-width: 100%; padding-bottom: 38px; }
  .hero h1 { font-size: clamp(31px, 7vw, 44px); }
  .slider-progress { width: 160px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .content-columns { grid-template-columns: 1fr; gap: 50px; }
  .leader-inner { grid-template-columns: 1fr; }
  .leader-photo { width: 100%; }
  .leader-photo-image { max-height: none; }
  .leader-copy { padding: 55px 0; }
  .gallery-grid { grid-template-columns: 1.5fr 1fr; grid-template-rows: 260px 200px; }
  .gallery-grid a:last-child { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding-block: 20px; }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 560px) {
  .topbar { font-size: 10px; }
  .brand-copy strong { max-width: 220px; font-size: 13px; }
  .brand-copy > span { display: none; }
  .hero { height: 580px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 260px; }
  .slider-controls { bottom: 18px; }
  .slider-progress { width: 70px; }
  .slider-controls button { width: 37px; height: 37px; }
  .ticker { grid-template-columns: auto minmax(0, 1fr); }
  .ticker-label { padding-inline: 13px; }
  .ticker-content a { padding-inline: 13px; font-size: 11px; }
  .section { padding: 62px 0; }
  .news-grid, .services-grid { grid-template-columns: 1fr; }
  .news-image { height: 220px; }
  .category-tabs { overflow-x: auto; flex-wrap: nowrap; width: 100%; padding-bottom: 5px; }
  .category-tabs button { white-space: nowrap; }
  .agenda-item { grid-template-columns: 60px 1fr; gap: 13px; }
  .agenda-item > a { display: none; }
  .agenda-item p { flex-wrap: wrap; }
  .leader-copy { padding-inline: 0; }
  .stats-grid strong { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 230px); }
  .gallery-grid a:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* WordPress integration */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { top: 8px; left: 8px; z-index: 9999; width: auto; height: auto; padding: 12px 18px; clip: auto; color: var(--navy-900); background: #fff; border-radius: 6px; }
.custom-logo-wrap, .custom-logo-link { display: block; flex: 0 0 auto; }
.custom-logo { display: block; width: auto; max-width: 68px; height: 68px; object-fit: contain; }
.nav-inner .nav-menu { min-height: 50px; display: flex; align-items: stretch; gap: 38px; padding: 0; margin: 0; list-style: none; }
.nav-inner .nav-menu > li { display: flex; position: relative; }
.nav-inner .nav-menu > li > a { height: 100%; }
.nav-inner .menu-item-has-children > a::before { content: "⌄"; order: 2; margin-left: 8px; }
.nav-inner .sub-menu { position: absolute; top: 100%; left: -16px; z-index: 30; display: none; min-width: 220px; padding: 10px; margin: 0; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 0 0 8px 8px; box-shadow: var(--shadow); }
.nav-inner .sub-menu a { display: block; padding: 10px 12px; color: var(--ink); text-transform: none; white-space: nowrap; }
.nav-inner li:hover > .sub-menu, .nav-inner li:focus-within > .sub-menu { display: block; }
.mobile-menu-button span { display: block; width: 20px; height: 2px; margin: 3px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.mobile-menu-button.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.mobile-menu-button.active span:nth-child(2) { opacity: 0; }
.mobile-menu-button.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.category-tabs a { padding: 10px 15px; color: #40516a; border-radius: 7px; font-size: 12px; font-weight: 650; }
.category-tabs a.active, .category-tabs a:hover { color: #fff; background: var(--gold); }
.hero-slide[aria-hidden="true"] a, .hero-slide[aria-hidden="true"] button { visibility: hidden; }
.archive-page h1, .single-hero h1 { margin: 0; color: var(--navy-900); font-size: clamp(34px, 4.5vw, 56px); line-height: 1.16; letter-spacing: -.04em; }
.content-with-sidebar, .single-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 58px; }
.archive-grid { grid-template-columns: repeat(2, 1fr); }
.sidebar { display: grid; align-content: start; gap: 24px; }
.widget { padding: 25px; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 10px; background: #fff; }
.widget-title { margin: 0 0 18px; color: var(--navy-900); font-size: 19px; }
.popular-item { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.popular-item > strong { color: var(--gold); font-size: 19px; }
.popular-item > span { font-size: 12px; font-weight: 700; line-height: 1.45; }
.popular-item small { display: block; margin-top: 5px; color: #7a8696; font-size: 10px; font-weight: 400; }
.widget ul { padding: 0; margin: 0; list-style: none; }
.widget li { padding: 9px 0; border-bottom: 1px solid var(--line); color: #53647a; font-size: 12px; }
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 35px; }
.page-numbers { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; }
.page-numbers.current { color: #fff; border-color: var(--navy-800); background: var(--navy-800); }
.empty-state { padding: 70px 30px; text-align: center; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.empty-state .search-box { display: flex; margin: 25px auto 0; background: #fff; }
.error-number { display: block; color: var(--gold); font-size: 90px; font-weight: 800; line-height: 1; }
.single-hero { padding: 80px 0; color: #fff; background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); }
.single-hero h1 { max-width: 980px; color: #fff; }
.single-meta { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: #c7d3e1; font-size: 12px; }
.single-meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.single-layout { padding-block: 62px 82px; }
.article-content { min-width: 0; color: #35465b; font-family: Georgia, serif; font-size: 18px; line-height: 1.85; }
.article-content h2, .article-content h3, .article-content h4 { color: var(--navy-900); font-family: "Plus Jakarta Sans", sans-serif; line-height: 1.35; }
.article-content a { color: var(--navy-700); text-decoration: underline; }
.article-content img { max-width: 100%; height: auto; border-radius: 10px; }
.featured-image { margin: 0 0 34px; }
.featured-image img { display: block; width: 100%; }
.article-footer { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.tags a { display: inline-block; margin: 4px; padding: 7px 10px; border-radius: 5px; background: var(--soft); font: 600 11px "Plus Jakarta Sans", sans-serif; text-decoration: none; }
.comments-area { margin-top: 45px; padding-top: 35px; border-top: 1px solid var(--line); font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; }
.comment-list { padding-left: 25px; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 6px; }
.comment-form .submit { padding: 12px 20px; color: #fff; border: 0; border-radius: 6px; background: var(--navy-800); }
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 25px 18px 0; }
.alignright { float: right; margin: 0 0 18px 25px; }
.aligncenter { display: block; margin-inline: auto; }

@media (max-width: 1080px) {
  .nav-inner .nav-menu { gap: 22px; }
  .content-with-sidebar, .single-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 36px; }
}

@media (max-width: 820px) {
  .nav-inner .nav-menu { min-height: 0; align-items: stretch; flex-direction: column; gap: 0; padding-block: 8px; }
  .nav-inner .nav-menu > li { display: block; }
  .nav-inner .nav-menu > li > a { height: auto; padding: 12px 4px; }
  .nav-inner .sub-menu { position: static; display: block; padding: 0 0 5px 16px; background: transparent; border: 0; box-shadow: none; }
  .nav-inner .sub-menu a { color: #cbd6e3; }
  .content-with-sidebar, .single-layout { grid-template-columns: 1fr; }
  .sidebar { margin-top: 15px; }
}

@media (max-width: 560px) {
  .archive-grid { grid-template-columns: 1fr; }
  .single-hero { padding: 58px 0; }
  .single-meta { align-items: flex-start; flex-wrap: wrap; }
  .article-content { font-size: 16px; }
}
