@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/vazirmatn/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/vazirmatn/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/vazirmatn/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0b3157;
  --navy-2: #123f6b;
  --gold: #c99232;
  --gold-light: #e5b656;
  --ink: #13202c;
  --muted: #687582;
  --paper: #ffffff;
  --surface: #f4f6f8;
  --surface-2: #e9eef2;
  --line: #dfe5ea;
  --danger: #b51f2b;
  --shadow: 0 18px 55px rgba(10, 37, 62, .12);
  --shadow-sm: 0 8px 24px rgba(10, 37, 62, .09);
  --radius: 18px;
  --container: 1200px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #edf3f7;
  --muted: #aab6c0;
  --paper: #0d1924;
  --surface: #111f2c;
  --surface-2: #192a38;
  --line: #263a49;
  --shadow: 0 18px 55px rgba(0, 0, 0, .28);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .22);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section-space { padding: 70px 0; }
.soft-section { background: var(--surface); }
.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: 12px; right: 12px; z-index: 9999; background: var(--navy);
  color: #fff; padding: 10px 16px; border-radius: 10px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.reading-line { position: fixed; top: 0; right: 0; height: 3px; width: 0; background: var(--gold); z-index: 9999; }

/* Header */
.site-header { position: relative; z-index: 50; background: var(--paper); }
.utility-bar { background: var(--navy); color: rgba(255,255,255,.83); font-size: 12px; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.utility-right, .utility-left { display: flex; align-items: center; gap: 11px; }
.utility-left a:hover { color: var(--gold-light); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); }
.divider { width: 1px; height: 14px; background: rgba(255,255,255,.22); }
.brand-row { min-height: 116px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.brand { grid-column: 2; display: inline-flex; align-items: center; gap: 14px; justify-self: center; }
.brand img { width: 78px; height: 78px; object-fit: contain; border-radius: 14px; background: #fff; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.5; }
.brand-copy strong { color: var(--navy); font-size: 28px; letter-spacing: -.7px; }
html[data-theme="dark"] .brand-copy strong { color: #e8c373; }
.brand-copy small { color: var(--muted); font-size: 12px; }
.header-actions { grid-column: 1; grid-row: 1; display: flex; gap: 8px; justify-self: start; }
.icon-button {
  width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; cursor: pointer; transition: .2s ease;
}
.icon-button:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.icon-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mobile-menu-button { display: none; grid-column: 3; }
.moon-icon { display: none; }
html[data-theme="dark"] .moon-icon { display: block; }
html[data-theme="dark"] .sun-icon { display: none; }
.main-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 40; }
.nav-inner { display: flex; justify-content: center; align-items: center; min-height: 52px; gap: 32px; }
.nav-inner a { position: relative; font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.nav-inner a::after { content: ""; position: absolute; height: 3px; border-radius: 4px; background: var(--gold); right: 0; left: 100%; bottom: -17px; transition: left .2s; }
.nav-inner a:hover, .nav-inner a.active { color: var(--navy); }
html[data-theme="dark"] .nav-inner a:hover, html[data-theme="dark"] .nav-inner a.active { color: var(--gold-light); }
.nav-inner a:hover::after, .nav-inner a.active::after { left: 0; }
.search-panel { max-height: 0; overflow: hidden; background: var(--surface); border-bottom: 1px solid transparent; transition: max-height .28s ease, border-color .2s; }
.search-panel.open { max-height: 300px; border-color: var(--line); }
.search-panel-inner { padding: 22px 0; }
.site-search { display: flex; align-items: center; max-width: 820px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.site-search svg { width: 22px; height: 22px; margin-right: 16px; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.site-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; padding: 14px 12px; color: var(--ink); }
.site-search button { border: 0; align-self: stretch; background: var(--gold); color: #fff; padding: 0 25px; cursor: pointer; font-weight: 700; }
.search-results { max-width: 820px; margin: 12px auto 0; font-size: 13px; color: var(--muted); }
.search-results a { display: inline-block; margin: 3px 0 3px 14px; color: var(--navy); font-weight: 700; }
html[data-theme="dark"] .search-results a { color: var(--gold-light); }

/* Breaking */
.breaking { background: var(--paper); border-bottom: 1px solid var(--line); }
.breaking-inner { min-height: 48px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; overflow: hidden; }
.breaking-label { color: var(--danger); font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 0 0 rgba(181,31,43,.45); animation: pulse 1.7s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(181,31,43,0); } 100% { box-shadow: 0 0 0 0 rgba(181,31,43,0); } }
.ticker { overflow: hidden; position: relative; height: 48px; }
.ticker-track { position: absolute; inset: 0; display: flex; align-items: center; gap: 60px; width: max-content; animation: ticker 24s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-track a { font-size: 13px; font-weight: 700; white-space: nowrap; }
.ticker-track a::before { content: "◆"; color: var(--gold); font-size: 7px; margin-left: 9px; }
@keyframes ticker { from { transform: translateX(-15%); } to { transform: translateX(75%); } }
.ticker-time { color: var(--muted); font-size: 11px; white-space: nowrap; }

/* Common */
.story-card { min-width: 0; }
.story-image { display: block; position: relative; overflow: hidden; }
.story-image img, .news-thumb img, .analysis-image img, .compact-thumb img, .media-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.story-card:hover img, .media-visual:hover img { transform: scale(1.035); }
.image-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,20,34,.48), rgba(4,20,34,0) 58%); }
.category-pill { display: inline-flex; align-items: center; min-height: 30px; padding: 2px 12px; border-radius: 999px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 800; }
.story-image .category-pill { position: absolute; z-index: 2; top: 18px; right: 18px; }
.category-pill.standalone { margin-bottom: 18px; }
.meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 11px; }
.meta span { color: var(--gold); font-weight: 800; }
.meta span::after { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--line); margin-right: 14px; vertical-align: middle; }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 800; }
.story-footer { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 11px; }
.story-footer .author { color: var(--ink); font-weight: 700; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-heading h2 { margin: 3px 0 0; font-size: 28px; line-height: 1.35; letter-spacing: -.6px; }
.section-kicker { font-size: 11px; color: var(--gold); font-weight: 900; letter-spacing: .3px; }
.section-kicker.light { color: var(--gold-light); }
.simple-heading { align-items: center; }
.text-link { color: var(--navy); font-weight: 800; font-size: 13px; }
html[data-theme="dark"] .text-link { color: var(--gold-light); }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(-4px); }


/* Sliders */
[data-slider] { position: relative; min-width: 0; outline: none; }
[data-slide] { animation: slideReveal .55s cubic-bezier(.22,.75,.25,1); }
[data-slide]:not(.is-active) { display: none !important; }
@keyframes slideReveal {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
.slider-controls { display: inline-flex; align-items: center; gap: 9px; }
.slider-arrow {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; background: var(--paper); color: var(--navy);
  cursor: pointer; font-weight: 900; line-height: 1; transition: .2s ease;
}
.slider-arrow:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.slider-dots { display: flex; align-items: center; gap: 6px; direction: rtl; }
.slider-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px;
  background: rgba(104,117,130,.38); cursor: pointer; transition: width .25s ease, background .25s ease;
}
.slider-dots button.is-active { width: 25px; background: var(--gold); }

/* Hero */
.hero-section { padding-top: 34px; }
.hero-slider { min-width: 0; }
.hero-slider-viewport { min-width: 0; }
.hero-slide { width: 100%; }
.hero-slider-controls {
  position: absolute; z-index: 8; top: 18px; left: 18px;
  padding: 7px; border: 1px solid rgba(255,255,255,.62); border-radius: 999px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm);
}
.hero-slider-controls .slider-arrow { width: 32px; height: 32px; border: 0; background: rgba(11,49,87,.08); }
.hero-grid { display: grid; grid-template-columns: 1.68fr 1fr; gap: 24px; }
.hero-main { min-height: 570px; border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); display: grid; grid-template-rows: 1fr auto; }
.hero-main .story-image { min-height: 330px; }
.hero-content { padding: 25px 28px 26px; }
.hero-content h1 { margin: 9px 0 11px; font-size: clamp(25px, 3vw, 38px); line-height: 1.5; letter-spacing: -1.1px; }
.hero-content h1 a:hover { color: var(--navy); }
html[data-theme="dark"] .hero-content h1 a:hover { color: var(--gold-light); }
.hero-content p { color: var(--muted); margin: 0 0 18px; font-size: 14px; }
.hero-side { display: grid; grid-template-rows: 1fr auto auto; gap: 16px; }
.side-feature { position: relative; min-height: 280px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.side-feature .story-image { position: absolute; inset: 0; }
.side-feature-content { position: absolute; z-index: 3; right: 0; left: 0; bottom: 0; padding: 22px; color: #fff; background: linear-gradient(0deg, rgba(4,18,32,.94), rgba(4,18,32,0)); }
.side-feature-content .meta { color: rgba(255,255,255,.72); }
.side-feature h2 { margin: 7px 0 0; font-size: 20px; line-height: 1.65; }
.compact-feature { background: var(--paper); border: 1px solid var(--line); border-radius: 15px; padding: 12px; display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: center; }
.compact-thumb { height: 90px; border-radius: 11px; overflow: hidden; }
.compact-feature h3 { margin: 3px 0 5px; font-size: 14px; line-height: 1.7; }
.compact-feature h3 a:hover { color: var(--navy); }
.compact-feature time { color: var(--muted); font-size: 10px; }

/* News list + sidebar */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 40px; align-items: start; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tabs button { border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 7px 13px; cursor: pointer; color: var(--muted); font-size: 11px; transition: .2s; }
.filter-tabs button:hover, .filter-tabs button.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.news-list { display: grid; gap: 14px; }
.news-row { display: grid; grid-template-columns: 245px 1fr; gap: 22px; padding: 15px; border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); transition: .2s ease; }
.news-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.news-row.hidden { display: none; }
.news-thumb { height: 175px; overflow: hidden; border-radius: 13px; }
.news-row-body { padding: 3px 0; }
.news-row h3 { margin: 7px 0 7px; font-size: 20px; line-height: 1.6; }
.news-row h3 a:hover { color: var(--navy); }
html[data-theme="dark"] .news-row h3 a:hover { color: var(--gold-light); }
.news-row p { color: var(--muted); font-size: 12.5px; margin: 0 0 10px; }
.load-more { width: 100%; margin-top: 20px; min-height: 50px; border: 1px dashed var(--gold); background: transparent; color: var(--navy); border-radius: 14px; cursor: pointer; font-weight: 800; }
html[data-theme="dark"] .load-more { color: var(--gold-light); }
.load-more:hover { background: rgba(201,146,50,.08); }
.sidebar { display: grid; gap: 20px; }
.sidebar-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.sidebar-title { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 13px; margin-bottom: 4px; }
.sidebar-title h2 { font-size: 20px; margin: 0; }
.sidebar-title span { color: var(--muted); font-size: 10px; }
.popular-list { list-style: none; padding: 0; margin: 0; counter-reset: popular; }
.popular-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.popular-list li:last-child { border-bottom: 0; padding-bottom: 3px; }
.rank { font-family: Georgia, serif; font-size: 30px; line-height: 1; color: var(--gold); }
.popular-list a { font-size: 13px; font-weight: 800; line-height: 1.75; display: block; }
.popular-list a:hover { color: var(--navy); }
.popular-list small { color: var(--muted); font-size: 9.5px; }
.newsletter { background: linear-gradient(145deg, var(--navy), #0e446e); color: #fff; border: 0; position: relative; overflow: hidden; }
.newsletter::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; left: -70px; top: -70px; }
.newsletter-icon { color: var(--gold-light); font-size: 25px; }
.newsletter h2 { margin: 3px 0 7px; font-size: 21px; }
.newsletter p { color: rgba(255,255,255,.76); font-size: 12px; margin: 0 0 16px; }
.newsletter form { position: relative; z-index: 1; display: grid; gap: 8px; }
.newsletter input { width: 100%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; border-radius: 10px; padding: 11px 12px; outline: 0; }
.newsletter input::placeholder { color: rgba(255,255,255,.58); }
.newsletter input:focus { border-color: var(--gold-light); }
.newsletter button { border: 0; background: var(--gold); color: #fff; border-radius: 10px; padding: 11px; cursor: pointer; font-weight: 800; }
.newsletter small { display: block; margin-top: 10px; color: rgba(255,255,255,.55); font-size: 9px; }

/* Analysis */
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.analysis-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .25s ease; }
.analysis-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.analysis-image { display: block; height: 210px; overflow: hidden; position: relative; }
.analysis-image .label { position: absolute; top: 14px; right: 14px; background: rgba(8,31,51,.78); backdrop-filter: blur(7px); color: #fff; padding: 5px 11px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.analysis-body { padding: 20px; }
.analysis-body h3 { font-size: 18px; line-height: 1.7; margin: 6px 0 8px; }
.analysis-body h3 a:hover { color: var(--navy); }
html[data-theme="dark"] .analysis-body h3 a:hover { color: var(--gold-light); }
.analysis-body p { color: var(--muted); font-size: 12px; margin: 0 0 15px; }

/* Multimedia */
.multimedia { background: #081f35; color: #fff; position: relative; overflow: hidden; }
.multimedia::before { content: ""; position: absolute; width: 450px; height: 450px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); right: -130px; top: -220px; box-shadow: 0 0 0 65px rgba(255,255,255,.02), 0 0 0 130px rgba(255,255,255,.015); }
.multimedia-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; position: relative; z-index: 2; }
.multimedia-heading h2 { margin: 4px 0 0; font-size: clamp(25px,3.4vw,38px); line-height: 1.45; }
.media-counter { color: rgba(255,255,255,.46); font-size: 14px; direction: ltr; letter-spacing: 2px; }
.media-counter b { color: var(--gold-light); font-size: 28px; }
.media-slider { position: relative; z-index: 2; }
.media-slider-viewport { min-width: 0; }
.media-slide { display: grid; grid-template-columns: .9fr 1.35fr; gap: 55px; align-items: center; }
.media-tag { display: inline-flex; align-items: center; min-height: 29px; padding: 2px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--gold-light); font-size: 10px; font-weight: 800; }
.media-copy h3 { font-size: clamp(28px, 4vw, 43px); line-height: 1.55; margin: 10px 0 12px; }
.media-copy p { color: rgba(255,255,255,.68); font-size: 13px; margin: 0 0 24px; }
.media-slider-controls { margin-top: 25px; }
.media-slider-controls .slider-arrow { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; }
.media-slider-controls .slider-arrow:hover { border-color: var(--gold-light); color: var(--gold-light); }
.media-slider-controls .slider-dots button { background: rgba(255,255,255,.25); }
.media-slider-controls .slider-dots button.is-active { background: var(--gold-light); }
.primary-button { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #fff; min-height: 45px; padding: 0 18px; border-radius: 11px; font-weight: 800; font-size: 12px; }
.play-small { font-size: 10px; }
.media-visual { height: 385px; border-radius: 22px; overflow: hidden; position: relative; box-shadow: 0 22px 60px rgba(0,0,0,.35); }
.media-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 50%); }
.play-button { position: absolute; z-index: 2; top: 50%; right: 50%; transform: translate(50%,-50%); width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.93); color: var(--gold); box-shadow: 0 10px 35px rgba(0,0,0,.28); padding-right: 4px; transition: .2s; }
.media-visual:hover .play-button { transform: translate(50%,-50%) scale(1.08); }
.duration { position: absolute; z-index: 2; left: 16px; bottom: 14px; padding: 3px 9px; border-radius: 6px; background: rgba(0,0,0,.7); font-size: 10px; }
.quote-banner { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 45px clamp(25px,7vw,95px); text-align: center; position: relative; overflow: hidden; }
.quote-mark { font-family: Georgia, serif; color: var(--gold); font-size: 85px; line-height: .7; opacity: .5; }
.quote-banner blockquote { font-size: clamp(20px,3vw,30px); font-weight: 800; line-height: 1.8; margin: 12px auto; max-width: 880px; }
.quote-banner cite { color: var(--muted); font-style: normal; font-size: 12px; }

/* Footer */
.site-footer { background: #071a2b; color: rgba(255,255,255,.72); padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 55px; padding-bottom: 44px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid h3 { color: #fff; font-size: 14px; margin: 10px 0 8px; }
.footer-grid a { font-size: 12px; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--gold-light); }
.footer-logo { grid-column: auto; justify-self: start; justify-content: flex-start; }
.footer-logo img { width: 64px; height: 64px; }
.footer-logo .brand-copy strong { color: #fff; font-size: 24px; }
.footer-logo .brand-copy small { color: rgba(255,255,255,.52); }
.footer-brand p { max-width: 390px; font-size: 12px; margin: 16px 0; }
.socials { display: flex; gap: 8px; }
.socials a { min-width: 34px; height: 34px; padding: 0 6px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); font-size: 9px; }
.socials a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-bottom { min-height: 60px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: 10px; color: rgba(255,255,255,.45); }
.back-to-top { position: fixed; z-index: 45; left: 22px; bottom: 22px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.toast { position: fixed; z-index: 100; right: 50%; bottom: 28px; transform: translate(50%, 30px); background: var(--ink); color: var(--paper); padding: 11px 18px; border-radius: 10px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: .25s; font-size: 12px; }
.toast.show { opacity: 1; visibility: visible; transform: translate(50%, 0); }

/* Article */
.compact-header .brand-row { min-height: 92px; }
.compact-header .brand img { width: 64px; height: 64px; }
.compact-header .brand-copy strong { font-size: 24px; }
.article-main { padding-top: 46px; }
.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 45px; align-items: start; }
.breadcrumb { color: var(--muted); font-size: 11px; margin-bottom: 25px; }
.breadcrumb a:hover { color: var(--gold); }
.article-header h1 { font-size: clamp(34px, 5.1vw, 58px); line-height: 1.48; letter-spacing: -1.7px; margin: 0 0 17px; max-width: 960px; }
.article-deck { color: var(--muted); font-size: 17px; line-height: 2; max-width: 880px; margin: 0 0 24px; }
.article-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 18px 0; border-top: 1px solid var(--line); }
.author-box { display: flex; align-items: center; gap: 11px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.author-box div:last-child, .article-time { display: flex; flex-direction: column; }
.author-box strong { font-size: 12px; }
.author-box span, .article-time { color: var(--muted); font-size: 10px; }
.article-time { text-align: left; gap: 3px; }
.article-hero { margin: 12px 0 38px; }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 22px; }
.article-hero figcaption, .article-body figcaption { color: var(--muted); font-size: 9px; margin-top: 7px; }
.article-layout { display: grid; grid-template-columns: 58px minmax(0, 760px); gap: 24px; justify-content: center; }
.share-rail { position: sticky; top: 80px; align-self: start; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.share-rail > span { writing-mode: vertical-rl; color: var(--muted); font-size: 9px; margin-bottom: 4px; }
.share-rail button { width: 39px; height: 39px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-size: 9px; }
.share-rail button:hover { border-color: var(--gold); color: var(--gold); }
.article-body { font-size: 16px; line-height: 2.25; }
.article-body p { margin: 0 0 25px; }
.article-body .lead { font-size: 20px; font-weight: 700; color: var(--navy); }
html[data-theme="dark"] .article-body .lead { color: var(--gold-light); }
.article-body h2 { font-size: 28px; line-height: 1.6; margin: 50px 0 13px; position: relative; padding-right: 18px; }
.article-body h2::before { content: ""; position: absolute; right: 0; top: 11px; bottom: 11px; width: 4px; border-radius: 5px; background: var(--gold); }
.article-body blockquote { margin: 35px 0; padding: 27px 30px; background: var(--surface); border-right: 4px solid var(--gold); border-radius: 14px 0 0 14px; font-size: 20px; font-weight: 800; line-height: 2; }
.article-body figure { margin: 38px 0; }
.article-body figure img { border-radius: 18px; width: 100%; }
.article-body ul { background: var(--surface); border-radius: 14px; padding: 22px 44px 22px 22px; }
.article-body li { margin: 5px 0; }
.article-tags { border-top: 1px solid var(--line); margin-top: 45px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 11px; }
.article-tags span { font-weight: 800; }
.article-tags a { border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; color: var(--muted); }
.article-tags a:hover { border-color: var(--gold); color: var(--gold); }
.article-aside { padding-top: 90px; }
.sticky-card { position: sticky; top: 80px; }
.mini-story { display: grid; grid-template-columns: 84px 1fr; gap: 11px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.mini-story:last-child { border-bottom: 0; }
.mini-story img { width: 84px; height: 62px; object-fit: cover; border-radius: 9px; }
.mini-story span { display: flex; flex-direction: column; gap: 3px; }
.mini-story strong { font-size: 11px; line-height: 1.65; }
.mini-story small { color: var(--muted); font-size: 8px; }
.related-section { margin-top: 80px; }

/* Responsive */
@media (max-width: 1050px) {
  .nav-inner { gap: 20px; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .nav-inner::-webkit-scrollbar { display: none; }
  .hero-grid { grid-template-columns: 1.35fr 1fr; }
  .content-layout { grid-template-columns: minmax(0,1fr) 290px; gap: 25px; }
  .news-row { grid-template-columns: 210px 1fr; }
  .article-shell { grid-template-columns: minmax(0,1fr) 260px; gap: 28px; }
}

@media (max-width: 850px) {
  .section-space { padding: 52px 0; }
  .utility-left { display: none; }
  .utility-inner { justify-content: center; }
  .brand-row { min-height: 94px; grid-template-columns: 1fr auto 1fr; }
  .brand img { width: 62px; height: 62px; }
  .brand-copy strong { font-size: 22px; }
  .brand-copy small { font-size: 10px; }
  .mobile-menu-button { display: grid; justify-self: end; }
  .header-actions { justify-self: start; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 330px); transform: translateX(105%); transition: transform .25s ease; border: 0; box-shadow: -20px 0 50px rgba(0,0,0,.18); z-index: 90; padding-top: 90px; }
  body.nav-open .main-nav { transform: translateX(0); }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.48); z-index: 80; }
  .nav-inner { height: 100%; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; overflow-y: auto; padding: 10px 25px; }
  .nav-inner a { padding: 14px 3px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-inner a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { min-height: auto; }
  .hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .side-feature { grid-column: 1 / -1; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr 1fr; }
  .analysis-grid { grid-template-columns: repeat(2, 1fr); }
  .analysis-card:last-child { grid-column: 1 / -1; }
  .media-slide { grid-template-columns: 1fr; gap: 30px; }
  .media-copy { text-align: center; max-width: 680px; margin: 0 auto; }
  .media-visual { height: 360px; }
  .media-slider-controls { justify-content: center; width: 100%; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
  .footer-grid > div:last-child { grid-column: 2; }
  .article-shell { grid-template-columns: 1fr; }
  .article-aside { padding-top: 0; }
  .article-aside .sticky-card { position: static; display: none; }
  .article-header h1 { font-size: clamp(32px, 7vw, 49px); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .utility-right span:last-child, .ticker-time { display: none; }
  .breaking-inner { grid-template-columns: auto 1fr; gap: 10px; }
  .brand-copy { display: none; }
  .brand img { width: 58px; height: 58px; }
  .icon-button { width: 39px; height: 39px; }
  .header-actions { gap: 4px; }
  .site-search button { padding: 0 15px; }
  .site-search svg { display: none; }
  .hero-section { padding-top: 22px; }
  .hero-slider-controls { top: 12px; left: 12px; padding: 5px; }
  .hero-slider-controls .slider-arrow { width: 29px; height: 29px; }
  .hero-main .story-image { min-height: 230px; }
  .hero-content { padding: 20px; }
  .hero-content h1 { font-size: 25px; line-height: 1.6; }
  .hero-content p { display: none; }
  .hero-side { grid-template-columns: 1fr; }
  .side-feature { min-height: 245px; }
  .compact-feature { grid-template-columns: 110px 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .section-heading h2 { font-size: 25px; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; width: 100%; padding-bottom: 3px; scrollbar-width: none; }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tabs button { white-space: nowrap; }
  .news-row { grid-template-columns: 1fr; padding: 12px; }
  .news-thumb { height: 210px; }
  .news-row h3 { font-size: 18px; }
  .news-row p { display: none; }
  .sidebar { grid-template-columns: 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-card:last-child { grid-column: auto; }
  .analysis-image { height: 220px; }
  .multimedia-heading { align-items: flex-start; }
  .multimedia-heading h2 { font-size: 25px; }
  .media-counter { display: none; }
  .media-slide { gap: 22px; }
  .media-copy h3 { font-size: 26px; }
  .media-copy p { font-size: 12px; }
  .media-visual { height: 245px; }
  .play-button { width: 60px; height: 60px; }
  .quote-banner { padding: 35px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; padding: 15px 0; }
  .article-main { padding-top: 26px; }
  .article-header h1 { font-size: 32px; line-height: 1.55; }
  .article-deck { font-size: 14px; }
  .article-meta-row { align-items: flex-start; }
  .article-time { max-width: 120px; }
  .article-hero img { border-radius: 14px; }
  .article-layout { grid-template-columns: 1fr; }
  .share-rail { position: static; flex-direction: row; justify-content: center; order: 2; border-top: 1px solid var(--line); padding-top: 20px; }
  .share-rail > span { writing-mode: initial; margin: 0 0 0 5px; }
  .article-body { font-size: 15px; line-height: 2.15; }
  .article-body .lead { font-size: 18px; }
  .article-body h2 { font-size: 24px; margin-top: 42px; }
  .article-body blockquote { font-size: 17px; padding: 22px; }
  .article-body ul { padding-right: 32px; }
}

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

/* Dynamic CMS additions */
.nav-node { position: relative; display: flex; align-items: center; height: 100%; }
.nav-node > a { display: flex; align-items: center; height: 100%; }
.nav-node.has-dropdown > a::before, .nav-node.has-mega > a::before { content: "⌄"; margin-left: 6px; font-size: 10px; color: var(--gold); }
.mega-menu { position: absolute; top: calc(100% + 1px); right: 0; z-index: 70; width: min(880px, 85vw); padding: 22px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 0 0 16px 16px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(9px); transition: .2s ease; }
.nav-node:hover > .mega-menu, .nav-node:focus-within > .mega-menu, .nav-node.submenu-open > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-cols-2 { --mega-cols: 2; }
.mega-cols-3 { --mega-cols: 3; }
.mega-cols-4 { --mega-cols: 4; }
.mega-cols-5 { --mega-cols: 5; }
.mega-cols-6 { --mega-cols: 6; }

.mega-links { display: grid; grid-template-columns: repeat(var(--mega-cols, 4), minmax(130px, 1fr)); gap: 8px; margin-bottom: 17px; }
.mega-links a { background: var(--surface); border-radius: 9px; padding: 10px 12px !important; border: 0 !important; }
.mega-links a:hover { background: var(--surface-2); color: var(--gold); }
.mega-stories { display: grid; grid-template-columns: repeat(var(--mega-cols, 4), minmax(0, 1fr)); gap: 14px; border-top: 1px solid var(--line); padding-top: 17px; }
.mega-story { display: block !important; height: auto !important; padding: 0 !important; }
.mega-story img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 9px; margin-bottom: 8px; }
.mega-story span { display: block; }
.mega-story small { color: var(--gold); font-size: 9px; }
.mega-story strong { display: block; font-size: 11px; line-height: 1.8; margin-top: 3px; }
.category-links { display: grid; gap: 4px; }
.category-links a { display: flex; justify-content: space-between; align-items: center; padding: 12px 3px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 12px; }
.category-links a:hover { color: var(--gold); padding-right: 8px; }
.popular-section { background: var(--surface); }
.popular-wide { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px 35px; }
.popular-wide li { display: grid; grid-template-columns: 50px 1fr auto; gap: 15px; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); }
.popular-wide a { font-weight: 800; line-height: 1.8; }
.popular-wide a:hover { color: var(--gold); }
.popular-wide small { color: var(--muted); white-space: nowrap; }
.newsletter-wide { display: grid; grid-template-columns: 1fr minmax(300px, .75fr); gap: 45px; align-items: center; text-align: right; }
.newsletter-wide p { margin: 10px 0 0; opacity: .82; }
.newsletter-wide form { display: flex; background: #fff; border-radius: 999px; padding: 6px; }
.newsletter-wide input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 18px; font: inherit; }
.newsletter-wide button { border: 0; border-radius: 999px; background: var(--gold); color: #fff; font: inherit; font-weight: 800; padding: 11px 24px; cursor: pointer; }
.custom-section img { max-width: 100%; height: auto; }
.listing-hero { background: linear-gradient(135deg, var(--surface), var(--paper)); border-bottom: 1px solid var(--line); }
.listing-hero h1 { font-size: clamp(32px, 5vw, 55px); margin: 10px 0 8px; }
.listing-hero p { color: var(--muted); max-width: 700px; }
.archive-search { display: flex; max-width: 650px; margin: 26px 0 22px; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; overflow: hidden; }
.archive-search input { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink); padding: 13px 20px; font: inherit; outline: 0; }
.archive-search button { border: 0; background: var(--navy); color: #fff; font: inherit; font-weight: 800; padding: 0 25px; cursor: pointer; }
.archive-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.archive-tabs a { border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: 11px; }
.archive-tabs a.active, .archive-tabs a:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.archive-list { max-width: 900px; margin: 0 auto; }
.empty-state { text-align: center; padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state h2 { margin: 0 0 8px; }
.empty-state p { color: var(--muted); }
.pagination { display: flex; justify-content: center; gap: 7px; flex-wrap: wrap; padding: 35px 0 5px; list-style: none; }
.pagination li a, .pagination li span { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.pagination li.active a, .pagination li.active span, .pagination li a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination li.disabled span { opacity: .45; }
.page-article { max-width: 900px; margin: 0 auto; }
.page-body { margin-top: 35px; }
.page-body table { width: 100%; border-collapse: collapse; }
.page-body th, .page-body td { border: 1px solid var(--line); padding: 10px; }
.article-body a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
html[data-theme="dark"] .article-body a { color: var(--gold-light); }
.article-body iframe { max-width: 100%; border: 0; border-radius: 12px; }
.back-to-top { position: fixed; left: 22px; bottom: 22px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); cursor: pointer; z-index: 60; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.toast:empty { display: none; }

@media (max-width: 850px) {
  .nav-node { display: block; height: auto; width: 100%; }
  .nav-node > a { height: auto; }
  .nav-node.has-dropdown > a, .nav-node.has-mega > a { padding-left: 35px; }
  .nav-node.has-dropdown > a::before, .nav-node.has-mega > a::before { position: absolute; left: 8px; }
  .mega-menu { position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none; border: 0; border-right: 3px solid var(--gold); border-radius: 0; box-shadow: none; padding: 8px 14px; background: var(--surface); }
  .nav-node.submenu-open > .mega-menu { display: block; }
  .mega-links, .mega-stories { grid-template-columns: 1fr; }
  .mega-stories { display: none; }
  .mega-links { margin: 0; }
  .newsletter-wide { grid-template-columns: 1fr; text-align: center; gap: 25px; }
  .popular-wide { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .archive-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .archive-tabs a { white-space: nowrap; }
  .popular-wide li { grid-template-columns: 38px 1fr; }
  .popular-wide small { grid-column: 2; }
  .newsletter-wide form { border-radius: 15px; flex-direction: column; }
  .newsletter-wide input { min-height: 46px; text-align: center; }
  .newsletter-wide button { border-radius: 10px; }
}

.page-article-wide{max-width:none}.page-article-wide .page-body{max-width:1000px;margin-inline:auto}.wide-cover img{max-height:600px;object-fit:cover}
.pagination>a,.pagination>span{display:grid;place-items:center;min-width:40px;height:40px;padding:0 12px;border:1px solid var(--line);border-radius:10px;background:var(--paper)}.pagination>a.active,.pagination>a:hover{background:var(--navy);color:#fff;border-color:var(--navy)}

.hp-field{position:absolute!important;right:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

.footer-socials{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}.footer-socials a{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:.35rem .7rem;border:1px solid rgba(255,255,255,.2);border-radius:999px}.footer-socials a:hover{background:rgba(255,255,255,.1)}

/* Category news carousel */
.category-carousel { overflow: hidden; direction: rtl; scroll-behavior: smooth; }
.category-carousel-track { display: flex; gap: 22px; transition: transform .35s ease; }
.category-carousel-card { flex: 0 0 calc((100% - (var(--category-visible, 3) - 1) * 22px) / var(--category-visible, 3)); min-width: 0; }
.category-carousel-actions { display: flex; gap: 8px; }
.category-carousel-actions button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--navy); font: inherit; font-size: 20px; cursor: pointer; transition: .2s ease; }
.category-carousel-actions button:hover:not(:disabled) { background: var(--navy); color: #fff; border-color: var(--navy); }
.category-carousel-actions button:disabled { opacity: .35; cursor: default; }
@media (max-width: 900px) { .category-carousel-card { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 560px) { .category-carousel-card { flex-basis: 88%; } .category-carousel-actions button { width: 38px; height: 38px; } }


/* Pointer drag support for site sliders */
[data-slider], .category-carousel { touch-action: pan-y; cursor: grab; user-select: none; -webkit-user-select: none; }
[data-slider].is-dragging, .category-carousel.is-dragging { cursor: grabbing; }
[data-slider] img, .category-carousel img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.category-carousel.is-dragging .category-carousel-track { transition: none !important; }

.category-tile { display: block; color: inherit; text-decoration: none; }
.category-tile .analysis-image { display: block; }
.category-tile-title { display: block; padding: 15px 16px 17px; font-size: 16px; line-height: 1.7; text-align: center; }

/* Improved mega menu */
.mobile-nav-head{display:none}.nav-node-head{display:flex;align-items:center;height:100%}.nav-node-head>a{flex:1}.submenu-toggle{display:none;border:0;background:transparent;color:var(--gold);cursor:pointer}
.mega-menu{right:50%;transform:translate(50%,9px);width:min(1180px,calc(100vw - 48px));padding:0;overflow:hidden;border-radius:0 0 20px 20px}
.nav-node:hover>.mega-menu,.nav-node:focus-within>.mega-menu,.nav-node.submenu-open>.mega-menu{transform:translate(50%,0)}
.mega-menu-head{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 22px;border-bottom:1px solid var(--line);background:var(--surface)}
.mega-menu-head div{display:flex;align-items:center;gap:10px}.mega-menu-head span{font-size:10px;color:var(--muted)}.mega-menu-head strong{font-size:16px}.mega-menu-head>a{color:var(--gold)!important;font-size:11px!important}
.mega-links{padding:18px 22px;margin:0;border-bottom:1px solid var(--line)}.mega-links a{display:flex!important;align-items:center;justify-content:space-between;gap:8px;min-height:45px}.mega-links a b{font-weight:400;opacity:.5;transition:.2s}.mega-links a:hover b{transform:translateX(-4px);opacity:1}
.mega-stories{padding:20px 22px;border:0}.mega-story{display:grid!important;grid-template-columns:110px 1fr;gap:12px;align-items:center;padding:9px!important;border:1px solid transparent!important;border-radius:13px!important;transition:.2s}.mega-story:hover{border-color:var(--line)!important;background:var(--surface)!important;transform:translateY(-2px)}
.mega-story-image{display:block;aspect-ratio:16/10;border-radius:10px;overflow:hidden}.mega-story-image img{width:100%;height:100%;object-fit:cover;margin:0}.mega-story-copy{min-width:0}.mega-story-copy strong{font-size:12px;line-height:1.7;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.mega-story-copy time{display:block;color:var(--muted);font-size:9px;margin-top:5px}
@media(max-width:850px){
 .mobile-nav-head{display:flex;align-items:center;justify-content:space-between;padding:0 18px 16px;border-bottom:1px solid var(--line)}.mobile-nav-head button{width:38px;height:38px;border:1px solid var(--line);border-radius:9px;background:var(--paper);font-size:22px}
 .nav-inner{display:block!important;padding:12px!important;overflow-y:auto;height:100%}.nav-node{height:auto!important;border-bottom:1px solid var(--line)}.nav-node-head{min-height:52px}.nav-node-head>a{padding:13px 8px!important}.submenu-toggle{display:grid;place-items:center;width:42px;height:42px;font-size:18px;transition:.2s}.nav-node.submenu-open .submenu-toggle{transform:rotate(180deg)}
 .mega-menu{position:static;width:100%;transform:none!important;border:0;border-radius:12px;padding:0;margin:0 0 12px;background:var(--surface);overflow:hidden}.mega-menu-head{padding:12px}.mega-menu-head span,.mega-menu-head>a{display:none}.mega-links{padding:8px;grid-template-columns:1fr!important;border:0}.mega-links a{background:var(--paper)!important}.mega-stories{display:grid!important;grid-template-columns:1fr!important;padding:8px;border-top:1px solid var(--line)}.mega-story{grid-template-columns:82px 1fr!important;background:var(--paper)}
}

/* 2026 compact editorial refresh */
.section-space{padding-top:48px;padding-bottom:48px}.section-space+.section-space{padding-top:28px}
.hero-section{padding-top:24px}.container{width:min(1240px,calc(100% - 36px))}
.section-heading{margin-bottom:20px}.content-layout{gap:28px}.news-list{gap:11px}.news-row{padding:12px;gap:18px}.sidebar{gap:14px}.sidebar-card{padding:18px}
.multimedia-heading{margin-bottom:18px}.multimedia{padding-top:52px;padding-bottom:52px}
.media-slider{position:relative}.media-slider-controls{display:none!important}
.media-arrow{position:absolute;z-index:12;top:50%;transform:translateY(-50%);width:44px;height:44px;background:rgba(255,255,255,.92);border-color:rgba(255,255,255,.6);box-shadow:0 8px 24px rgba(4,18,32,.2)}
.media-arrow:hover{transform:translateY(-50%) scale(1.05)}.media-arrow-prev{right:18px}.media-arrow-next{left:18px}
.media-slider-dots{position:absolute;z-index:12;right:22px;bottom:18px;padding:8px 10px;border-radius:999px;background:rgba(4,18,32,.55);backdrop-filter:blur(10px)}
.media-slider-dots button{background:rgba(255,255,255,.55)}.media-slider-dots button.is-active{background:var(--gold)}
/* Multimedia themes */
.multimedia-theme-split .media-slide{grid-template-columns:minmax(280px,.8fr) minmax(0,1.45fr)}
.multimedia-theme-cinema .media-slide{position:relative;display:block;min-height:540px}.multimedia-theme-cinema .media-visual{position:absolute;inset:0;height:100%}.multimedia-theme-cinema .media-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,18,32,.08),rgba(4,18,32,.9))}
.multimedia-theme-cinema .media-copy{position:absolute;z-index:3;right:0;bottom:0;width:min(560px,75%);padding:42px;color:#fff}.multimedia-theme-cinema .media-copy p{color:rgba(255,255,255,.78)}.multimedia-theme-cinema .media-link{color:#fff}
.multimedia-theme-cards .media-slide{grid-template-columns:1fr 1fr;gap:18px;background:transparent}.multimedia-theme-cards .media-copy,.multimedia-theme-cards .media-visual{border-radius:20px;background:var(--paper);border:1px solid var(--line);overflow:hidden}.multimedia-theme-cards .media-copy{padding:34px}.multimedia-theme-cards .media-visual{min-height:390px}
.multimedia-theme-minimal{background:var(--paper);color:var(--ink)}.multimedia-theme-minimal .section-kicker.light{color:var(--gold)}.multimedia-theme-minimal .media-slide{grid-template-columns:minmax(0,1.55fr) minmax(280px,.7fr);background:transparent}.multimedia-theme-minimal .media-visual{order:-1;border-radius:20px;overflow:hidden;min-height:410px}.multimedia-theme-minimal .media-copy{padding:30px 10px}.multimedia-theme-minimal .media-counter{color:var(--muted)}
@media(max-width:850px){.section-space{padding-top:34px;padding-bottom:34px}.section-space+.section-space{padding-top:18px}.container{width:min(100% - 24px,1240px)}.media-arrow{width:38px;height:38px}.media-arrow-prev{right:10px}.media-arrow-next{left:10px}.media-slider-dots{right:12px;bottom:12px}.multimedia-theme-cinema .media-slide{min-height:460px}.multimedia-theme-cinema .media-copy{width:100%;padding:28px 22px 58px}.multimedia-theme-cards .media-slide,.multimedia-theme-minimal .media-slide{grid-template-columns:1fr}.multimedia-theme-minimal .media-visual{order:0;min-height:280px}}

/* Configurable 3x3 header */
.header-layout-row{border-bottom:1px solid var(--line);background:var(--paper)}.header-layout-grid{min-height:58px;display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;gap:18px}.header-slot{display:flex;align-items:center;min-width:0}.header-slot-right{justify-content:flex-start}.header-slot-center{justify-content:center}.header-slot-left{justify-content:flex-end}.header-brand img{width:68px;height:68px}.header-brand .brand-copy strong{font-size:24px}.header-date,.header-tagline,.header-newsletter{font-size:11px;color:var(--muted)}.header-newsletter{color:var(--navy);font-weight:800}.header-slot .main-nav{width:100%;border:0}.header-slot .main-nav .nav-inner{justify-content:center}.site-header>.mobile-menu-button{display:none;position:absolute;right:14px;top:14px;z-index:70}
/* Hero slider controls: arrows at edges, dots bottom-right */
.hero-slider-controls{position:absolute!important;inset:0!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;backdrop-filter:none!important;pointer-events:none}
.hero-slider-controls .slider-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:10;pointer-events:auto;width:42px;height:42px;background:rgba(255,255,255,.92);box-shadow:0 8px 24px rgba(4,18,32,.18)}
.hero-slider-controls [data-prev]{right:16px}.hero-slider-controls [data-next]{left:16px}.hero-slider-controls .slider-dots{position:absolute;right:18px;bottom:16px;z-index:10;pointer-events:auto;padding:7px 9px;border-radius:999px;background:rgba(4,18,32,.48);backdrop-filter:blur(9px)}.hero-slider-controls .slider-dots button{background:rgba(255,255,255,.55)}.hero-slider-controls .slider-dots button.is-active{background:var(--gold)}
/* Minimal graphical mega menu */
.mega-menu{width:min(1040px,calc(100vw - 40px));border:1px solid var(--line);border-top:3px solid var(--gold);border-radius:0 0 16px 16px;box-shadow:0 20px 45px rgba(4,18,32,.13)}
.mega-menu-head{padding:13px 18px;background:var(--paper)}.mega-menu-head span{display:none}.mega-menu-head strong{font-size:14px}.mega-menu-head>a{font-size:10px!important}
.mega-links{padding:12px 16px;gap:5px}.mega-links a{min-height:38px;padding:7px 10px!important;border-radius:9px!important;background:transparent!important}.mega-links a:hover{background:var(--surface)!important;color:var(--navy)!important}.mega-links a b{color:var(--gold)}
.mega-stories{padding:14px 16px;gap:10px}.mega-story{grid-template-columns:82px 1fr;padding:7px!important;border-radius:11px!important}.mega-story-image{border-radius:8px}.mega-story-copy small{color:var(--gold)}.mega-story-copy strong{font-size:11px}
@media(max-width:850px){.site-header>.mobile-menu-button{display:grid}.header-layout-grid{grid-template-columns:1fr;min-height:0;padding-top:8px;padding-bottom:8px}.header-slot{justify-content:center}.header-slot:empty{display:none}.header-slot .main-nav{position:static}.header-slot:has(.main-nav){height:0}.header-brand img{width:54px;height:54px}.header-brand .brand-copy strong{font-size:20px}.hero-slider-controls .slider-arrow{width:36px;height:36px}.hero-slider-controls [data-prev]{right:9px}.hero-slider-controls [data-next]{left:9px}.hero-slider-controls .slider-dots{right:10px;bottom:10px}}

/* Multiple header objects per cell */
.header-slot{gap:10px;flex-wrap:wrap}.header-slot>*{flex:0 0 auto}.header-slot .header-brand{margin:0}.header-slot .icon-button{flex:0 0 44px}.header-slot .main-nav{flex:1 1 100%}.header-slot .header-date,.header-slot .header-tagline,.header-slot .header-newsletter{white-space:nowrap}
@media(max-width:850px){.header-slot{gap:8px;justify-content:center}.header-slot .main-nav{flex-basis:100%}}

/* Compact equal-height hero */
.hero-grid{grid-template-columns:minmax(0,1.68fr) minmax(280px,1fr);gap:18px;align-items:stretch}
.hero-slider,.hero-slider-viewport,.hero-slide,.hero-side-card{height:430px;min-height:430px}
.hero-main{display:block;min-height:0;background:transparent;box-shadow:none}
.hero-image-card{position:relative;display:block;width:100%;height:100%;overflow:hidden;border-radius:18px;background:var(--surface);box-shadow:var(--shadow-sm)}
.hero-image-card>img{width:100%;height:100%;object-fit:cover}
.hero-image-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(4,18,32,.92) 0%,rgba(4,18,32,.44) 36%,rgba(4,18,32,.02) 68%)}
.hero-image-card>.category-pill{position:absolute;z-index:3;top:16px;right:16px}
.hero-overlay-content{position:absolute;z-index:3;right:0;left:0;bottom:0;display:grid;gap:7px;padding:24px 26px;color:#fff}
.hero-overlay-content strong{font-size:clamp(23px,2.8vw,38px);line-height:1.45;max-width:90%;text-shadow:0 2px 12px rgba(0,0,0,.28)}
.hero-side-card .hero-overlay-content{padding:20px}.hero-side-card .hero-overlay-content strong{font-size:20px;max-width:100%}
.hero-overlay-meta{font-size:10px;color:rgba(255,255,255,.72)}
.hero-slider-controls .slider-dots{right:18px;bottom:14px}
.header-layout-row{background:var(--header-row-color,#fff)}
.header-layout-grid{min-height:var(--header-row-height,58px);height:var(--header-row-height,58px)}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr}.hero-slider,.hero-slider-viewport,.hero-slide,.hero-side-card{height:360px;min-height:360px}.hero-side-card{display:none}}
@media(max-width:560px){.hero-slider,.hero-slider-viewport,.hero-slide{height:310px;min-height:310px}.hero-overlay-content{padding:18px 18px 44px}.hero-overlay-content strong{font-size:22px;max-width:100%}.header-layout-grid{height:auto;min-height:var(--header-row-height,58px)}}

/* Header row style persistence and layout correction */
.site-header{position:relative;background:var(--paper)}
.header-layout-row{
  background-color:var(--header-row-color,#fff)!important;
  border-bottom:1px solid rgba(120,135,150,.18);
}
.header-layout-grid{
  height:var(--header-row-height,58px)!important;
  min-height:var(--header-row-height,58px)!important;
  padding-top:0;
  padding-bottom:0;
  grid-template-columns:minmax(0,1fr) minmax(0,1.35fr) minmax(0,1fr);
}
.header-slot{
  height:100%;
  min-width:0;
  align-content:center;
}
.header-slot-right{justify-content:flex-start}
.header-slot-center{justify-content:center}
.header-slot-left{justify-content:flex-end}
.header-slot .header-brand{height:100%;align-items:center}
.header-slot .header-brand img{
  width:auto;
  height:min(64px,calc(var(--header-row-height,72px) - 8px));
  max-width:90px;
  object-fit:contain;
}
.header-slot .header-brand .brand-copy{min-width:0}
.header-slot .main-nav{
  width:auto;
  max-width:100%;
  height:100%;
  flex:0 1 auto;
  border:0!important;
  background:transparent!important;
}
.header-slot .main-nav .nav-inner{
  width:auto;
  height:100%;
  min-height:0;
  padding:0;
  gap:4px;
  border:0;
}
.header-slot .main-nav .nav-node,
.header-slot .main-nav .nav-node-head{height:100%}
.header-slot .main-nav .nav-node-head>a{
  display:flex;
  align-items:center;
  height:100%;
  padding:0 15px;
  white-space:nowrap;
}
.header-slot .main-nav::before,
.header-slot .main-nav::after,
.header-slot .nav-inner::before,
.header-slot .nav-inner::after{display:none!important}
.header-date,.header-tagline,.header-newsletter{
  display:inline-flex;
  align-items:center;
  height:100%;
}
.header-slot:empty{visibility:hidden}
@media(max-width:850px){
  .header-layout-grid{
    height:auto!important;
    min-height:var(--header-row-height,58px)!important;
    grid-template-columns:1fr;
    padding-top:7px;
    padding-bottom:7px;
  }
  .header-slot{height:auto;min-height:0;justify-content:center}
  .header-slot:empty{display:none}
  .header-slot .header-brand img{height:52px}
  .header-slot .main-nav{height:0}
}

/* Header row text/icon colors */
.header-layout-row{color:var(--header-row-text-color,#17212b)}
.header-layout-row a,
.header-layout-row .header-date,
.header-layout-row .header-tagline,
.header-layout-row .header-newsletter,
.header-layout-row .brand-copy strong,
.header-layout-row .brand-copy small{
  color:var(--header-row-text-color,#17212b)!important;
}
.header-layout-row .icon-button,
.header-layout-row .submenu-toggle,
.header-layout-row .nav-child-indicator{
  color:var(--header-row-icon-color,#0b3157)!important;
}
.header-layout-row .icon-button svg,
.header-layout-row .nav-child-indicator svg{
  stroke:currentColor;
}
.header-layout-row .main-nav .nav-node-head>a:hover{
  color:var(--gold)!important;
}
/* Visible child-menu indicator */
.nav-node-head>a{display:flex;align-items:center;gap:5px}
.nav-child-indicator{width:16px;height:16px;display:inline-grid;place-items:center;flex:0 0 16px;transition:transform .2s ease}
.nav-child-indicator svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.nav-node:hover .nav-child-indicator,
.nav-node:focus-within .nav-child-indicator,
.nav-node.submenu-open .nav-child-indicator{transform:rotate(180deg)}
@media(max-width:850px){
  .nav-child-indicator{display:none}
  .submenu-toggle{color:var(--header-row-icon-color,#0b3157)!important}
}

/* Icon-only social links */
.footer-socials{display:flex;align-items:center;gap:8px;margin-top:16px}
.footer-socials a{
  width:40px;height:40px;min-height:0;padding:0;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.04);
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.footer-socials a:hover{transform:translateY(-2px);background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.42)}
.footer-socials svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* Submenus must never show underline or separator lines */
.mega-menu,
.mega-menu-head,
.mega-links,
.mega-stories,
.mega-links a,
.mega-story,
.mega-menu a,
.nav-node .mega-menu{
  text-decoration:none!important;
  border-top:0!important;
  border-bottom:0!important;
}
.mega-menu a::after,
.mega-links a::after,
.mega-story::after{
  display:none!important;
  content:none!important;
}
.mega-links{border:0!important}
.mega-stories{border:0!important}
.mega-links a,
.mega-story{box-shadow:none!important}
@media(max-width:850px){
  .nav-node .mega-menu{border:0!important;border-right:0!important}
  .nav-node .mega-menu a{border:0!important;text-decoration:none!important}
}


/* Remove animated underline from primary navigation */
.main-nav .nav-inner a::after,
.header-slot .main-nav .nav-inner a::after,
.nav-node-head > a::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  transition: none !important;
}
.main-nav .nav-inner a,
.header-slot .main-nav .nav-inner a,
.nav-node-head > a {
  text-decoration: none !important;
  box-shadow: none !important;
}
.main-nav .nav-inner a:hover,
.main-nav .nav-inner a.active,
.main-nav .nav-inner a[aria-current="page"] {
  color: var(--gold) !important;
}

/* Dark-mode fixes for configurable header, main menu and mega menu */
html[data-theme="dark"] .site-header{
  background:#081723;
  color:#eef4f8;
}
html[data-theme="dark"] .header-layout-row{
  border-bottom-color:rgba(255,255,255,.09);
}
html[data-theme="dark"] .header-slot .main-nav{
  background:transparent!important;
  color:inherit;
}
html[data-theme="dark"] .header-slot .main-nav .nav-inner{
  background:transparent!important;
}
html[data-theme="dark"] .header-slot .main-nav .nav-node-head>a{
  color:var(--header-row-text-color,#eef4f8)!important;
}
html[data-theme="dark"] .header-slot .main-nav .nav-node-head>a:hover,
html[data-theme="dark"] .header-slot .main-nav .nav-node-head>a.active,
html[data-theme="dark"] .header-slot .main-nav .nav-node.submenu-open>.nav-node-head>a{
  color:var(--gold-light)!important;
}
html[data-theme="dark"] .header-slot .main-nav .nav-node-head>a::after,
html[data-theme="dark"] .header-slot .main-nav .nav-node-head>a::before,
html[data-theme="dark"] .header-slot .main-nav .nav-inner>a::after,
html[data-theme="dark"] .header-slot .main-nav .nav-inner>a::before{
  display:none!important;
  content:none!important;
}
html[data-theme="dark"] .header-layout-row .icon-button{
  background:#0b2233;
  border-color:rgba(255,255,255,.13);
  color:var(--header-row-icon-color,#d8e6f0)!important;
}
html[data-theme="dark"] .header-layout-row .icon-button:hover{
  background:#102c41;
  border-color:var(--gold);
  color:var(--gold-light)!important;
}
html[data-theme="dark"] .header-layout-row .brand-copy strong,
html[data-theme="dark"] .header-layout-row .brand-copy small,
html[data-theme="dark"] .header-layout-row .header-date,
html[data-theme="dark"] .header-layout-row .header-tagline,
html[data-theme="dark"] .header-layout-row .header-newsletter{
  color:var(--header-row-text-color,#eef4f8)!important;
}

/* Mega menu gets its own readable dark palette */
html[data-theme="dark"] .mega-menu{
  background:#0d2130!important;
  border:1px solid rgba(255,255,255,.10)!important;
  border-top:0!important;
  box-shadow:0 22px 60px rgba(0,0,0,.42)!important;
  color:#eef4f8;
}
html[data-theme="dark"] .mega-menu-head{
  background:#102737!important;
  border:0!important;
}
html[data-theme="dark"] .mega-menu-head strong,
html[data-theme="dark"] .mega-menu-head a{
  color:#f4f7fa!important;
}
html[data-theme="dark"] .mega-menu-head a:hover{
  color:var(--gold-light)!important;
}
html[data-theme="dark"] .mega-links,
html[data-theme="dark"] .mega-stories{
  border:0!important;
  background:transparent!important;
}
html[data-theme="dark"] .mega-links a,
html[data-theme="dark"] .mega-story{
  background:transparent!important;
  color:#e9f0f5!important;
  border:0!important;
  text-decoration:none!important;
}
html[data-theme="dark"] .mega-links a:hover,
html[data-theme="dark"] .mega-story:hover{
  background:#153246!important;
  color:#fff!important;
}
html[data-theme="dark"] .mega-links a b,
html[data-theme="dark"] .mega-story-copy small,
html[data-theme="dark"] .nav-child-indicator{
  color:var(--gold-light)!important;
}
html[data-theme="dark"] .mega-story-copy strong{
  color:#f3f6f8!important;
}
html[data-theme="dark"] .mega-story-copy time{
  color:#9fb1bf!important;
}

/* Search and breaking-news rows remain readable in dark mode */
html[data-theme="dark"] .search-panel{
  background:#0a1b28;
}
html[data-theme="dark"] .site-search{
  background:#102737;
  border-color:rgba(255,255,255,.12);
}
html[data-theme="dark"] .site-search input{
  color:#f4f7fa;
}
html[data-theme="dark"] .breaking{
  background:#0b1d2b;
  border-bottom-color:rgba(255,255,255,.09);
}
html[data-theme="dark"] .ticker-track a{
  color:#e9f0f5;
}
html[data-theme="dark"] .ticker-time{
  color:#9fb1bf;
}

@media(max-width:850px){
  html[data-theme="dark"] .main-nav{
    background:#0d2130!important;
  }
  html[data-theme="dark"] .nav-inner{
    background:#0d2130!important;
  }
  html[data-theme="dark"] .nav-node{
    border-bottom-color:rgba(255,255,255,.08)!important;
  }
  html[data-theme="dark"] .mega-menu{
    background:#102737!important;
    box-shadow:none!important;
  }
  html[data-theme="dark"] .mega-links a,
  html[data-theme="dark"] .mega-story{
    background:#0d2130!important;
  }
}

/* Final dark-header correction: icon buttons and header-row backgrounds */
html[data-theme="dark"] .site-header .header-layout-row{
  background-color:#0b1d2b!important;
  color:#edf4f8!important;
  border-bottom-color:rgba(255,255,255,.08)!important;
}
html[data-theme="dark"] .site-header .header-layout-row:first-of-type{
  background-color:#173968!important;
}
html[data-theme="dark"] .site-header .header-layout-row a,
html[data-theme="dark"] .site-header .header-layout-row .header-date,
html[data-theme="dark"] .site-header .header-layout-row .header-tagline,
html[data-theme="dark"] .site-header .header-layout-row .header-newsletter,
html[data-theme="dark"] .site-header .header-layout-row .brand-copy strong,
html[data-theme="dark"] .site-header .header-layout-row .brand-copy small,
html[data-theme="dark"] .site-header .header-layout-row .nav-node-head>a{
  color:#edf4f8!important;
}
html[data-theme="dark"] .site-header .header-layout-row .icon-button{
  background:#102b3f!important;
  border-color:rgba(255,255,255,.22)!important;
  color:#eef7ff!important;
  box-shadow:0 5px 16px rgba(0,0,0,.22)!important;
}
html[data-theme="dark"] .site-header .header-layout-row .icon-button svg,
html[data-theme="dark"] .site-header .header-layout-row .icon-button svg *{
  stroke:#eef7ff!important;
}
html[data-theme="dark"] .site-header .header-layout-row .icon-button:hover,
html[data-theme="dark"] .site-header .header-layout-row .icon-button:focus-visible{
  background:#173d58!important;
  border-color:#d6a84f!important;
  color:#f2c66f!important;
}
html[data-theme="dark"] .site-header .header-layout-row .icon-button:hover svg,
html[data-theme="dark"] .site-header .header-layout-row .icon-button:hover svg *,
html[data-theme="dark"] .site-header .header-layout-row .icon-button:focus-visible svg,
html[data-theme="dark"] .site-header .header-layout-row .icon-button:focus-visible svg *{
  stroke:#f2c66f!important;
}
html[data-theme="dark"] .site-header .header-layout-row .nav-child-indicator,
html[data-theme="dark"] .site-header .header-layout-row .submenu-toggle{
  color:#f2c66f!important;
}

/* Professional article typography and content flow */
.article-body{font-size:17px;line-height:2.15;color:var(--ink);overflow-wrap:anywhere}
.article-body>*:first-child{margin-top:0}
.article-body>*:last-child{margin-bottom:0}
.article-body p{margin:0 0 1.45em}
.article-body h2{font-size:clamp(25px,3vw,34px);line-height:1.65;margin:2.1em 0 .7em;color:var(--ink);letter-spacing:-.5px}
.article-body h3{font-size:clamp(21px,2.4vw,28px);line-height:1.7;margin:1.8em 0 .65em;color:var(--ink)}
.article-body h4{font-size:20px;line-height:1.75;margin:1.6em 0 .55em;color:var(--ink)}
.article-body strong{font-weight:900;color:var(--ink)}
.article-body em{font-style:italic}
.article-body blockquote{position:relative;margin:2em 0;padding:25px 30px 25px 24px;border-right:5px solid var(--gold);border-radius:14px;background:var(--surface);font-size:19px;font-weight:700;line-height:2;color:var(--ink)}
.article-body blockquote::before{content:"“";position:absolute;left:18px;top:3px;font-family:Georgia,serif;font-size:58px;line-height:1;color:var(--gold);opacity:.35}
.article-body ul,.article-body ol{margin:1.4em 0 1.8em;padding-right:30px}
.article-body li{margin:.55em 0;padding-right:5px}
.article-body li::marker{color:var(--gold);font-weight:900}
.article-body a{color:#1265a8;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:4px}
.article-body a:hover{color:var(--gold)}
.article-body figure{margin:2.2em 0;text-align:center}
.article-body figure img,.article-body>img{display:block;width:auto;max-width:100%;height:auto;margin:2em auto;border-radius:16px;box-shadow:var(--shadow-sm)}
.article-body figcaption{margin-top:10px;color:var(--muted);font-size:11px;line-height:1.8}
.article-body hr{border:0;border-top:1px solid var(--line);margin:2.5em 0}
.article-body table{display:block;width:100%;overflow-x:auto;border-collapse:collapse;margin:2em 0}
.article-body th,.article-body td{padding:12px 14px;border:1px solid var(--line);text-align:right;white-space:nowrap}
.article-body th{background:var(--surface);font-weight:900}
.article-video{margin:2.2em 0;border-radius:16px;overflow:hidden;background:#000;box-shadow:var(--shadow-sm)}
.article-video video{display:block;width:100%;height:auto}
html[data-theme="dark"] .article-body a{color:#72b7ef}
html[data-theme="dark"] .article-body blockquote{background:#102737}
html[data-theme="dark"] .article-body th{background:#102737}
@media(max-width:720px){.article-body{font-size:15.5px;line-height:2.05}.article-body h2{font-size:25px}.article-body h3{font-size:21px}.article-body blockquote{padding:20px 18px;font-size:17px}}

.article-body [style*="text-align: center"]{text-align:center}
.article-body [style*="text-align: left"]{text-align:left}
.article-body [style*="text-align: right"]{text-align:right}
.article-body [style*="background-color"]{padding:1px 4px;border-radius:4px}

/* Quill content classes in published articles */
.article-body .ql-align-center{text-align:center}.article-body .ql-align-left{text-align:left}.article-body .ql-align-right{text-align:right}.article-body .ql-align-justify{text-align:justify}
.article-body .ql-direction-rtl{direction:rtl}.article-body .ql-size-small{font-size:.82em}.article-body .ql-size-large{font-size:1.28em}.article-body .ql-size-huge{font-size:1.6em}
.article-body .ql-indent-1{padding-right:2.5em}.article-body .ql-indent-2{padding-right:5em}.article-body .ql-indent-3{padding-right:7.5em}

/* Editor-controlled article image sizing */
.article-body img.ql-image-size-25{width:25%;max-width:25%}
.article-body img.ql-image-size-50{width:50%;max-width:50%}
.article-body img.ql-image-size-75{width:75%;max-width:75%}
.article-body img.ql-image-size-100{width:100%;max-width:100%}
.article-body img.ql-image-align-right{margin-right:0;margin-left:auto}
.article-body img.ql-image-align-center{margin-right:auto;margin-left:auto}
.article-body img.ql-image-align-left{margin-right:auto;margin-left:0}
@media(max-width:620px){
  .article-body img.ql-image-size-25,
  .article-body img.ql-image-size-50{width:75%;max-width:75%}
  .article-body img.ql-image-size-75,
  .article-body img.ql-image-size-100{width:100%;max-width:100%}
}

/* Hero: one main slider + two stacked side stories */
.hero-grid{
  grid-template-columns:minmax(0,1.68fr) minmax(300px,1fr);
  gap:18px;
  align-items:stretch;
}
.hero-slider,
.hero-slider-viewport,
.hero-slide{
  height:430px;
  min-height:430px;
}
.hero-side-stack{
  height:430px;
  min-height:430px;
  display:grid;
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:14px;
}
.hero-side-stack .hero-side-card{
  height:auto;
  min-height:0;
  overflow:hidden;
}
.hero-side-stack .hero-image-card{
  border-radius:16px;
}
.hero-side-stack .hero-overlay-content{
  padding:16px 18px;
  gap:4px;
}
.hero-side-stack .hero-overlay-content strong{
  max-width:100%;
  font-size:17px;
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.hero-side-stack .hero-image-card>.category-pill{
  top:11px;
  right:11px;
  min-height:25px;
  padding:1px 9px;
  font-size:9px;
}
.hero-side-stack .hero-overlay-meta{
  font-size:9px;
}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-slider,.hero-slider-viewport,.hero-slide{height:360px;min-height:360px}
  .hero-side-stack{
    height:auto;
    min-height:0;
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:none;
  }
  .hero-side-stack .hero-side-card{height:210px}
}
@media(max-width:620px){
  .hero-side-stack{grid-template-columns:1fr}
  .hero-side-stack .hero-side-card{height:190px}
  .hero-side-stack .hero-side-card:nth-child(2){display:none}
}
.article-gallery{margin:35px 0}.article-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.article-gallery-grid figure{margin:0}.article-gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:12px}.article-gallery-grid figcaption{font-size:10px;color:var(--muted);margin-top:5px}@media(max-width:650px){.article-gallery-grid{grid-template-columns:repeat(2,1fr)}}
.footer-socials a span{font-size:12px;font-weight:900;line-height:1}

/* Normal hierarchical dropdown, separate from mega menu */
.normal-submenu{
  position:absolute;
  top:calc(100% + 1px);
  right:0;
  z-index:72;
  width:230px;
  margin:0;
  padding:8px;
  list-style:none;
  background:var(--paper);
  border:1px solid var(--line);
  border-top:3px solid var(--gold);
  border-radius:0 0 13px 13px;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.18s ease;
}
.nav-node:hover > .normal-submenu,
.nav-node:focus-within > .normal-submenu,
.nav-node.submenu-open > .normal-submenu{
  opacity:1;
  visibility:visible;
  transform:none;
}
.normal-submenu li{position:relative}
.normal-submenu li>a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  height:auto;
  padding:9px 11px;
  border-radius:8px;
  font-size:11px;
  line-height:1.8;
}
.normal-submenu li>a:hover{background:var(--surface);color:var(--gold)}
.normal-submenu li>a b{font-size:15px;color:var(--gold)}
.normal-submenu .normal-submenu{
  top:-9px;
  right:calc(100% - 2px);
  border-top-width:1px;
  border-radius:12px;
  transform:translateX(7px);
}
.normal-submenu li:hover>.normal-submenu,
.normal-submenu li:focus-within>.normal-submenu{
  opacity:1;
  visibility:visible;
  transform:none;
}
@media(max-width:850px){
  .normal-submenu,
  .normal-submenu .normal-submenu{
    position:static;
    width:100%;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    border:0;
    border-right:3px solid var(--gold);
    border-radius:0;
    box-shadow:none;
    background:var(--surface);
    padding:5px 13px;
  }
  .nav-node.submenu-open>.normal-submenu{display:block}
  .normal-submenu .normal-submenu{display:block;margin-right:10px;width:calc(100% - 10px)}
}


/* Maintenance mode */
.maintenance-page{min-height:100vh;margin:0;background:linear-gradient(145deg,#eef3f7,#dfe8ef);color:#17212b;font-family:Vazirmatn,Tahoma,sans-serif}
.maintenance-shell{min-height:100vh;display:grid;place-items:center;padding:24px}
.maintenance-card{width:min(520px,100%);padding:42px 34px;text-align:center;border:1px solid rgba(11,49,87,.1);border-radius:22px;background:rgba(255,255,255,.94);box-shadow:0 24px 70px rgba(11,49,87,.14)}
.maintenance-logo{width:92px;height:92px;margin:0 auto 18px;display:grid;place-items:center;border-radius:22px;background:#fff;box-shadow:0 10px 30px rgba(11,49,87,.1)}
.maintenance-logo img{max-width:76px;max-height:76px;object-fit:contain}
.maintenance-status{display:inline-flex;padding:6px 12px;border-radius:999px;background:#edf3f8;color:#0b3157;font-size:12px;font-weight:700}
.maintenance-card h1{margin:16px 0 10px;font-size:28px;color:#0b3157}
.maintenance-card p{margin:0 auto;max-width:420px;line-height:2;color:#5f6d78}
.maintenance-card small{display:block;margin-top:16px;color:#77838d}
.maintenance-progress{height:5px;margin:24px auto 0;overflow:hidden;border-radius:999px;background:#e5ebef}
.maintenance-progress span{display:block;width:42%;height:100%;border-radius:inherit;background:#c99232;animation:maintenanceMove 1.8s ease-in-out infinite alternate}
@keyframes maintenanceMove{from{transform:translateX(0)}to{transform:translateX(-138%)}}


/* Homepage multi-column builder */
.home-builder-columns{display:grid;grid-template-columns:repeat(var(--builder-columns,1),minmax(0,1fr));gap:var(--builder-gap,20px);align-items:start}
.home-builder-columns-1{--builder-columns:1}.home-builder-columns-2{--builder-columns:2}.home-builder-columns-3{--builder-columns:3}.home-builder-columns-4{--builder-columns:4}
.home-builder-column{display:grid;gap:20px;min-width:0}
.home-builder-block{padding:18px;border:1px solid var(--line);border-radius:15px;background:var(--surface);box-shadow:var(--shadow)}
.home-builder-block-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:13px;padding-bottom:9px;border-bottom:1px solid var(--line)}
.home-builder-block h2{margin:0;font-size:18px;color:var(--navy)}
.home-builder-post-list{display:grid;gap:11px}.home-builder-post-list article{display:grid;grid-template-columns:72px minmax(0,1fr);align-items:center;gap:10px;padding-bottom:10px;border-bottom:1px solid var(--line)}
.home-builder-post-list article:last-child{padding-bottom:0;border-bottom:0}.home-builder-post-image{display:block}.home-builder-post-image img{width:72px;height:58px;object-fit:cover;border-radius:9px}
.home-builder-post-list article>div>a{display:block;color:var(--ink);font-size:13px;font-weight:800;line-height:1.75}.home-builder-post-list small{display:block;margin-top:4px;color:var(--muted);font-size:9px}
.home-builder-empty{margin:0;color:var(--muted)}
.home-builder-newsletter{text-align:center;background:linear-gradient(145deg,var(--navy),#154d7b);color:#fff}.home-builder-newsletter h2{color:#fff}.home-builder-newsletter p{opacity:.8}.home-builder-newsletter form{display:flex;gap:7px}.home-builder-newsletter input{flex:1;min-width:0}.home-builder-newsletter button{border:0;border-radius:9px;padding:0 14px;background:var(--gold);color:#fff;font-weight:800}
@media(max-width:1000px){.home-builder-columns-4{grid-template-columns:repeat(2,minmax(0,1fr))}.home-builder-columns-3{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.home-builder-columns-2,.home-builder-columns-3,.home-builder-columns-4{grid-template-columns:1fr}.home-builder-newsletter form{flex-direction:column}.home-builder-newsletter button{min-height:42px}}


/* Legacy blocks inside visual builder */
.home-builder-hero{position:relative;padding:0;overflow:hidden;min-height:280px}
.home-builder-hero-viewport{position:relative;min-height:280px}
.home-builder-hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:.35s}.home-builder-hero-slide.is-active{opacity:1;visibility:visible}
.home-builder-hero-slide a{display:block;position:relative;height:100%;min-height:280px}.home-builder-hero-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.home-builder-hero-slide a>span{position:absolute;right:0;left:0;bottom:0;padding:70px 18px 17px;color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.82))}
.home-builder-hero-slide small{display:block;margin-bottom:5px}.home-builder-hero-slide strong{display:block;font-size:19px;line-height:1.7}
.home-builder-slider-controls{position:absolute;left:12px;bottom:12px;display:flex;gap:5px;z-index:3}.home-builder-slider-controls button{width:32px;height:32px;border:0;border-radius:50%;background:rgba(255,255,255,.9);cursor:pointer}
.home-builder-category-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.home-builder-category-items a{display:flex;align-items:center;gap:8px;padding:7px;border-radius:10px;background:var(--paper);color:var(--ink)}
.home-builder-category-items img{width:48px;height:48px;border-radius:9px;object-fit:cover}.home-builder-category-items strong{font-size:11px}
.home-builder-media-lead{display:block;position:relative;min-height:240px;overflow:hidden;border-radius:12px;color:#fff}.home-builder-media-lead img{width:100%;height:240px;object-fit:cover}
.home-builder-media-lead:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent,rgba(0,0,0,.8))}.home-builder-media-lead>span{position:absolute;z-index:2;right:16px;top:16px;width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.9);color:var(--navy)}
.home-builder-media-lead>strong{position:absolute;z-index:2;right:16px;left:16px;bottom:16px;font-size:17px;line-height:1.7}
.home-builder-custom-html{line-height:2}


/* Asymmetric homepage builder layouts */
.home-builder-layout-right-wide{grid-template-columns:2fr 1fr}
.home-builder-layout-left-wide{grid-template-columns:1fr 2fr}
.home-builder-layout-right-extra-wide{grid-template-columns:3fr 1fr}
.home-builder-layout-left-extra-wide{grid-template-columns:1fr 3fr}
.home-builder-layout-right-wide-3{grid-template-columns:2fr 1fr 1fr}
.home-builder-layout-left-wide-3{grid-template-columns:1fr 1fr 2fr}
@media(max-width:1000px){
  .home-builder-layout-right-wide-3,
  .home-builder-layout-left-wide-3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .home-builder-layout-right-wide,
  .home-builder-layout-left-wide,
  .home-builder-layout-right-extra-wide,
  .home-builder-layout-left-extra-wide,
  .home-builder-layout-right-wide-3,
  .home-builder-layout-left-wide-3{grid-template-columns:1fr}
}


/* Unified homepage news blocks */
.builder-news-list article{display:grid;grid-template-columns:110px minmax(0,1fr);gap:12px;padding:12px 0;border-bottom:1px solid var(--line)}
.builder-news-list article:last-child{border-bottom:0}.builder-news-list-compact article{grid-template-columns:72px minmax(0,1fr);padding:9px 0}
.builder-news-list article:has(.builder-list-image)+article{}.builder-news-list article>div{min-width:0}
.builder-list-image img{width:110px;height:88px;object-fit:cover;border-radius:10px}.builder-news-list-compact .builder-list-image img{width:72px;height:58px}
.builder-news-list h3{margin:2px 0;font-size:14px;line-height:1.75}.builder-news-list-compact h3{font-size:12px}
.builder-news-list h3 a{color:var(--ink)}.builder-news-list p{margin:5px 0;color:var(--muted);font-size:11px;line-height:1.9}
.builder-news-list article span,.builder-news-grid article span,.builder-news-slide>div>span{color:var(--gold);font-size:9px}
.builder-news-tabs{display:flex;gap:5px;overflow:auto;margin:-3px 0 10px;padding-bottom:3px}.builder-news-tabs button{white-space:nowrap;border:1px solid var(--line);border-radius:999px;background:#f7f9fb;padding:5px 10px;font-size:9px;cursor:pointer}
.builder-news-tabs button.is-active{border-color:var(--navy);background:var(--navy);color:#fff}.builder-tab-panel{display:none}.builder-tab-panel.is-active{display:block}
.builder-post-actions{display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-top:7px}.builder-post-kind{padding:3px 7px;border-radius:999px;background:#eef3f6!important;color:var(--navy)!important;font-size:8px!important}
.builder-media-open{border:0;border-radius:7px;padding:4px 8px;background:#fff3d9;color:#865c0d;font:inherit;font-size:8px;cursor:pointer}
.builder-news-slider{position:relative;overflow:hidden}.builder-news-slider-viewport{position:relative;min-height:330px}.builder-news-slide{position:absolute;inset:0;display:grid;grid-template-columns:1.15fr 1fr;gap:18px;align-items:center;opacity:0;visibility:hidden;transition:.3s}
.builder-news-slide.is-active{opacity:1;visibility:visible}.builder-news-slide>img{width:100%;height:300px;object-fit:cover;border-radius:12px}.builder-news-slide h3{font-size:20px;line-height:1.75;margin:7px 0}.builder-news-slide h3 a{color:var(--ink)}.builder-news-slide p{color:var(--muted);line-height:2}
.builder-inline-slider-controls{display:flex;justify-content:flex-end;gap:5px;margin-top:9px}.builder-inline-slider-controls button,.builder-slider-prev,.builder-slider-next{width:35px;height:35px;border:0;border-radius:50%;background:#eef3f6;cursor:pointer}
.builder-hero-slider{position:relative;min-height:520px;overflow:hidden;border-radius:18px}.builder-hero-viewport{position:relative;min-height:520px}.builder-hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:.4s}.builder-hero-slide.is-active{opacity:1;visibility:visible}
.builder-hero-slide>img{width:100%;height:520px;object-fit:cover}.builder-hero-shade{position:absolute;inset:0;background:linear-gradient(transparent 25%,rgba(4,18,32,.88))}
.builder-hero-copy{position:absolute;right:5%;left:5%;bottom:9%;color:#fff}.builder-hero-copy>span{font-size:11px;color:#f2c867}.builder-hero-copy h2{max-width:850px;margin:8px 0;font-size:34px;line-height:1.6}.builder-hero-copy h2 a{color:#fff}
.builder-slider-prev,.builder-slider-next{position:absolute;z-index:4;bottom:8%;background:rgba(255,255,255,.92)}.builder-slider-prev{left:6%}.builder-slider-next{left:calc(6% + 43px)}
.builder-news-grid-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.builder-news-grid article{min-width:0}.builder-grid-image{display:block}.builder-grid-image img{width:100%;height:170px;object-fit:cover;border-radius:11px}.builder-news-grid h3{margin:6px 0;font-size:14px;line-height:1.75}.builder-news-grid h3 a{color:var(--ink)}.builder-news-grid p{color:var(--muted);font-size:10px;line-height:1.9}
.builder-grid-lead-four .is-lead{grid-row:span 2}.builder-grid-lead-four .is-lead .builder-grid-image img{height:380px}.builder-grid-lead-four .is-lead h3{font-size:20px}
.builder-grid-two-lead .builder-news-grid-items{grid-template-columns:repeat(2,1fr)}.builder-grid-two-lead article:nth-child(n+3){display:none}.builder-grid-two-lead .builder-grid-image img{height:270px}
.builder-grid-magazine .builder-news-grid-items{grid-template-columns:2fr 1fr 1fr}.builder-grid-magazine .is-lead{grid-row:span 2}.builder-grid-magazine .is-lead .builder-grid-image img{height:360px}
.builder-grid-cards .builder-news-grid-items{grid-template-columns:repeat(3,minmax(0,1fr))}
.builder-media-modal{position:fixed;inset:0;z-index:250;display:grid;place-items:center;padding:22px;background:rgba(3,12,22,.82)}.builder-media-modal[hidden]{display:none}.builder-media-dialog{position:relative;width:min(1050px,96vw);max-height:90vh;overflow:auto;padding:20px;border-radius:16px;background:#fff}
.builder-media-dialog h2{margin:0 0 14px;padding-left:45px;font-size:17px}.builder-media-close{position:absolute;left:12px;top:11px;width:34px;height:34px;border:0;border-radius:9px;background:#eef2f5;font-size:22px;cursor:pointer}
.builder-media-dialog video{display:block;width:100%;max-height:72vh;background:#000;border-radius:12px}.builder-media-dialog audio{display:block;width:100%;margin:35px 0}
.builder-modal-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.builder-modal-gallery figure{margin:0}.builder-modal-gallery img{display:block;width:100%;max-height:70vh;object-fit:contain;border-radius:11px;background:#f1f3f5}.builder-modal-gallery figcaption{padding:7px;color:var(--muted);font-size:10px;text-align:center}
body.builder-modal-open{overflow:hidden}
@media(max-width:800px){.builder-news-slide{grid-template-columns:1fr}.builder-news-slider-viewport{min-height:520px}.builder-news-slide>img{height:260px}.builder-hero-slider,.builder-hero-viewport{min-height:420px}.builder-hero-slide>img{height:420px}.builder-hero-copy h2{font-size:25px}.builder-grid-magazine .builder-news-grid-items,.builder-grid-cards .builder-news-grid-items{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.builder-news-list article,.builder-news-list-compact article{grid-template-columns:72px minmax(0,1fr)}.builder-list-image img,.builder-news-list-compact .builder-list-image img{width:72px;height:62px}.builder-news-list-large article{grid-template-columns:1fr}.builder-news-list-large .builder-list-image img{width:100%;height:210px}.builder-news-grid-items,.builder-grid-magazine .builder-news-grid-items,.builder-grid-cards .builder-news-grid-items{grid-template-columns:1fr}.builder-grid-lead-four .is-lead{grid-row:auto}.builder-grid-lead-four .is-lead .builder-grid-image img{height:230px}.builder-modal-gallery{grid-template-columns:1fr}}


/* Multi-item news slider pages */
.builder-news-slider-viewport{min-height:360px}
.builder-news-slide-page{position:absolute;inset:0;display:grid;grid-template-columns:repeat(var(--builder-slider-visible,1),minmax(0,1fr));gap:14px;align-items:stretch;opacity:0;visibility:hidden;transition:.3s}
.builder-news-slide-page.is-active{opacity:1;visibility:visible}
.builder-news-slide-page .builder-news-slide{position:relative;inset:auto;display:flex;flex-direction:column;gap:10px;align-items:stretch;opacity:1;visibility:visible;padding:0;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--paper)}
.builder-news-slide-page .builder-news-slide>img{width:100%;height:190px;border-radius:0;object-fit:cover}
.builder-news-slide-page .builder-news-slide>div{padding:12px}.builder-news-slide-page .builder-news-slide h3{font-size:14px}
@media(max-width:900px){.builder-news-slide-page{grid-template-columns:repeat(min(2,var(--builder-slider-visible,1)),minmax(0,1fr))}}
@media(max-width:620px){.builder-news-slide-page{grid-template-columns:1fr}.builder-news-slider-viewport{min-height:430px}}


/* Builder tabs aligned with section title */
.builder-news-head-with-tabs{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.builder-news-head-with-tabs h2{margin:0;flex:0 0 auto}
.builder-news-head-with-tabs .builder-news-tabs{display:flex;align-items:center;justify-content:flex-end;gap:6px;min-width:0;max-width:72%;margin:0;margin-inline-start:auto;padding:0 0 2px;overflow-x:auto;scrollbar-width:thin}
.builder-news-head-with-tabs .builder-news-tabs button{flex:0 0 auto;white-space:nowrap;padding:5px 11px;border:1px solid var(--line);border-radius:999px;background:#f7f9fb;color:var(--muted);font-size:9px;line-height:1.4;cursor:pointer;transition:.16s}
.builder-news-head-with-tabs .builder-news-tabs button:hover{border-color:#aebbc5;background:#eef3f6;color:var(--ink)}
.builder-news-head-with-tabs .builder-news-tabs button.is-active{border-color:var(--navy);background:var(--navy);color:#fff}
.builder-news-head-with-tabs .builder-news-tabs button[data-builder-tab="all"]{font-weight:800}
@media(max-width:700px){
  .builder-news-head-with-tabs{align-items:flex-start}
  .builder-news-head-with-tabs .builder-news-tabs{flex:1 1 100%;max-width:100%;justify-content:flex-start;margin-inline-start:0}
}


/* Large news list and configurable hover effects */
.builder-news-list-large article{grid-template-columns:190px minmax(0,1fr);gap:18px;align-items:start;padding:16px 0}
.builder-news-list-large .builder-list-image img{width:190px;height:138px;border-radius:12px;object-fit:cover}
.builder-news-list-large h3{font-size:17px;line-height:1.8;margin:4px 0 7px}
.builder-news-list-large p{display:block;margin:6px 0 8px;font-size:11px;line-height:2;color:var(--muted)}
.builder-news-list-large article>div>span{display:inline-block;margin-bottom:2px}

@media(max-width:700px){
  .builder-news-list-large article{grid-template-columns:120px minmax(0,1fr);gap:12px}
  .builder-news-list-large .builder-list-image img{width:120px;height:92px}
  .builder-news-list-large h3{font-size:14px}
}
@media(max-width:520px){
  .builder-news-list-large article{grid-template-columns:1fr}
  .builder-news-list-large .builder-list-image img{width:100%;height:220px}
}


/* Image-only hover effects */
.builder-list-image,
.builder-grid-image,
.builder-news-slide>img,
.builder-news-slide-page .builder-news-slide>img,
.builder-hero-slide{
  position:relative;
  overflow:hidden;
}
.builder-list-image img,
.builder-grid-image img,
.builder-news-slide>img,
.builder-news-slide-page .builder-news-slide>img,
.builder-hero-slide>img{
  display:block;
  transition:transform .42s cubic-bezier(.2,.7,.2,1),filter .35s ease;
  will-change:transform;
}

.builder-hover-zoom .builder-list-image:hover img,
.builder-hover-zoom .builder-grid-image:hover img,
.builder-hover-zoom .builder-news-slide:hover>img,
.builder-hover-zoom .builder-news-slide-page .builder-news-slide:hover>img,
.builder-hover-zoom .builder-hero-slide:hover>img,
.builder-hover-zoom-shine .builder-list-image:hover img,
.builder-hover-zoom-shine .builder-grid-image:hover img,
.builder-hover-zoom-shine .builder-news-slide:hover>img,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide:hover>img,
.builder-hover-zoom-shine .builder-hero-slide:hover>img{
  transform:scale(1.065);
}

.builder-hover-shine .builder-list-image::after,
.builder-hover-shine .builder-grid-image::after,
.builder-hover-shine .builder-news-slide::after,
.builder-hover-shine .builder-news-slide-page .builder-news-slide::after,
.builder-hover-shine .builder-hero-slide::after,
.builder-hover-zoom-shine .builder-list-image::after,
.builder-hover-zoom-shine .builder-grid-image::after,
.builder-hover-zoom-shine .builder-news-slide::after,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide::after,
.builder-hover-zoom-shine .builder-hero-slide::after{
  content:"";
  position:absolute;
  top:-35%;
  right:-65%;
  width:42%;
  height:170%;
  pointer-events:none;
  opacity:0;
  transform:skewX(-22deg);
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.12) 28%,
    rgba(255,255,255,.72) 50%,
    rgba(255,255,255,.12) 72%,
    rgba(255,255,255,0) 100%
  );
  z-index:3;
}
.builder-hover-shine .builder-list-image:hover::after,
.builder-hover-shine .builder-grid-image:hover::after,
.builder-hover-shine .builder-news-slide:hover::after,
.builder-hover-shine .builder-news-slide-page .builder-news-slide:hover::after,
.builder-hover-shine .builder-hero-slide:hover::after,
.builder-hover-zoom-shine .builder-list-image:hover::after,
.builder-hover-zoom-shine .builder-grid-image:hover::after,
.builder-hover-zoom-shine .builder-news-slide:hover::after,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide:hover::after,
.builder-hover-zoom-shine .builder-hero-slide:hover::after{
  animation:builderImageShine .85s ease-out;
}
@keyframes builderImageShine{
  0%{right:-65%;opacity:0}
  18%{opacity:1}
  100%{right:125%;opacity:0}
}

.builder-hover-grayscale .builder-list-image img,
.builder-hover-grayscale .builder-grid-image img,
.builder-hover-grayscale .builder-news-slide>img,
.builder-hover-grayscale .builder-news-slide-page .builder-news-slide>img,
.builder-hover-grayscale .builder-hero-slide>img{
  filter:grayscale(1) saturate(.25);
}
.builder-hover-grayscale .builder-list-image:hover img,
.builder-hover-grayscale .builder-grid-image:hover img,
.builder-hover-grayscale .builder-news-slide:hover>img,
.builder-hover-grayscale .builder-news-slide-page .builder-news-slide:hover>img,
.builder-hover-grayscale .builder-hero-slide:hover>img{
  filter:grayscale(0) saturate(1);
}

.builder-hover-none .builder-list-image img,
.builder-hover-none .builder-grid-image img,
.builder-hover-none .builder-news-slide>img,
.builder-hover-none .builder-news-slide-page .builder-news-slide>img,
.builder-hover-none .builder-hero-slide>img{
  transition:none!important;
  transform:none!important;
  filter:none!important;
}
.builder-hover-none .builder-list-image::after,
.builder-hover-none .builder-grid-image::after,
.builder-hover-none .builder-news-slide::after,
.builder-hover-none .builder-news-slide-page .builder-news-slide::after,
.builder-hover-none .builder-hero-slide::after{
  display:none!important;
}

@media(prefers-reduced-motion:reduce){
  .builder-hover-shine .builder-list-image::after,
  .builder-hover-shine .builder-grid-image::after,
  .builder-hover-shine .builder-news-slide::after,
  .builder-hover-shine .builder-hero-slide::after,
  .builder-hover-zoom-shine .builder-list-image::after,
  .builder-hover-zoom-shine .builder-grid-image::after,
  .builder-hover-zoom-shine .builder-news-slide::after,
  .builder-hover-zoom-shine .builder-hero-slide::after{
    animation:none!important;
  }
}


/* Refined image shine, rounded zoom and subtle news-card shadow */
.builder-list-image,
.builder-grid-image,
.builder-news-slide>img,
.builder-news-slide-page .builder-news-slide>img,
.builder-hero-slide{
  border-radius:inherit;
}

.builder-list-image,
.builder-grid-image{
  display:block;
  isolation:isolate;
  border-radius:12px;
  overflow:hidden;
}

.builder-news-slide,
.builder-news-slide-page .builder-news-slide{
  isolation:isolate;
  overflow:hidden;
}

.builder-news-slide>img,
.builder-news-slide-page .builder-news-slide>img{
  border-radius:inherit;
  overflow:hidden;
}

.builder-hero-slide{
  isolation:isolate;
  border-radius:inherit;
  overflow:hidden;
}

/* Keep zoomed images clipped to the original rounded frame. */
.builder-hover-zoom .builder-list-image,
.builder-hover-zoom .builder-grid-image,
.builder-hover-zoom-shine .builder-list-image,
.builder-hover-zoom-shine .builder-grid-image{
  transform:translateZ(0);
  -webkit-mask-image:-webkit-radial-gradient(white,black);
}

.builder-hover-zoom .builder-list-image img,
.builder-hover-zoom .builder-grid-image img,
.builder-hover-zoom .builder-news-slide>img,
.builder-hover-zoom .builder-news-slide-page .builder-news-slide>img,
.builder-hover-zoom .builder-hero-slide>img,
.builder-hover-zoom-shine .builder-list-image img,
.builder-hover-zoom-shine .builder-grid-image img,
.builder-hover-zoom-shine .builder-news-slide>img,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide>img,
.builder-hover-zoom-shine .builder-hero-slide>img{
  border-radius:inherit;
  transform-origin:center;
}

/* Shine is attached only to the visual frame, never to the text/card body. */
.builder-hover-shine .builder-list-image::after,
.builder-hover-shine .builder-grid-image::after,
.builder-hover-shine .builder-hero-slide::after,
.builder-hover-zoom-shine .builder-list-image::after,
.builder-hover-zoom-shine .builder-grid-image::after,
.builder-hover-zoom-shine .builder-hero-slide::after{
  top:-28%;
  right:-82%;
  width:68%;
  height:156%;
  opacity:0;
  filter:blur(5px);
  transform:skewX(-20deg);
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.07) 18%,
    rgba(255,255,255,.25) 38%,
    rgba(255,255,255,.52) 50%,
    rgba(255,255,255,.25) 62%,
    rgba(255,255,255,.07) 82%,
    rgba(255,255,255,0) 100%
  );
}

/* Remove the old shine layer from whole slider cards. */
.builder-hover-shine .builder-news-slide::after,
.builder-hover-shine .builder-news-slide-page .builder-news-slide::after,
.builder-hover-zoom-shine .builder-news-slide::after,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide::after{
  display:none!important;
}

/* Add a dedicated shine layer directly over slider images. */
.builder-news-slide,
.builder-news-slide-page .builder-news-slide{
  position:relative;
}
.builder-hover-shine .builder-news-slide::before,
.builder-hover-shine .builder-news-slide-page .builder-news-slide::before,
.builder-hover-zoom-shine .builder-news-slide::before,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide::before{
  content:"";
  position:absolute;
  z-index:4;
  top:0;
  right:0;
  width:100%;
  height:190px;
  pointer-events:none;
  border-radius:inherit;
  overflow:hidden;
  opacity:0;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 26%,
      rgba(255,255,255,.08) 36%,
      rgba(255,255,255,.48) 49%,
      rgba(255,255,255,.08) 62%,
      transparent 72%,
      transparent 100%
    );
  background-size:220% 100%;
  background-position:145% 0;
  filter:blur(2px);
}

.builder-hover-shine .builder-list-image:hover::after,
.builder-hover-shine .builder-grid-image:hover::after,
.builder-hover-shine .builder-hero-slide:hover::after,
.builder-hover-zoom-shine .builder-list-image:hover::after,
.builder-hover-zoom-shine .builder-grid-image:hover::after,
.builder-hover-zoom-shine .builder-hero-slide:hover::after{
  animation:builderImageShineSoft 1.15s cubic-bezier(.22,.61,.36,1);
}

.builder-hover-shine .builder-news-slide:hover::before,
.builder-hover-shine .builder-news-slide-page .builder-news-slide:hover::before,
.builder-hover-zoom-shine .builder-news-slide:hover::before,
.builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide:hover::before{
  animation:builderSliderImageShineSoft 1.15s cubic-bezier(.22,.61,.36,1);
}

@keyframes builderImageShineSoft{
  0%{right:-82%;opacity:0}
  14%{opacity:.38}
  48%{opacity:.8}
  100%{right:132%;opacity:0}
}
@keyframes builderSliderImageShineSoft{
  0%{background-position:145% 0;opacity:0}
  15%{opacity:.35}
  48%{opacity:.78}
  100%{background-position:-45% 0;opacity:0}
}

/* A very light shadow for news cards without moving the card itself. */
.builder-news-list article,
.builder-news-grid article,
.builder-news-slide-page .builder-news-slide{
  border-radius:12px;
  box-shadow:0 4px 14px rgba(8,31,48,.055);
  transition:box-shadow .24s ease,border-color .24s ease;
}

.builder-news-list article{
  padding-inline:10px;
}

.builder-news-list article:hover,
.builder-news-grid article:hover,
.builder-news-slide-page .builder-news-slide:hover{
  box-shadow:0 7px 20px rgba(8,31,48,.085);
}

@media(max-width:620px){
  .builder-hover-shine .builder-news-slide::before,
  .builder-hover-shine .builder-news-slide-page .builder-news-slide::before,
  .builder-hover-zoom-shine .builder-news-slide::before,
  .builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide::before{
    height:220px;
  }
}

@media(prefers-reduced-motion:reduce){
  .builder-hover-shine .builder-list-image:hover::after,
  .builder-hover-shine .builder-grid-image:hover::after,
  .builder-hover-shine .builder-hero-slide:hover::after,
  .builder-hover-zoom-shine .builder-list-image:hover::after,
  .builder-hover-zoom-shine .builder-grid-image:hover::after,
  .builder-hover-zoom-shine .builder-hero-slide:hover::after,
  .builder-hover-shine .builder-news-slide:hover::before,
  .builder-hover-shine .builder-news-slide-page .builder-news-slide:hover::before,
  .builder-hover-zoom-shine .builder-news-slide:hover::before,
  .builder-hover-zoom-shine .builder-news-slide-page .builder-news-slide:hover::before{
    animation:none!important;
  }
}


/* News grid content overlay for equal-height visual cards */
.builder-news-grid .builder-news-grid-items{
  align-items:stretch;
}

.builder-news-grid .builder-news-grid-items article{
  position:relative;
  display:block;
  min-height:230px;
  overflow:hidden;
  border-radius:14px;
  background:#17344e;
  isolation:isolate;
}

.builder-news-grid .builder-news-grid-items article.is-lead{
  min-height:472px;
}

.builder-news-grid .builder-grid-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border-radius:inherit;
  overflow:hidden;
}

.builder-news-grid .builder-grid-image img{
  width:100%;
  height:100%!important;
  min-height:100%;
  border-radius:inherit;
  object-fit:cover;
}

.builder-news-grid .builder-news-grid-items article::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(4,17,29,.03) 20%,
      rgba(4,17,29,.18) 48%,
      rgba(4,17,29,.88) 100%
    );
}

.builder-news-grid .builder-news-grid-items article>div{
  position:absolute;
  z-index:2;
  right:0;
  left:0;
  bottom:0;
  padding:52px 16px 15px;
  color:#fff;
  background:linear-gradient(transparent,rgba(4,17,29,.12));
}

.builder-news-grid .builder-news-grid-items article>div>span{
  display:inline-block;
  margin-bottom:4px;
  color:#f2c867;
  font-size:9px;
}

.builder-news-grid .builder-news-grid-items h3{
  margin:2px 0 0;
  font-size:15px;
  line-height:1.75;
}

.builder-news-grid .builder-news-grid-items article.is-lead h3{
  font-size:22px;
  line-height:1.65;
}

.builder-news-grid .builder-news-grid-items h3 a{
  color:#fff;
}

.builder-news-grid .builder-news-grid-items p{
  display:-webkit-box;
  margin:7px 0 0;
  overflow:hidden;
  color:rgba(255,255,255,.82);
  font-size:10px;
  line-height:1.9;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}

.builder-news-grid .builder-post-actions{
  margin-top:8px;
}

.builder-news-grid .builder-post-kind{
  background:rgba(255,255,255,.14)!important;
  color:#fff!important;
  backdrop-filter:blur(6px);
}

.builder-news-grid .builder-media-open{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(7px);
}

.builder-grid-lead-four .builder-news-grid-items article:not(.is-lead){
  min-height:230px;
}

.builder-grid-two-lead .builder-news-grid-items article{
  min-height:360px;
}

.builder-grid-magazine .builder-news-grid-items article{
  min-height:230px;
}

.builder-grid-magazine .builder-news-grid-items article.is-lead{
  min-height:472px;
}

.builder-grid-cards .builder-news-grid-items article{
  min-height:270px;
}

.builder-news-grid.builder-hover-zoom .builder-grid-image:hover img,
.builder-news-grid.builder-hover-zoom-shine .builder-grid-image:hover img,
.builder-news-grid.builder-hover-zoom article:hover .builder-grid-image img,
.builder-news-grid.builder-hover-zoom-shine article:hover .builder-grid-image img{
  transform:scale(1.055);
}

@media(max-width:900px){
  .builder-news-grid .builder-news-grid-items article.is-lead,
  .builder-grid-magazine .builder-news-grid-items article.is-lead{
    min-height:360px;
  }
}

@media(max-width:620px){
  .builder-news-grid .builder-news-grid-items article,
  .builder-grid-lead-four .builder-news-grid-items article:not(.is-lead),
  .builder-grid-two-lead .builder-news-grid-items article,
  .builder-grid-magazine .builder-news-grid-items article,
  .builder-grid-cards .builder-news-grid-items article{
    min-height:260px;
  }

  .builder-news-grid .builder-news-grid-items article.is-lead,
  .builder-grid-magazine .builder-news-grid-items article.is-lead{
    min-height:320px;
  }

  .builder-news-grid .builder-news-grid-items article.is-lead h3{
    font-size:18px;
  }
}



/* Hover triggers from entire card instead of image only */
.builder-news-list.builder-hover-zoom article:hover .builder-list-image img,
.builder-news-list.builder-hover-zoom-shine article:hover .builder-list-image img,
.builder-news-grid.builder-hover-zoom article:hover .builder-grid-image img,
.builder-news-grid.builder-hover-zoom-shine article:hover .builder-grid-image img,
.builder-news-slider.builder-hover-zoom .builder-news-slide:hover>img,
.builder-news-slider.builder-hover-zoom-shine .builder-news-slide:hover>img,
.builder-hero-slider.builder-hover-zoom:hover .builder-hero-slide.is-active>img,
.builder-hero-slider.builder-hover-zoom-shine:hover .builder-hero-slide.is-active>img{
    transform:scale(1.065);
}

.builder-news-list.builder-hover-shine article:hover .builder-list-image::after,
.builder-news-list.builder-hover-zoom-shine article:hover .builder-list-image::after,
.builder-news-grid.builder-hover-shine article:hover .builder-grid-image::after,
.builder-news-grid.builder-hover-zoom-shine article:hover .builder-grid-image::after,
.builder-hero-slider.builder-hover-shine:hover .builder-hero-slide.is-active::after,
.builder-hero-slider.builder-hover-zoom-shine:hover .builder-hero-slide.is-active::after{
    animation:builderImageShineSoft 1.15s cubic-bezier(.22,.61,.36,1);
}

.builder-news-slider.builder-hover-shine .builder-news-slide:hover::before,
.builder-news-slider.builder-hover-zoom-shine .builder-news-slide:hover::before{
    animation:builderSliderImageShineSoft 1.15s cubic-bezier(.22,.61,.36,1);
}


/* Exact three news-grid models */
.builder-news-grid .builder-news-grid-items{
  display:grid;
  direction:ltr;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-template-rows:repeat(2,220px);
  gap:12px;
  min-height:452px;
}

.builder-news-grid .builder-news-grid-items article{
  direction:rtl;
  min-width:0;
  min-height:0!important;
  height:auto;
}

/* First item is always the large card on the physical right. */
.builder-news-grid .builder-news-grid-items article:nth-child(1){
  grid-area:lead;
}

/* Model 1: large right + four square cards on the left. */
.builder-grid-lead-four .builder-news-grid-items{
  grid-template-areas:
    "small-1 small-2 lead lead"
    "small-3 small-4 lead lead";
}

.builder-grid-lead-four .builder-news-grid-items article:nth-child(2){grid-area:small-1}
.builder-grid-lead-four .builder-news-grid-items article:nth-child(3){grid-area:small-2}
.builder-grid-lead-four .builder-news-grid-items article:nth-child(4){grid-area:small-3}
.builder-grid-lead-four .builder-news-grid-items article:nth-child(5){grid-area:small-4}
.builder-grid-lead-four .builder-news-grid-items article:nth-child(n+6){display:none}

/* Model 2: large right + two stacked cards forming one square on the left. */
.builder-grid-lead-two-stack .builder-news-grid-items{
  grid-template-areas:
    "small-1 small-1 lead lead"
    "small-2 small-2 lead lead";
}

.builder-grid-lead-two-stack .builder-news-grid-items article:nth-child(2){grid-area:small-1}
.builder-grid-lead-two-stack .builder-news-grid-items article:nth-child(3){grid-area:small-2}
.builder-grid-lead-two-stack .builder-news-grid-items article:nth-child(n+4){display:none}

/* Model 3: large right + one wide card above two square cards on the left. */
.builder-grid-lead-one-two .builder-news-grid-items{
  grid-template-areas:
    "top top lead lead"
    "bottom-1 bottom-2 lead lead";
}

.builder-grid-lead-one-two .builder-news-grid-items article:nth-child(2){grid-area:top}
.builder-grid-lead-one-two .builder-news-grid-items article:nth-child(3){grid-area:bottom-1}
.builder-grid-lead-one-two .builder-news-grid-items article:nth-child(4){grid-area:bottom-2}
.builder-grid-lead-one-two .builder-news-grid-items article:nth-child(n+5){display:none}

/* The lead card fills the full two-row height; all text remains over its image. */
.builder-news-grid .builder-news-grid-items article:nth-child(1){
  height:452px;
}

.builder-news-grid .builder-news-grid-items article:not(:nth-child(1)){
  height:220px;
}

.builder-news-grid .builder-news-grid-items article:nth-child(1) .builder-grid-image,
.builder-news-grid .builder-news-grid-items article:nth-child(1) .builder-grid-image img,
.builder-news-grid .builder-news-grid-items article:not(:nth-child(1)) .builder-grid-image,
.builder-news-grid .builder-news-grid-items article:not(:nth-child(1)) .builder-grid-image img{
  height:100%!important;
}

/* Backward-compatible old model classes. */
.builder-grid-two-lead .builder-news-grid-items{
  grid-template-areas:
    "small-1 small-1 lead lead"
    "small-2 small-2 lead lead";
}
.builder-grid-two-lead .builder-news-grid-items article:nth-child(2){grid-area:small-1}
.builder-grid-two-lead .builder-news-grid-items article:nth-child(3){grid-area:small-2}
.builder-grid-two-lead .builder-news-grid-items article:nth-child(n+4){display:none}

.builder-grid-magazine .builder-news-grid-items{
  grid-template-areas:
    "top top lead lead"
    "bottom-1 bottom-2 lead lead";
}
.builder-grid-magazine .builder-news-grid-items article:nth-child(2){grid-area:top}
.builder-grid-magazine .builder-news-grid-items article:nth-child(3){grid-area:bottom-1}
.builder-grid-magazine .builder-news-grid-items article:nth-child(4){grid-area:bottom-2}
.builder-grid-magazine .builder-news-grid-items article:nth-child(n+5){display:none}

@media(max-width:850px){
  .builder-news-grid .builder-news-grid-items{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:320px repeat(2,190px);
    grid-template-areas:
      "lead lead"
      "small-1 small-2"
      "small-3 small-4";
    min-height:724px;
  }

  .builder-grid-lead-two-stack .builder-news-grid-items,
  .builder-grid-two-lead .builder-news-grid-items{
    grid-template-rows:320px repeat(2,190px);
    grid-template-areas:
      "lead lead"
      "small-1 small-1"
      "small-2 small-2";
  }

  .builder-grid-lead-one-two .builder-news-grid-items,
  .builder-grid-magazine .builder-news-grid-items{
    grid-template-rows:320px 190px 190px;
    grid-template-areas:
      "lead lead"
      "top top"
      "bottom-1 bottom-2";
  }

  .builder-news-grid .builder-news-grid-items article:nth-child(1){
    height:320px;
  }

  .builder-news-grid .builder-news-grid-items article:not(:nth-child(1)){
    height:190px;
  }
}

@media(max-width:560px){
  .builder-news-grid .builder-news-grid-items,
  .builder-grid-lead-two-stack .builder-news-grid-items,
  .builder-grid-lead-one-two .builder-news-grid-items,
  .builder-grid-two-lead .builder-news-grid-items,
  .builder-grid-magazine .builder-news-grid-items{
    display:flex;
    flex-direction:column;
    min-height:0;
  }

  .builder-news-grid .builder-news-grid-items article,
  .builder-news-grid .builder-news-grid-items article:nth-child(1),
  .builder-news-grid .builder-news-grid-items article:not(:nth-child(1)){
    display:block;
    width:100%;
    height:260px;
  }

  .builder-news-grid .builder-news-grid-items article:nth-child(1){
    height:320px;
  }
}

/* =========================================================
   Madares Kohan — Modern Editorial UI v5
   Inspired by the supplied clean newsroom reference.
   ========================================================= */
:root{
  --navy:#123f7a;
  --navy-2:#0c315f;
  --gold:#d7951b;
  --gold-light:#f5c96a;
  --ink:#14263a;
  --muted:#748295;
  --paper:#ffffff;
  --surface:#f4f7fa;
  --surface-2:#edf2f6;
  --line:#dce4eb;
  --shadow:0 12px 34px rgba(25,55,82,.075);
  --shadow-sm:0 5px 18px rgba(25,55,82,.065);
  --radius:16px;
  --container:1320px;
}
html[data-theme="dark"]{
  --navy:#72a7e9;
  --navy-2:#90b9ee;
  --gold:#f0b343;
  --ink:#eaf0f6;
  --muted:#a8b5c3;
  --paper:#111923;
  --surface:#0c141e;
  --surface-2:#18232f;
  --line:#273542;
  --shadow:0 14px 36px rgba(0,0,0,.27);
  --shadow-sm:0 5px 18px rgba(0,0,0,.22);
}
body{
  background:
    radial-gradient(circle at 50% -15%,rgba(31,87,142,.05),transparent 35%),
    var(--surface);
  font-size:14px;
}
.container{width:min(calc(100% - 32px),var(--container))}
.section-space{padding:34px 0}

/* Shell and header */
.site-header{
  position:relative;
  margin:0 0 14px;
  border-bottom:1px solid rgba(210,220,230,.75);
  background:rgba(255,255,255,.91);
  box-shadow:0 4px 24px rgba(17,45,71,.045);
  backdrop-filter:blur(16px);
}
html[data-theme="dark"] .site-header{background:rgba(17,25,35,.92)}
.header-layout-row{background:transparent!important;color:var(--ink)!important}
.header-layout-grid{min-height:var(--header-row-height);border-bottom:1px solid rgba(220,228,235,.65)}
.header-layout-row:last-of-type .header-layout-grid{border-bottom:0}
.header-brand img,.brand img{border:1px solid var(--line);box-shadow:var(--shadow-sm)}
.header-brand .brand-copy strong{font-size:22px;color:var(--ink)}
.header-tagline,.header-date{color:var(--muted);font-size:11px}
.icon-button{width:38px;height:38px;border-radius:11px;background:var(--surface);border-color:transparent}
.icon-button:hover{transform:none;border-color:#b8c8d8;background:#fff;color:var(--navy);box-shadow:var(--shadow-sm)}
.main-nav,.nav-shell{border:0;background:transparent}
.nav-inner{min-height:47px;gap:7px}
.nav-inner a{padding:8px 13px;border-radius:9px;font-size:12px;font-weight:700}
.nav-inner a::after{display:none}
.nav-inner a:hover,.nav-inner a.active{background:#edf3fa;color:var(--navy)}
html[data-theme="dark"] .nav-inner a:hover,html[data-theme="dark"] .nav-inner a.active{background:var(--surface-2);color:var(--gold-light)}
.search-panel{background:var(--surface)}
.site-search{border-radius:12px;box-shadow:none;background:var(--paper)}
.site-search button{background:var(--navy)}

/* Universal editorial cards */
.home-builder-block,
.sidebar-card,
.quote-banner,
.news-row,
.analysis-card,
.popular-wide,
.archive-search,
.article-header,
.article-hero,
.article-body,
.article-gallery,
.listing-hero .container,
.empty-state{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--paper);
  box-shadow:var(--shadow-sm);
}
.home-builder-block{padding:18px}
.home-builder-row.section-space{padding:12px 0}
.home-builder-columns{gap:16px!important}
.home-builder-column{gap:16px}

/* Headings and tabs */
.home-builder-block-head,.section-heading,.sidebar-title{
  min-height:45px;
  margin-bottom:14px;
  padding-bottom:10px;
  border-bottom:1px solid var(--line);
  align-items:center;
}
.home-builder-block-head h2,.section-heading h2,.sidebar-title h2{font-size:18px;letter-spacing:-.25px;color:var(--ink)}
.section-kicker{color:var(--gold);font-size:9px}
.builder-news-head-with-tabs{flex-wrap:nowrap;gap:12px}
.builder-news-head-with-tabs .builder-news-tabs,.filter-tabs{
  display:flex;align-items:center;gap:5px;overflow:auto;scrollbar-width:none;
}
.builder-news-head-with-tabs .builder-news-tabs::-webkit-scrollbar,.filter-tabs::-webkit-scrollbar{display:none}
.builder-news-head-with-tabs .builder-news-tabs button,.filter-tabs a{
  min-height:32px;padding:6px 14px;border:0;border-radius:10px;background:transparent;color:#5e6f82;font-size:10px;font-weight:700;white-space:nowrap;transition:.18s ease;
}
.builder-news-head-with-tabs .builder-news-tabs button:hover,.filter-tabs a:hover{background:#edf3f9;color:var(--navy)}
.builder-news-head-with-tabs .builder-news-tabs button.is-active,.filter-tabs a.active{
  background:var(--navy);color:#fff;box-shadow:0 6px 14px rgba(18,63,122,.17)
}

/* Lists */
.builder-news-list article,.news-row{
  border:1px solid #e4eaf0!important;border-radius:13px;background:var(--paper);box-shadow:0 3px 12px rgba(20,51,79,.045);transition:border-color .2s,box-shadow .2s;
}
.builder-news-list article:hover,.news-row:hover{border-color:#cbd8e4!important;box-shadow:0 8px 22px rgba(20,51,79,.075)}
.builder-news-list article{margin-bottom:10px;padding:11px!important}
.builder-news-list article:last-child{margin-bottom:0}
.builder-news-list-compact article{grid-template-columns:76px minmax(0,1fr)}
.builder-news-list-compact .builder-list-image img{width:76px;height:64px}
.builder-news-list-large article{grid-template-columns:230px minmax(0,1fr);min-height:170px;padding:12px!important;align-items:center}
.builder-news-list-large .builder-list-image img{width:230px;height:148px;border-radius:12px}
.builder-news-list-large h3{font-size:16px}.builder-news-list-large p{font-size:11px;line-height:2;color:var(--muted)}
.builder-news-list h3 a,.news-row h3 a{color:var(--ink)}
.builder-post-kind,.builder-media-open{border-radius:8px}

/* Grid and slider */
.builder-news-grid .builder-news-grid-items{gap:10px}
.builder-news-grid .builder-news-grid-items article{border:0;box-shadow:0 5px 18px rgba(12,38,62,.11)}
.builder-news-grid .builder-news-grid-items article>div{padding:58px 16px 15px}
.builder-news-grid .builder-news-grid-items h3{font-size:14px}
.builder-news-grid .builder-news-grid-items article:nth-child(1) h3{font-size:21px}
.builder-news-slider,.builder-hero-slider{border:1px solid var(--line);border-radius:var(--radius);background:var(--paper);box-shadow:var(--shadow-sm)}
.builder-hero-slider{overflow:hidden}
.builder-news-slide-page .builder-news-slide{border-color:var(--line);box-shadow:none}
.builder-inline-slider-controls button,.builder-slider-prev,.builder-slider-next{background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm)}

/* Archive */
.listing-hero{padding:22px 0 10px}
.listing-hero .container{padding:26px}
.listing-hero h1{margin:8px 0;font-size:28px}
.listing-hero p{margin:0 0 18px;color:var(--muted)}
.archive-search{display:flex;overflow:hidden;box-shadow:none}
.archive-search input{background:transparent}
.archive-search button{background:var(--navy)}
.archive-tabs{margin-top:18px;padding-top:15px;border-top:1px solid var(--line)}
.archive-section{padding-top:12px}
.archive-list{display:grid;gap:12px}
.archive-list .news-row{grid-template-columns:260px minmax(0,1fr);padding:12px}
.archive-list .news-thumb img{height:165px;border-radius:12px}
.archive-list .news-row-body{padding:7px 5px}
.archive-list h3{font-size:18px;margin:8px 0}
.archive-list p{color:var(--muted);font-size:12px}

/* Article */
.article-main{padding-top:18px}
.article-shell{gap:20px}
.article-header{padding:28px}
.article-header h1{font-size:34px;line-height:1.65}
.article-deck{color:var(--muted);font-size:15px}
.article-hero{overflow:hidden;padding:8px}
.article-hero img{border-radius:12px}
.article-layout{gap:16px}
.article-body{padding:28px 34px;font-size:16px;line-height:2.2}
.article-body p{margin:0 0 1.35em}
.article-body h2,.article-body h3{color:var(--ink)}
.share-rail{border:1px solid var(--line);border-radius:13px;background:var(--paper);box-shadow:var(--shadow-sm)}
.article-gallery{padding:20px}
.article-gallery-grid img{border-radius:12px}
.article-aside .sidebar-card{padding:16px}
.mini-story{padding:9px;border-radius:10px;transition:.18s}
.mini-story:hover{background:var(--surface)}
.related-section{margin-top:20px}
.analysis-grid{gap:13px}.analysis-card{overflow:hidden}.analysis-card>div{padding:14px}

/* Footer */
.site-footer{margin-top:34px;border-top:1px solid var(--line);background:#fff;color:var(--ink)}
html[data-theme="dark"] .site-footer{background:var(--paper)}
.footer-grid{padding:42px 0;gap:28px}
.footer-grid h3{font-size:13px;color:var(--ink)}
.footer-grid a{color:var(--muted)}
.footer-grid a:hover{color:var(--navy)}
.footer-bottom{border-top:1px solid var(--line);background:var(--surface);color:var(--muted)}

/* Buttons, pager, misc */
.text-link,.media-link{color:var(--navy)}
.category-pill{background:#fff4dc;color:#9d6806;border-radius:8px;min-height:26px}
.meta span,.eyebrow{color:var(--gold)}
.pager a,.pager strong{border-radius:9px;border-color:var(--line)}
.pager strong{background:var(--navy);color:#fff}
.back-to-top{border-radius:12px;background:var(--navy);box-shadow:var(--shadow)}
.toast{border-radius:12px;box-shadow:var(--shadow)}

/* Dark mode refinements */
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .builder-news-list article,
html[data-theme="dark"] .news-row{border-color:var(--line)}
html[data-theme="dark"] .category-pill{background:rgba(240,179,67,.14);color:var(--gold-light)}

@media(max-width:980px){
  .section-space{padding:26px 0}
  .builder-news-head-with-tabs{align-items:flex-start;flex-wrap:wrap}
  .builder-news-head-with-tabs .builder-news-tabs{flex-basis:100%;max-width:100%}
  .archive-list .news-row{grid-template-columns:200px minmax(0,1fr)}
  .archive-list .news-thumb img{height:145px}
}
@media(max-width:700px){
  .container{width:min(calc(100% - 20px),var(--container))}
  .section-space{padding:20px 0}
  .home-builder-block{padding:13px}
  .header-layout-grid{min-height:auto;padding:8px 0}
  .header-brand .brand-copy strong{font-size:18px}
  .builder-news-list-large article,.archive-list .news-row{grid-template-columns:110px minmax(0,1fr);min-height:0}
  .builder-news-list-large .builder-list-image img,.archive-list .news-thumb img{width:110px;height:88px}
  .builder-news-list-large p,.archive-list p{display:none}
  .listing-hero .container{padding:18px}
  .listing-hero h1{font-size:23px}
  .article-header{padding:20px}.article-header h1{font-size:26px}.article-body{padding:21px 18px;font-size:15px}
  .footer-grid{padding:30px 0}
}


/* =========================================================
   Madares Kohan — Final frontend stability layer v5.0.1
   Resolves cascade collisions from earlier theme iterations.
   ========================================================= */
html,body{max-width:100%;overflow-x:hidden}
body{min-width:0}
body>main,main{display:block;min-width:0}
*,*::before,*::after{box-sizing:border-box}
img,video,iframe,svg{max-width:100%}
img{height:auto}
.container{
  width:min(calc(100% - 32px),1320px)!important;
  max-width:1320px;
  margin-inline:auto!important;
  padding-inline:0!important;
}
section,.section-space,.home-builder-row,.home-builder-block,
.home-builder-column,.home-builder-columns,.content-layout,
.archive-list,.article-layout,.footer-grid{min-width:0;max-width:100%}

/* Header: prevent custom header rows and navigation from overflowing. */
.site-header{width:100%;isolation:isolate}
.header-layout-grid,.brand-row,.utility-inner,.nav-inner{
  width:min(calc(100% - 32px),1320px);
  max-width:1320px;
  margin-inline:auto;
}
.header-layout-grid>*,
.brand-row>*,
.nav-inner>*{min-width:0}
.header-brand,.brand{max-width:100%}
.header-brand img,.brand img{flex:0 0 auto}
.header-brand .brand-copy,.brand-copy{min-width:0}
.header-brand .brand-copy strong,.brand-copy strong,
.header-brand .brand-copy small,.brand-copy small{
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap
}
.nav-shell,.main-nav{width:100%}
.nav-inner{overflow:visible}
.nav-inner>ul,.nav-inner{max-width:100%}
.search-panel,.search-panel-inner,.site-search{max-width:100%}

/* Universal content safety. */
.home-builder-columns{
  width:100%;
  display:grid;
  align-items:start;
}
.home-builder-column{display:grid;align-content:start}
.home-builder-column>*{width:100%;min-width:0}
.home-builder-block{width:100%;overflow:hidden}
.home-builder-block-head,.section-heading,.builder-news-head-with-tabs{
  width:100%;min-width:0
}
.home-builder-block-head h2,.section-heading h2,
.builder-news-head-with-tabs h2{min-width:0;overflow-wrap:anywhere}
.builder-news-head-with-tabs .builder-news-tabs{min-width:0;max-width:70%}

/* Lists: deterministic dimensions without clipping content. */
.builder-news-list article{
  width:100%;
  min-width:0;
  overflow:hidden;
}
.builder-news-list article>div{min-width:0}
.builder-news-list h3,.builder-news-list p{overflow-wrap:anywhere}
.builder-news-list-large article{
  grid-template-columns:minmax(180px,230px) minmax(0,1fr)!important;
}
.builder-news-list-large .builder-list-image,
.builder-news-list-large .builder-list-image img{
  width:100%!important;
  max-width:230px;
}
.builder-news-list-compact article{
  grid-template-columns:76px minmax(0,1fr)!important;
}

/* Slider and grid containment. */
.builder-news-slider,.builder-hero-slider,
.builder-news-slider-viewport,.builder-hero-viewport{width:100%;max-width:100%}
.builder-news-slide-page{width:100%;min-width:0}
.builder-news-slide-page .builder-news-slide{min-width:0}
.builder-news-grid,.builder-news-grid-items{width:100%;max-width:100%;min-width:0}
.builder-news-grid-items article{min-width:0}
.builder-news-grid-items h3,.builder-news-grid-items p{overflow-wrap:anywhere}

/* Article/archive layouts. */
.content-layout,.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(240px,320px);
  gap:22px;
  align-items:start;
}
.content-layout>*,.article-layout>*{min-width:0}
.archive-list .news-row{min-width:0}
.news-row>*{min-width:0}
.article-body img,.article-body video,.article-body iframe{
  display:block;max-width:100%;height:auto;margin-inline:auto
}

/* Tables and embedded blocks on public pages. */
.article-body table,.custom-section table{
  display:block;width:100%;max-width:100%;overflow-x:auto
}

/* Footer stability. */
.footer-grid{
  display:grid;
  grid-template-columns:minmax(260px,1.5fr) repeat(3,minmax(150px,1fr));
  gap:26px;
}
.footer-grid>*{min-width:0}
.footer-bottom .container{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap
}

/* Modals always fit the viewport. */
.builder-media-modal{overflow:auto}
.builder-media-dialog{max-width:min(1050px,calc(100vw - 28px));max-height:calc(100vh - 28px)}
.builder-modal-gallery{min-width:0}

/* Responsive frontend normalization. */
@media(max-width:1000px){
  .content-layout,.article-layout{grid-template-columns:1fr}
  .sidebar{position:static!important}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .builder-news-list-large article{
    grid-template-columns:minmax(150px,200px) minmax(0,1fr)!important;
  }
}
@media(max-width:760px){
  .container,.header-layout-grid,.brand-row,.utility-inner,.nav-inner{
    width:min(calc(100% - 22px),1320px)!important
  }
  .section-space{padding:22px 0}
  .header-layout-grid,.brand-row{min-height:auto}
  .brand-row{grid-template-columns:auto minmax(0,1fr) auto;padding-block:10px}
  .brand{grid-column:auto;justify-self:start}
  .brand img,.header-brand img{width:52px;height:52px}
  .brand-copy strong,.header-brand .brand-copy strong{font-size:18px}
  .nav-inner{justify-content:flex-start;overflow-x:auto;overscroll-behavior-inline:contain}
  .builder-news-head-with-tabs{align-items:flex-start;flex-wrap:wrap!important}
  .builder-news-head-with-tabs .builder-news-tabs{
    flex:1 1 100%;max-width:100%;justify-content:flex-start
  }
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  .builder-news-list-large article,
  .builder-news-list-compact article{
    grid-template-columns:1fr!important;
  }
  .builder-news-list-large .builder-list-image,
  .builder-news-list-large .builder-list-image img,
  .builder-news-list-compact .builder-list-image,
  .builder-news-list-compact .builder-list-image img{
    width:100%!important;max-width:none!important;height:210px!important
  }
  .home-builder-block{padding:13px}
  .home-builder-columns{gap:12px!important}
  .footer-bottom .container{align-items:flex-start;flex-direction:column}
}


/* =========================================================
   Complete public-site light/dark audit and header fix v5.3.0
   ========================================================= */
:root{
  --site-bg:#f3f6f9;
  --site-panel:#ffffff;
  --site-panel-2:#f8fafc;
  --site-text:#13202c;
  --site-muted:#687582;
  --site-border:#dbe4eb;
  --site-header:#ffffff;
  --site-nav:#ffffff;
  --site-footer:#0b2942;
  --site-overlay:rgba(4,18,32,.82);
}
html[data-theme="dark"]{
  --site-bg:#09131c;
  --site-panel:#111f2b;
  --site-panel-2:#172936;
  --site-text:#eef4f8;
  --site-muted:#a4b4c0;
  --site-border:#2d4351;
  --site-header:#101e29;
  --site-nav:#132430;
  --site-footer:#07131d;
  --site-overlay:rgba(2,9,15,.88);
  --paper:var(--site-panel);
  --surface:var(--site-bg);
  --surface-2:var(--site-panel-2);
  --ink:var(--site-text);
  --muted:var(--site-muted);
  --line:var(--site-border);
}

html,body{background:var(--site-bg)!important;color:var(--site-text)!important}
body{min-height:100vh}
main{background:var(--site-bg)!important}

/* Header rows: no invisible white-on-white content or excessive empty height. */
.site-header{
  background:var(--site-header)!important;
  border-bottom:1px solid var(--site-border);
}
.header-layout-row{
  width:100%;
  min-height:0!important;
  background:var(--site-header)!important;
  color:var(--site-text)!important;
  border-bottom:1px solid var(--site-border)!important;
}
.header-layout-row:last-of-type{border-bottom:0!important}
.header-layout-grid{
  min-height:clamp(46px,var(--header-row-height),76px)!important;
  color:var(--site-text)!important;
}
.header-slot{min-height:0!important;color:var(--site-text)!important}
.header-slot:empty{display:block;min-width:0}
.header-date,.header-tagline{color:var(--site-muted)!important}
.header-brand{color:var(--site-text)!important}
.header-brand img,.brand img{
  background:#fff!important;
  border:1px solid rgba(11,49,87,.08);
  box-shadow:0 6px 18px rgba(11,49,87,.08);
}
.header-brand .brand-copy strong,.brand-copy strong{
  color:var(--site-text)!important;
}
.header-brand .brand-copy small,.brand-copy small{
  color:var(--site-muted)!important;
}
html[data-theme="dark"] .header-brand img,
html[data-theme="dark"] .brand img{
  border-color:#2e4452;
  box-shadow:0 7px 20px rgba(0,0,0,.28);
}
.icon-button{
  background:var(--site-panel-2)!important;
  color:var(--site-text)!important;
  border-color:var(--site-border)!important;
  box-shadow:none!important;
}
.icon-button:hover{
  background:var(--site-panel)!important;
  border-color:var(--gold)!important;
  color:var(--gold)!important;
  transform:none!important;
}

/* Navigation and menu. */
.main-nav,.nav-shell{
  background:var(--site-nav)!important;
  border-color:var(--site-border)!important;
}
.nav-inner,.nav-inner a{
  color:var(--site-text)!important;
}
.nav-inner a:hover,.nav-inner a.active{
  color:var(--gold)!important;
}
.mega-menu,.nav-dropdown,.submenu{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
  border-color:var(--site-border)!important;
  box-shadow:0 18px 50px rgba(6,23,36,.16)!important;
}
.mega-menu a,.nav-dropdown a,.submenu a{
  color:var(--site-text)!important;
}
.mega-menu a:hover,.nav-dropdown a:hover,.submenu a:hover{
  background:var(--site-panel-2)!important;
}

/* Search and breaking-news strip. */
.search-panel,.search-panel-inner{
  background:var(--site-panel)!important;
  border-color:var(--site-border)!important;
}
.site-search{
  background:var(--site-panel-2)!important;
  border-color:var(--site-border)!important;
}
.site-search input{
  background:transparent!important;
  color:var(--site-text)!important;
}
.breaking-bar,.breaking-news,.ticker-bar,.news-ticker{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
  border-color:var(--site-border)!important;
}
.breaking-bar a,.breaking-news a,.ticker-bar a,.news-ticker a{
  color:var(--site-text)!important;
}

/* Public cards and sections. */
.home-builder-block,.news-card,.news-row,.article-card,.sidebar-card,
.category-card,.archive-card,.related-card,.newsletter-card,
.content-card,.article-shell,.article-content,.comments-card{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
  border-color:var(--site-border)!important;
  box-shadow:0 7px 24px rgba(10,37,62,.06)!important;
}
html[data-theme="dark"] .home-builder-block,
html[data-theme="dark"] .news-card,
html[data-theme="dark"] .news-row,
html[data-theme="dark"] .article-card,
html[data-theme="dark"] .sidebar-card,
html[data-theme="dark"] .category-card,
html[data-theme="dark"] .archive-card,
html[data-theme="dark"] .related-card,
html[data-theme="dark"] .newsletter-card,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .article-shell,
html[data-theme="dark"] .article-content,
html[data-theme="dark"] .comments-card{
  box-shadow:0 9px 28px rgba(0,0,0,.2)!important;
}
.soft-section,.section-soft,.archive-section{
  background:var(--site-bg)!important;
}

/* Homepage builder text and tabs. */
.home-builder-block-head{
  border-color:var(--site-border)!important;
}
.home-builder-block-head h2,.builder-news-head-with-tabs h2{
  color:var(--site-text)!important;
}
.builder-news-tabs button{
  background:var(--site-panel-2)!important;
  color:var(--site-muted)!important;
  border-color:var(--site-border)!important;
}
.builder-news-tabs button:hover{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
}
.builder-news-tabs button.is-active{
  background:var(--navy)!important;
  color:#fff!important;
  border-color:var(--navy)!important;
}
html[data-theme="dark"] .builder-news-tabs button.is-active{
  background:#28628f!important;
  border-color:#397ba9!important;
}

/* Lists and metadata. */
.builder-news-list article,
.archive-list .news-row,
.related-list article{
  border-color:var(--site-border)!important;
}
.builder-news-list h3 a,
.builder-news-grid h3 a,
.news-row h2 a,.news-row h3 a{
  color:var(--site-text)!important;
}
.builder-news-list p,.news-row p,.article-meta,.post-meta{
  color:var(--site-muted)!important;
}

/* Hero and media overlays remain readable in both themes. */
.builder-hero-slider,.builder-news-grid article,.builder-media-lead{
  background:#0b1c29!important;
}
.builder-hero-shade{
  background:linear-gradient(transparent 22%,rgba(3,14,23,.9))!important;
}
.builder-news-grid .builder-news-grid-items article::after{
  background:linear-gradient(180deg,rgba(3,14,23,.04) 20%,rgba(3,14,23,.22) 50%,rgba(3,14,23,.92) 100%)!important;
}

/* Forms and newsletter. */
.site-footer input,.site-footer textarea,
.newsletter-form input,.comments-form input,.comments-form textarea,
.contact-form input,.contact-form textarea,.contact-form select{
  background:var(--site-panel-2)!important;
  color:var(--site-text)!important;
  border-color:var(--site-border)!important;
}
.site-footer input::placeholder,
.newsletter-form input::placeholder,
.comments-form input::placeholder,
.comments-form textarea::placeholder{
  color:var(--site-muted)!important;
}

/* Article, archive, table and pagination. */
.article-body,.article-body p,.article-body li{
  color:var(--site-text)!important;
}
.article-body blockquote{
  background:var(--site-panel-2)!important;
  color:var(--site-text)!important;
  border-color:var(--gold)!important;
}
.article-body table{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
}
.article-body th{
  background:var(--site-panel-2)!important;
}
.article-body td,.article-body th{
  border-color:var(--site-border)!important;
}
.pagination a,.pagination span,.pager a,.pager span{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
  border-color:var(--site-border)!important;
}
.pagination .active,.pagination [aria-current="page"],
.pager .active{
  background:var(--navy)!important;
  color:#fff!important;
}
html[data-theme="dark"] .pagination .active,
html[data-theme="dark"] .pagination [aria-current="page"],
html[data-theme="dark"] .pager .active{
  background:#28628f!important;
}

/* Media modal. */
.builder-media-modal{
  background:var(--site-overlay)!important;
}
.builder-media-dialog{
  background:var(--site-panel)!important;
  color:var(--site-text)!important;
}
.builder-media-close{
  background:var(--site-panel-2)!important;
  color:var(--site-text)!important;
}

/* Footer. */
.site-footer{
  background:var(--site-footer)!important;
  color:#dce7ee!important;
}
.site-footer h3,.site-footer .brand-copy strong{
  color:#fff!important;
}
.site-footer p,.site-footer small,.site-footer li,.footer-bottom{
  color:#aebfca!important;
}
.site-footer a:hover{color:var(--gold-light)!important}
.footer-bottom{
  border-color:rgba(255,255,255,.1)!important;
}

/* Theme toggle and motion. */
html[data-theme="light"] .sun-icon{display:block}
html[data-theme="light"] .moon-icon{display:none}
html[data-theme="dark"] .sun-icon{display:none}
html[data-theme="dark"] .moon-icon{display:block}

@media(max-width:760px){
  .header-layout-grid{
    min-height:52px!important;
  }
  .header-brand img,.brand img{
    width:52px!important;
    height:52px!important;
  }
  .header-brand .brand-copy strong,.brand-copy strong{
    font-size:19px!important;
  }
}


/* =========================================================
   Header contrast and first-row visibility correction v5.3.1
   ========================================================= */

/* Use a deliberate header hierarchy instead of inherited custom colors. */
.site-header{
  background:var(--site-header)!important;
  box-shadow:0 4px 18px rgba(11,49,87,.055);
}

.header-layout-row{
  opacity:1!important;
  visibility:visible!important;
}

.header-layout-row-0{
  background:#f5f8fb!important;
  border-bottom:1px solid #dde6ed!important;
}

.header-layout-row-0 .header-layout-grid{
  min-height:50px!important;
  height:50px!important;
}

.header-layout-row-1{
  background:#fff!important;
}

.header-layout-row-2{
  background:#fff!important;
}

/* In light mode, never use a possibly white saved text/icon color on a light row. */
html[data-theme="light"] .header-layout-row,
html:not([data-theme="dark"]) .header-layout-row{
  color:#14283a!important;
}

html[data-theme="light"] .header-layout-row a,
html[data-theme="light"] .header-layout-row .header-date,
html[data-theme="light"] .header-layout-row .header-tagline,
html[data-theme="light"] .header-layout-row .header-newsletter,
html[data-theme="light"] .header-layout-row .brand-copy strong,
html[data-theme="light"] .header-layout-row .brand-copy small,
html:not([data-theme="dark"]) .header-layout-row a,
html:not([data-theme="dark"]) .header-layout-row .header-date,
html:not([data-theme="dark"]) .header-layout-row .header-tagline,
html:not([data-theme="dark"]) .header-layout-row .header-newsletter,
html:not([data-theme="dark"]) .header-layout-row .brand-copy strong,
html:not([data-theme="dark"]) .header-layout-row .brand-copy small{
  color:#14283a!important;
  opacity:1!important;
  visibility:visible!important;
}

html[data-theme="light"] .header-layout-row .header-date,
html[data-theme="light"] .header-layout-row .header-tagline,
html:not([data-theme="dark"]) .header-layout-row .header-date,
html:not([data-theme="dark"]) .header-layout-row .header-tagline{
  color:#617485!important;
}

html[data-theme="light"] .header-layout-row .icon-button,
html[data-theme="light"] .header-layout-row .submenu-toggle,
html[data-theme="light"] .header-layout-row .nav-child-indicator,
html:not([data-theme="dark"]) .header-layout-row .icon-button,
html:not([data-theme="dark"]) .header-layout-row .submenu-toggle,
html:not([data-theme="dark"]) .header-layout-row .nav-child-indicator{
  color:#123f6b!important;
  opacity:1!important;
  visibility:visible!important;
}

html[data-theme="light"] .header-layout-row .icon-button svg,
html[data-theme="light"] .header-layout-row .nav-child-indicator svg,
html:not([data-theme="dark"]) .header-layout-row .icon-button svg,
html:not([data-theme="dark"]) .header-layout-row .nav-child-indicator svg{
  stroke:currentColor!important;
  opacity:1!important;
}

/* First-row objects are compact and consistently aligned. */
.header-layout-row-0 .header-slot{
  min-height:50px!important;
  height:50px!important;
  align-items:center!important;
}

.header-layout-row-0 .header-date,
.header-layout-row-0 .header-tagline,
.header-layout-row-0 .header-newsletter{
  min-height:32px;
  height:auto!important;
  display:inline-flex!important;
  align-items:center;
  padding:5px 9px;
  border-radius:8px;
  font-size:11px!important;
  line-height:1.6;
}

html[data-theme="light"] .header-layout-row-0 .header-date,
html[data-theme="light"] .header-layout-row-0 .header-tagline,
html:not([data-theme="dark"]) .header-layout-row-0 .header-date,
html:not([data-theme="dark"]) .header-layout-row-0 .header-tagline{
  background:#eaf1f6;
  color:#405b70!important;
}

.header-layout-row-0 .icon-button{
  width:36px!important;
  height:36px!important;
  border-radius:10px!important;
}

html[data-theme="light"] .header-layout-row-0 .icon-button,
html:not([data-theme="dark"]) .header-layout-row-0 .icon-button{
  background:#eaf1f6!important;
  border-color:#d8e3eb!important;
  color:#123f6b!important;
}

html[data-theme="light"] .header-layout-row-0 .icon-button:hover,
html:not([data-theme="dark"]) .header-layout-row-0 .icon-button:hover{
  background:#fff!important;
  border-color:#c99232!important;
  color:#9a6813!important;
}

/* Dark mode uses a clearly separated utility row. */
html[data-theme="dark"] .header-layout-row-0{
  background:#0c1b27!important;
  border-bottom-color:#273e4d!important;
}

html[data-theme="dark"] .header-layout-row-1,
html[data-theme="dark"] .header-layout-row-2{
  background:#111f2b!important;
}

html[data-theme="dark"] .header-layout-row a,
html[data-theme="dark"] .header-layout-row .brand-copy strong{
  color:#edf4f8!important;
}

html[data-theme="dark"] .header-layout-row .brand-copy small,
html[data-theme="dark"] .header-layout-row .header-date,
html[data-theme="dark"] .header-layout-row .header-tagline{
  color:#a8b9c5!important;
}

html[data-theme="dark"] .header-layout-row .icon-button,
html[data-theme="dark"] .header-layout-row .submenu-toggle,
html[data-theme="dark"] .header-layout-row .nav-child-indicator{
  color:#dce9f1!important;
}

/* Main brand row gets more balanced proportions. */
.header-layout-row:has(.header-brand) .header-layout-grid{
  min-height:74px!important;
  height:74px!important;
}

.header-slot .header-brand img{
  max-height:62px!important;
  width:auto!important;
}

.header-slot .header-brand .brand-copy strong{
  font-size:22px!important;
  line-height:1.45;
}

.header-slot .header-brand .brand-copy small{
  font-size:11px!important;
}

/* Navigation row. */
.header-layout-row:has(.main-nav) .header-layout-grid{
  min-height:50px!important;
  height:50px!important;
}

.header-layout-row:has(.main-nav) .nav-inner{
  min-height:50px!important;
}

@media(max-width:850px){
  .header-layout-row-0 .header-layout-grid,
  .header-layout-row:has(.header-brand) .header-layout-grid,
  .header-layout-row:has(.main-nav) .header-layout-grid{
    height:auto!important;
    min-height:52px!important;
  }

  .header-layout-row-0 .header-slot{
    height:auto!important;
    min-height:0!important;
  }
}


/* =========================================================
   Editorial navigation, footer and copyright refinement v5.4.0
   ========================================================= */

/* Thin, restrained editorial navigation. */
.header-layout-row:has(.main-nav){
  border-top:0!important;
  border-bottom:1px solid var(--site-border)!important;
  box-shadow:0 2px 8px rgba(11,49,87,.035);
}
.header-layout-row:has(.main-nav) .header-layout-grid,
.header-layout-row:has(.main-nav) .nav-inner{
  height:44px!important;
  min-height:44px!important;
}
.header-layout-row:has(.main-nav) .header-slot{
  height:44px!important;
}
.header-layout-row:has(.main-nav) .nav-inner{
  gap:3px!important;
  padding-block:0!important;
}
.header-layout-row:has(.main-nav) .nav-inner a{
  padding:6px 11px!important;
  border-radius:8px!important;
  font-size:12px!important;
  line-height:1.5!important;
}
.header-layout-row:has(.main-nav) .nav-inner a:hover,
.header-layout-row:has(.main-nav) .nav-inner a.active{
  background:var(--site-panel-2)!important;
}
.site-header{
  box-shadow:0 3px 12px rgba(11,49,87,.045)!important;
}
.header-layout-row-0{
  border-bottom:0!important;
}
.header-layout-row:has(.header-brand){
  border-bottom:1px solid var(--site-border)!important;
}
html[data-theme="dark"] .header-layout-row:has(.main-nav) .nav-inner a:hover,
html[data-theme="dark"] .header-layout-row:has(.main-nav) .nav-inner a.active{
  background:#1a3040!important;
}

/* Breaking strip stays compact. */
.breaking,.breaking-bar,.breaking-news,.ticker-bar,.news-ticker{
  min-height:42px!important;
}
.breaking-inner{
  min-height:42px!important;
  padding-block:0!important;
}

/* Footer light color is configurable; dark theme always uses a darker surface. */
.site-footer{
  background:var(--footer-light-color,#0b2942)!important;
}
html[data-theme="dark"] .site-footer{
  background:#07131d!important;
}
.footer-grid{
  padding-top:54px!important;
  padding-bottom:42px!important;
}
.footer-bottom{
  background:rgba(255,255,255,.055)!important;
  color:rgba(255,255,255,.72)!important;
  border-top:1px solid rgba(255,255,255,.11)!important;
}
.footer-bottom .container{
  min-height:54px!important;
}
html[data-theme="light"] .footer-bottom,
html:not([data-theme="dark"]) .footer-bottom{
  background:rgba(3,18,29,.18)!important;
  color:rgba(255,255,255,.84)!important;
}
html[data-theme="dark"] .footer-bottom{
  background:#050e15!important;
  color:#93a6b4!important;
}

/* Settings maintenance tab visual cue. */
.settings-tabs [data-settings-tab="maintenance"]{
  color:#9b6811;
}
.settings-tabs [data-settings-tab="maintenance"].is-active{
  background:#9b6811!important;
  color:#fff!important;
}


/* =========================================================
   Configurable navigation height and balanced separators v5.4.1
   ========================================================= */
.header-layout-row:has(.main-nav){
  border-top:1px solid rgba(219,228,235,.9)!important;
  border-bottom:1px solid rgba(219,228,235,.9)!important;
  box-shadow:none!important;
}

.header-layout-row:has(.main-nav) .header-layout-grid,
.header-layout-row:has(.main-nav) .header-slot,
.header-layout-row:has(.main-nav) .nav-inner{
  height:var(--site-nav-height,56px)!important;
  min-height:var(--site-nav-height,56px)!important;
}

.header-layout-row:has(.main-nav) .nav-inner a{
  min-height:34px;
  display:inline-flex;
  align-items:center;
}

html[data-theme="dark"] .header-layout-row:has(.main-nav){
  border-top-color:#2d4351!important;
  border-bottom-color:#2d4351!important;
}

@media(max-width:850px){
  .header-layout-row:has(.main-nav) .header-layout-grid,
  .header-layout-row:has(.main-nav) .header-slot,
  .header-layout-row:has(.main-nav) .nav-inner{
    height:auto!important;
    min-height:50px!important;
  }
}


/* =========================================================
   Single nav separator or optional shadow v5.4.2
   ========================================================= */

/* Remove every inherited border/shadow around the navigation row. */
.site-header,
.header-layout-row,
.header-layout-row .header-layout-grid,
.header-layout-row:has(.main-nav),
.header-layout-row:has(.main-nav) .header-layout-grid,
.header-layout-row:has(.main-nav) .header-slot,
.header-layout-row:has(.main-nav) .main-nav,
.header-layout-row:has(.main-nav) .nav-inner{
  border-top:0!important;
  border-bottom:0!important;
  box-shadow:none!important;
}

/* Normal mode: exactly one full-width, one-pixel line below the menu. */
.site-header-nav-line .header-layout-row:has(.main-nav){
  position:relative;
}
.site-header-nav-line .header-layout-row:has(.main-nav)::after{
  content:"";
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  height:1px;
  background:var(--site-border);
  pointer-events:none;
}

/* Shadow mode: no line at all, only a soft shadow. */
.site-header-nav-shadow .header-layout-row:has(.main-nav){
  position:relative;
  z-index:2;
  box-shadow:0 7px 18px rgba(11,49,87,.10)!important;
}
.site-header-nav-shadow .header-layout-row:has(.main-nav)::after{
  content:none!important;
  display:none!important;
}

html[data-theme="dark"] .site-header-nav-line .header-layout-row:has(.main-nav)::after{
  background:#2d4351;
}
html[data-theme="dark"] .site-header-nav-shadow .header-layout-row:has(.main-nav){
  box-shadow:0 8px 22px rgba(0,0,0,.30)!important;
}


/* =========================================================
   Accurate nav height and protected logo spacing v5.4.3
   ========================================================= */

/* The configured height controls the row box, not the logo dimensions. */
.header-layout-row:has(.main-nav){
  --nav-inner-gap:10px;
}

.header-layout-row:has(.main-nav) .header-layout-grid{
  height:var(--site-nav-height,56px)!important;
  min-height:var(--site-nav-height,56px)!important;
  padding-top:var(--nav-inner-gap)!important;
  padding-bottom:var(--nav-inner-gap)!important;
  align-items:center!important;
}

.header-layout-row:has(.main-nav) .header-slot,
.header-layout-row:has(.main-nav) .main-nav,
.header-layout-row:has(.main-nav) .nav-inner{
  height:calc(var(--site-nav-height,56px) - (var(--nav-inner-gap) * 2))!important;
  min-height:calc(var(--site-nav-height,56px) - (var(--nav-inner-gap) * 2))!important;
  align-items:center!important;
}

/* Logo has its own maximum size and never touches row edges. */
.header-layout-row:has(.main-nav) .header-brand{
  height:calc(var(--site-nav-height,56px) - (var(--nav-inner-gap) * 2))!important;
  max-height:64px!important;
  display:inline-flex!important;
  align-items:center!important;
  align-self:center!important;
  padding-block:0!important;
  margin-block:0!important;
}

.header-layout-row:has(.main-nav) .header-brand img{
  width:auto!important;
  height:auto!important;
  max-width:68px!important;
  max-height:min(60px,calc(var(--site-nav-height,56px) - 20px))!important;
  object-fit:contain!important;
  flex:0 0 auto!important;
  margin-block:auto!important;
}

.header-layout-row:has(.main-nav) .header-brand .brand-copy{
  align-self:center!important;
}

/* Menu links remain vertically centered at every allowed height. */
.header-layout-row:has(.main-nav) .nav-inner a{
  min-height:34px!important;
  height:auto!important;
  align-self:center!important;
}

/* Give larger configured heights proportionally more breathing room. */
@supports (padding:clamp(1px,1vw,2px)){
  .header-layout-row:has(.main-nav) .header-layout-grid{
    --nav-inner-gap:clamp(8px,calc((var(--site-nav-height,56px) - 44px) / 4 + 8px),14px);
  }
}

@media(max-width:850px){
  .header-layout-row:has(.main-nav) .header-layout-grid{
    height:auto!important;
    min-height:54px!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
  }

  .header-layout-row:has(.main-nav) .header-slot,
  .header-layout-row:has(.main-nav) .main-nav,
  .header-layout-row:has(.main-nav) .nav-inner{
    height:auto!important;
    min-height:38px!important;
  }

  .header-layout-row:has(.main-nav) .header-brand{
    height:auto!important;
    max-height:none!important;
  }

  .header-layout-row:has(.main-nav) .header-brand img{
    max-height:52px!important;
  }
}


/* =========================================================
   Strong row-height control and simplified row colors v5.4.4
   ========================================================= */
.header-layout-row{
  min-height:var(--header-row-height,72px)!important;
}
.header-layout-row>.header-layout-grid{
  height:var(--header-row-height,72px)!important;
  min-height:var(--header-row-height,72px)!important;
  padding-top:12px!important;
  padding-bottom:12px!important;
  align-items:center!important;
}
.header-layout-row .header-slot{
  min-height:calc(var(--header-row-height,72px) - 24px)!important;
  height:auto!important;
  align-items:center!important;
}
.header-layout-row .header-brand,
.header-layout-row .main-nav,
.header-layout-row .nav-inner{
  align-self:center!important;
}
.header-layout-row .header-brand img{
  max-height:min(72px,calc(var(--header-row-height,72px) - 24px))!important;
  width:auto!important;
  object-fit:contain!important;
}
html[data-theme="light"] .header-layout-row,
html:not([data-theme="dark"]) .header-layout-row{
  background:var(--header-row-color,#ffffff)!important;
}
html[data-theme="light"] .header-layout-row,
html[data-theme="light"] .header-layout-row a,
html[data-theme="light"] .header-layout-row .brand-copy strong,
html:not([data-theme="dark"]) .header-layout-row,
html:not([data-theme="dark"]) .header-layout-row a,
html:not([data-theme="dark"]) .header-layout-row .brand-copy strong{
  color:#17212b!important;
}
html[data-theme="light"] .header-layout-row .icon-button,
html[data-theme="light"] .header-layout-row .submenu-toggle,
html[data-theme="light"] .header-layout-row .nav-child-indicator,
html:not([data-theme="dark"]) .header-layout-row .icon-button,
html:not([data-theme="dark"]) .header-layout-row .submenu-toggle,
html:not([data-theme="dark"]) .header-layout-row .nav-child-indicator{
  color:#0b3157!important;
}
html[data-theme="dark"] .header-layout-row{
  background:#111f2b!important;
}
html[data-theme="dark"] .header-layout-row-0{
  background:#0c1b27!important;
}
@media(max-width:850px){
  .header-layout-row{min-height:0!important}
  .header-layout-row>.header-layout-grid{
    height:auto!important;
    min-height:56px!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
  }
  .header-layout-row .header-slot{
    height:auto!important;
    min-height:0!important;
  }
  .header-layout-row .header-brand img{
    max-height:52px!important;
  }
}


/* =========================================================
   Centered menu row, larger logo and item separators v5.4.5
   ========================================================= */

/* Every object in the navigation row stays vertically centered. */
.header-layout-row:has(.main-nav)>.header-layout-grid{
  display:grid!important;
  align-items:center!important;
  align-content:center!important;
}

.header-layout-row:has(.main-nav) .header-slot{
  display:flex!important;
  align-items:center!important;
  align-content:center!important;
  justify-content:center;
  height:100%!important;
  min-height:0!important;
  padding-top:0!important;
  padding-bottom:0!important;
}

.header-layout-row:has(.main-nav) .header-slot-right{
  justify-content:flex-start!important;
}

.header-layout-row:has(.main-nav) .header-slot-center{
  justify-content:center!important;
}

.header-layout-row:has(.main-nav) .header-slot-left{
  justify-content:flex-end!important;
}

.header-layout-row:has(.main-nav) .main-nav,
.header-layout-row:has(.main-nav) .nav-inner{
  height:100%!important;
  min-height:0!important;
  display:flex!important;
  align-items:center!important;
  align-content:center!important;
}

/* Logo is larger, clearer and keeps safe vertical margins. */
.header-layout-row:has(.main-nav) .header-brand{
  display:inline-flex!important;
  align-items:center!important;
  align-self:center!important;
  gap:12px!important;
  height:auto!important;
  max-height:calc(var(--header-row-height,72px) - 16px)!important;
  margin-block:auto!important;
}

.header-layout-row:has(.main-nav) .header-brand img{
  width:auto!important;
  height:clamp(58px,calc(var(--header-row-height,72px) - 18px),88px)!important;
  max-width:92px!important;
  max-height:88px!important;
  padding:3px!important;
  border-radius:14px!important;
  object-fit:contain!important;
  background:#fff!important;
}

.header-layout-row:has(.main-nav) .header-brand .brand-copy strong{
  font-size:24px!important;
  line-height:1.4!important;
}

.header-layout-row:has(.main-nav) .header-brand .brand-copy small{
  font-size:11px!important;
}

/* Menu spacing and subtle vertical separators. */
.header-layout-row:has(.main-nav) .nav-inner{
  gap:0!important;
}

.header-layout-row:has(.main-nav) .nav-inner>.nav-node,
.header-layout-row:has(.main-nav) .nav-inner>a{
  position:relative;
  display:flex;
  align-items:center;
  margin:0!important;
  padding-inline:13px!important;
}

.header-layout-row:has(.main-nav) .nav-inner>.nav-node+.nav-node::before,
.header-layout-row:has(.main-nav) .nav-inner>.nav-node+a::before,
.header-layout-row:has(.main-nav) .nav-inner>a+.nav-node::before,
.header-layout-row:has(.main-nav) .nav-inner>a+a::before{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:1px;
  height:16px;
  transform:translateY(-50%);
  background:rgba(75,98,116,.24);
  pointer-events:none;
}

.header-layout-row:has(.main-nav) .nav-inner .nav-node-head{
  display:flex;
  align-items:center;
  height:100%;
}

.header-layout-row:has(.main-nav) .nav-inner .nav-node-head>a,
.header-layout-row:has(.main-nav) .nav-inner>a{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:36px!important;
  padding:7px 10px!important;
  white-space:nowrap;
}

html[data-theme="dark"] .header-layout-row:has(.main-nav) .nav-inner>.nav-node+.nav-node::before,
html[data-theme="dark"] .header-layout-row:has(.main-nav) .nav-inner>.nav-node+a::before,
html[data-theme="dark"] .header-layout-row:has(.main-nav) .nav-inner>a+.nav-node::before,
html[data-theme="dark"] .header-layout-row:has(.main-nav) .nav-inner>a+a::before{
  background:rgba(190,208,220,.22);
}

/* Utility buttons also remain centered instead of drifting upward. */
.header-layout-row:has(.main-nav) .icon-button{
  align-self:center!important;
  margin-block:auto!important;
}

@media(max-width:850px){
  .header-layout-row:has(.main-nav) .header-brand img{
    height:56px!important;
    max-height:56px!important;
    max-width:64px!important;
  }

  .header-layout-row:has(.main-nav) .header-brand .brand-copy strong{
    font-size:19px!important;
  }

  .header-layout-row:has(.main-nav) .nav-inner>.nav-node,
  .header-layout-row:has(.main-nav) .nav-inner>a{
    padding-inline:0!important;
  }

  .header-layout-row:has(.main-nav) .nav-inner>.nav-node::before,
  .header-layout-row:has(.main-nav) .nav-inner>a::before{
    display:none!important;
  }
}


/* =========================================================
   Final menu vertical centering and plain first row v5.4.6
   ========================================================= */
.header-layout-row:has(.main-nav){
  display:flex!important;
  align-items:center!important;
}

.header-layout-row:has(.main-nav)>.header-layout-grid{
  display:grid!important;
  align-items:center!important;
  align-content:center!important;
  height:var(--header-row-height,72px)!important;
  min-height:var(--header-row-height,72px)!important;
  padding-top:0!important;
  padding-bottom:0!important;
}

.header-layout-row:has(.main-nav) .header-slot,
.header-layout-row:has(.main-nav) .main-nav,
.header-layout-row:has(.main-nav) .nav-inner{
  height:100%!important;
  min-height:100%!important;
  margin:0!important;
  padding-top:0!important;
  padding-bottom:0!important;
  align-items:center!important;
  align-content:center!important;
}

.header-layout-row:has(.main-nav) .nav-inner{
  display:flex!important;
  justify-content:center!important;
}

.header-layout-row:has(.main-nav) .nav-inner>.nav-node,
.header-layout-row:has(.main-nav) .nav-inner>a,
.header-layout-row:has(.main-nav) .nav-node-head,
.header-layout-row:has(.main-nav) .nav-node-head>a{
  align-self:center!important;
  margin-top:0!important;
  margin-bottom:0!important;
}

/* First row: only its full-width background color remains. */
.header-layout-row-0{
  min-height:44px!important;
}

.header-layout-row-0>.header-layout-grid{
  height:44px!important;
  min-height:44px!important;
  padding-top:0!important;
  padding-bottom:0!important;
}

.header-layout-row-0 .header-slot{
  min-height:44px!important;
  height:44px!important;
  align-items:center!important;
}

.header-layout-row-0 .header-date,
.header-layout-row-0 .header-tagline,
.header-layout-row-0 .header-newsletter{
  min-height:0!important;
  height:auto!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
}

.header-layout-row-0 .icon-button{
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
}

.header-layout-row-0 .icon-button:hover{
  background:transparent!important;
  box-shadow:none!important;
}

html[data-theme="light"] .header-layout-row-0 .header-date,
html[data-theme="light"] .header-layout-row-0 .header-tagline,
html:not([data-theme="dark"]) .header-layout-row-0 .header-date,
html:not([data-theme="dark"]) .header-layout-row-0 .header-tagline{
  background:transparent!important;
}

@media(max-width:850px){
  .header-layout-row:has(.main-nav)>.header-layout-grid,
  .header-layout-row:has(.main-nav) .header-slot,
  .header-layout-row:has(.main-nav) .main-nav,
  .header-layout-row:has(.main-nav) .nav-inner{
    height:auto!important;
    min-height:0!important;
  }

  .header-layout-row-0>.header-layout-grid,
  .header-layout-row-0 .header-slot{
    height:auto!important;
    min-height:40px!important;
  }
}


/* =========================================================
   Per-row header height as single source of truth v5.4.7
   ========================================================= */
.site-header{--site-nav-height:initial!important}
.header-layout-row{
  height:var(--header-row-height,72px)!important;
  min-height:var(--header-row-height,72px)!important;
}
.header-layout-row>.header-layout-grid{
  height:100%!important;
  min-height:100%!important;
  padding-top:10px!important;
  padding-bottom:10px!important;
  align-items:center!important;
  align-content:center!important;
}
.header-layout-row .header-slot{
  height:100%!important;
  min-height:0!important;
  align-items:center!important;
  align-content:center!important;
}
.header-layout-row:has(.main-nav),
.header-layout-row:has(.main-nav)>.header-layout-grid,
.header-layout-row:has(.main-nav) .header-slot{
  height:var(--header-row-height,72px)!important;
  min-height:var(--header-row-height,72px)!important;
}
.header-layout-row:has(.main-nav)>.header-layout-grid{
  padding-top:10px!important;
  padding-bottom:10px!important;
}
.header-layout-row:has(.main-nav) .main-nav,
.header-layout-row:has(.main-nav) .nav-inner{
  height:calc(var(--header-row-height,72px) - 20px)!important;
  min-height:calc(var(--header-row-height,72px) - 20px)!important;
}
.header-layout-row-0,
.header-layout-row-0>.header-layout-grid,
.header-layout-row-0 .header-slot{
  height:var(--header-row-height,72px)!important;
  min-height:var(--header-row-height,72px)!important;
}
@media(max-width:850px){
  .header-layout-row,
  .header-layout-row>.header-layout-grid,
  .header-layout-row .header-slot,
  .header-layout-row:has(.main-nav),
  .header-layout-row:has(.main-nav)>.header-layout-grid,
  .header-layout-row:has(.main-nav) .main-nav,
  .header-layout-row:has(.main-nav) .nav-inner{
    height:auto!important;
    min-height:0!important;
  }
}


/* =========================================================
   Header item colors, font sizes, social links, raw HTML and compact breaking v5.5.0
   ========================================================= */
.header-layout-row{
  color:var(--header-row-text-color,#17212b)!important;
  font-size:var(--header-row-font-size,14px)!important;
}
.header-layout-row a,
.header-layout-row .brand-copy strong,
.header-layout-row .brand-copy small,
.header-layout-row .header-date,
.header-layout-row .header-newsletter,
.header-layout-row .header-tagline{
  color:var(--header-row-text-color,#17212b)!important;
}
.header-layout-row .icon-button,
.header-layout-row .submenu-toggle,
.header-layout-row .nav-child-indicator{
  color:var(--header-row-icon-color,#0b3157)!important;
}
.header-layout-row .nav-inner a{
  font-size:var(--header-row-font-size,14px)!important;
}
.header-social-links{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}
.header-social-links a{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:4px 8px;
  border:1px solid color-mix(in srgb,currentColor 18%,transparent);
  border-radius:8px;
  text-decoration:none;
  font-size:.82em;
}
.header-social-links a:hover{
  background:color-mix(in srgb,currentColor 8%,transparent);
}
.header-slot .header-raw-html,
.header-slot [data-header-custom-html]{
  max-width:100%;
}

/* Breaking news width and radius */
.breaking{
  width:100%;
  background:transparent!important;
  border:0!important;
  padding:10px 0;
}
.breaking .breaking-inner{
  min-height:42px!important;
  padding:0 16px!important;
  border:1px solid var(--site-border);
  border-radius:var(--breaking-radius,10px);
  background:var(--site-panel)!important;
  overflow:hidden;
}
.breaking-container .breaking-inner{
  width:min(calc(100% - 32px),1320px);
  margin-inline:auto;
}
.breaking-wide .breaking-inner{
  width:min(calc(100% - 24px),1480px);
  margin-inline:auto;
}
.breaking-full{
  padding-inline:12px;
}
.breaking-full .breaking-inner{
  width:100%;
}
html[data-theme="dark"] .breaking .breaking-inner{
  background:#111f2b!important;
  border-color:#2d4351!important;
}

@media(max-width:760px){
  .header-social-links{gap:4px}
  .header-social-links a{padding:3px 6px}
  .breaking{padding:7px 0}
  .breaking .breaking-inner{border-radius:min(var(--breaking-radius,10px),10px)}
}


/* =========================================================
   Configurable header objects and working row typography v5.5.1
   ========================================================= */
.header-layout-row{
  font-size:var(--header-row-font-size,14px)!important;
  color:var(--header-row-text-color,#17212b)!important;
}
.header-layout-row .header-slot,
.header-layout-row .nav-inner,
.header-layout-row .nav-inner a,
.header-layout-row .header-date,
.header-layout-row .header-newsletter,
.header-layout-row .header-action-button,
.header-layout-row .header-custom-html,
.header-layout-row .header-social-links{
  font-size:inherit!important;
  color:var(--header-row-text-color,#17212b)!important;
}
.header-layout-row .icon-button,
.header-layout-row .icon-button svg,
.header-layout-row .submenu-toggle,
.header-layout-row .nav-child-indicator{
  color:var(--header-row-icon-color,#0b3157)!important;
  stroke:currentColor!important;
}
.header-action-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:7px 14px;
  border-radius:9px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}
.header-action-primary{background:var(--header-row-icon-color,#0b3157)!important;color:#fff!important;border:1px solid transparent}
.header-action-outline{background:transparent!important;color:var(--header-row-text-color,#17212b)!important;border:1px solid currentColor}
.header-action-text{background:transparent!important;color:var(--header-row-text-color,#17212b)!important;border:0}
.header-custom-html{display:flex;align-items:center;max-width:100%;min-width:0}
.header-custom-html>*{max-width:100%}
.header-social-links{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.header-social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:5px 9px;
  border:1px solid color-mix(in srgb,currentColor 22%,transparent);
  border-radius:8px;
  color:inherit!important;
  text-decoration:none;
}
.header-social-compact a{width:32px;padding:0;border-radius:50%}


/* =========================================================
   Working per-row object colors v5.5.2
   ========================================================= */
.site-header .header-layout-row{
  color:var(--header-row-text-color,#17212b)!important;
  font-size:var(--header-row-font-size,14px)!important;
}

.site-header .header-layout-row .header-slot,
.site-header .header-layout-row .main-nav,
.site-header .header-layout-row .nav-inner,
.site-header .header-layout-row .nav-node,
.site-header .header-layout-row .nav-node-head{
  color:inherit!important;
  font-size:inherit!important;
}

.site-header .header-layout-row a:not(.header-action-primary),
.site-header .header-layout-row .nav-inner a,
.site-header .header-layout-row .header-date,
.site-header .header-layout-row .header-newsletter,
.site-header .header-layout-row .header-custom-html,
.site-header .header-layout-row .header-custom-html *,
.site-header .header-layout-row .header-social-links,
.site-header .header-layout-row .header-social-links a,
.site-header .header-layout-row .header-social-links span,
.site-header .header-layout-row .header-brand,
.site-header .header-layout-row .header-brand .brand-copy,
.site-header .header-layout-row .header-brand .brand-copy strong,
.site-header .header-layout-row .header-brand .brand-copy small,
.site-header .header-layout-row .header-action-outline,
.site-header .header-layout-row .header-action-text{
  color:var(--header-row-text-color,#17212b)!important;
  font-size:inherit!important;
}

.site-header .header-layout-row .icon-button,
.site-header .header-layout-row .icon-button svg,
.site-header .header-layout-row .search-toggle,
.site-header .header-layout-row .theme-toggle,
.site-header .header-layout-row .submenu-toggle,
.site-header .header-layout-row .nav-child-indicator,
.site-header .header-layout-row .nav-child-indicator svg{
  color:var(--header-row-icon-color,#0b3157)!important;
  stroke:var(--header-row-icon-color,#0b3157)!important;
}

.site-header .header-layout-row .header-action-primary{
  background:var(--header-row-icon-color,#0b3157)!important;
  border-color:var(--header-row-icon-color,#0b3157)!important;
  color:#fff!important;
}

.site-header .header-layout-row .header-action-outline{
  background:transparent!important;
  border-color:var(--header-row-text-color,#17212b)!important;
}

.site-header .header-layout-row .header-social-links a{
  border-color:color-mix(in srgb,var(--header-row-text-color,#17212b) 24%,transparent)!important;
}

.site-header .header-layout-row svg [fill]:not([fill="none"]){
  fill:currentColor!important;
}


/* =========================================================
   Editorial article page layout v5.7.0
   ========================================================= */
.article-editorial-page{
  padding:24px 0 54px!important;
}
.article-breadcrumb{
  margin:0 0 12px!important;
  padding:0 2px!important;
  font-size:10px!important;
  color:var(--muted)!important;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.article-editorial-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:22px;
  align-items:start;
}
.article-editorial-main{min-width:0}
.article-editorial-card{
  min-width:0;
  background:transparent;
}
.article-editorial-header{
  margin:0 0 12px!important;
  padding:22px 26px!important;
  border:1px solid var(--line)!important;
  border-radius:18px!important;
  background:var(--paper)!important;
  box-shadow:var(--shadow-sm)!important;
}
.article-heading-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:10px;
}
.article-time-compact{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--muted);
  font-size:10px;
}
.article-time-compact span{
  padding-inline-start:12px;
  border-inline-start:1px solid var(--line);
}
.article-editorial-header h1{
  margin:0!important;
  font-size:clamp(26px,3.2vw,42px)!important;
  line-height:1.45!important;
  letter-spacing:-.7px;
}
.article-editorial-header .article-deck{
  max-width:850px;
  margin:10px 0 0!important;
  font-size:14px!important;
  line-height:2!important;
  color:var(--muted)!important;
}
.article-author-inline{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--line);
}
.article-author-inline .avatar{
  width:36px!important;
  height:36px!important;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-size:12px;
}
.article-author-inline div{
  display:flex;
  flex-direction:column;
  line-height:1.5;
}
.article-author-inline strong{font-size:11px}
.article-author-inline small{font-size:9px;color:var(--muted)}

.article-editorial-hero{
  margin:0 0 12px!important;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px!important;
  background:var(--paper);
}
.article-editorial-hero img{
  display:block;
  width:100%;
  max-height:620px;
  aspect-ratio:16/9;
  object-fit:cover;
}
.article-editorial-hero figcaption{
  padding:8px 14px;
  font-size:9px;
  color:var(--muted);
}

.article-editorial-body{
  margin:0!important;
  padding:26px clamp(22px,4vw,46px)!important;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--paper);
  box-shadow:var(--shadow-sm);
  font-size:15px!important;
  line-height:2.25!important;
}
.article-editorial-body>p:first-child{margin-top:0}
.article-editorial-body p{margin:0 0 17px}
.article-editorial-body h2,
.article-editorial-body h3,
.article-editorial-body h4{
  margin:28px 0 12px;
  line-height:1.7;
}
.article-editorial-body img{
  max-width:100%;
  height:auto;
  border-radius:14px;
}
.article-media-block{
  margin:24px 0!important;
}
.article-media-block video{
  display:block;
  width:100%!important;
  max-height:620px;
  border-radius:15px;
  background:#000;
}
.article-subhead,
.article-related-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid var(--line);
}
.article-subhead span,
.article-related-head span{
  display:block;
  color:var(--gold);
  font-size:9px;
  font-weight:800;
}
.article-subhead h2,
.article-related-head h2{
  margin:2px 0 0!important;
  font-size:18px!important;
}
.article-gallery-compact{
  margin:26px 0 18px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
}
.article-gallery-compact .article-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.article-gallery-compact figure{
  margin:0;
  min-width:0;
}
.article-gallery-compact img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:11px;
}
.article-gallery-compact figcaption{
  margin-top:5px;
  font-size:9px;
  color:var(--muted);
}

.article-tags{
  margin-top:22px!important;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.article-share-bottom{
  display:grid;
  grid-template-columns:minmax(0,1fr) 150px;
  gap:18px;
  align-items:start;
  margin-top:22px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface);
}
.article-share-title{
  display:flex;
  flex-direction:column;
}
.article-share-title strong{font-size:13px}
.article-share-title small{font-size:9px;color:var(--muted)}
.article-share-buttons{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.article-share-buttons button{
  width:100%;
  min-height:34px;
  padding:5px 10px;
  border:1px solid var(--line);
  border-radius:9px;
  background:var(--paper);
  color:var(--ink);
  cursor:pointer;
  font:inherit;
  font-size:10px;
}
.article-share-buttons button:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.article-editorial-aside{
  min-width:0;
  padding:0!important;
}
.article-popular-card{
  position:sticky;
  top:82px;
  padding:16px!important;
  border-radius:16px!important;
}
.article-popular-card .sidebar-title{
  margin-bottom:8px;
  padding-bottom:10px;
}
.article-popular-card .sidebar-title h2{
  margin:2px 0 0;
  font-size:19px;
}
.article-popular-card .sidebar-title span{
  font-size:8px;
  color:var(--muted);
}
.article-popular-list{
  display:grid;
  gap:0;
}
.article-popular-item{
  display:grid!important;
  grid-template-columns:76px minmax(0,1fr)!important;
  gap:10px!important;
  align-items:center!important;
  min-height:82px;
  padding:10px 0!important;
  border-bottom:1px solid var(--line);
}
.article-popular-item:last-child{border-bottom:0}
.article-popular-item img{
  width:76px!important;
  height:62px!important;
  margin:0!important;
  border-radius:9px!important;
  object-fit:cover;
}
.article-popular-item>span{
  min-width:0;
  display:flex!important;
  flex-direction:column;
  justify-content:center;
  gap:4px;
}
.article-popular-item strong{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  font-size:11px!important;
  line-height:1.8!important;
}
.article-popular-item small{
  font-size:8px!important;
  color:var(--muted);
}

.article-related-section{
  margin:26px 0 0!important;
  padding:22px!important;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--paper);
}
.article-related-grid{
  margin-top:16px;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
}
.article-related-grid .analysis-card{
  min-width:0;
}
.article-related-grid .analysis-image img{
  aspect-ratio:16/10;
  object-fit:cover;
}

html[data-theme="dark"] .article-editorial-header,
html[data-theme="dark"] .article-editorial-body,
html[data-theme="dark"] .article-editorial-hero,
html[data-theme="dark"] .article-related-section{
  background:var(--paper)!important;
  border-color:var(--line)!important;
}

@media(max-width:980px){
  .article-editorial-grid{
    grid-template-columns:minmax(0,1fr) 240px;
    gap:16px;
  }
  .article-popular-item{
    grid-template-columns:64px minmax(0,1fr)!important;
  }
  .article-popular-item img{
    width:64px!important;
    height:56px!important;
  }
}

@media(max-width:800px){
  .article-editorial-grid{
    grid-template-columns:1fr;
  }
  .article-editorial-aside{
    order:2;
  }
  .article-popular-card{
    position:static;
  }
  .article-popular-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0 14px;
  }
  .article-related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

@media(max-width:620px){
  .article-editorial-page{padding-top:14px!important}
  .article-editorial-header{
    padding:17px!important;
    border-radius:14px!important;
  }
  .article-heading-row{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .article-time-compact{
    width:100%;
    justify-content:space-between;
  }
  .article-editorial-header h1{
    font-size:27px!important;
  }
  .article-editorial-body{
    padding:20px 16px!important;
    border-radius:14px;
  }
  .article-editorial-hero{
    border-radius:14px!important;
  }
  .article-gallery-compact .article-gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .article-share-bottom{
    grid-template-columns:1fr;
  }
  .article-share-buttons{
    width:100%;
  }
  .article-popular-list,
  .article-related-grid{
    grid-template-columns:1fr!important;
  }
  .article-related-section{
    padding:16px!important;
  }
}


/* News slider UX patch: edge arrows, centered dots, smooth track and adaptive height */
.builder-news-slider{position:relative;overflow:hidden}
.builder-news-slider-viewport{position:relative;min-height:0!important;overflow:hidden;touch-action:pan-y;cursor:grab;transition:height .32s cubic-bezier(.22,.75,.25,1)}
.builder-news-slider.is-dragging .builder-news-slider-viewport{cursor:grabbing}
.builder-news-slider-track{display:flex;width:100%;align-items:flex-start;will-change:transform;transform:translate3d(0,0,0)}
.builder-news-slide-page{position:relative!important;inset:auto!important;flex:0 0 100%;width:100%;opacity:1!important;visibility:visible!important;transition:none!important}
.builder-news-slide-page[aria-hidden="true"]{pointer-events:none}
.builder-news-slide-page .builder-news-slide{height:auto;min-height:0}
.builder-news-slide-page .builder-news-slide>div{flex:1 1 auto}

.builder-news-slider .builder-inline-slider-controls{position:absolute;inset:0;z-index:8;display:block;margin:0;pointer-events:none}
.builder-news-slider .builder-inline-slider-controls button{position:absolute;top:50%;z-index:9;display:grid;place-items:center;width:42px;height:42px;margin:0;transform:translateY(-50%) scale(.92);border:1px solid rgba(17,43,67,.14);border-radius:50%;background:rgba(255,255,255,.94);color:var(--navy);box-shadow:0 8px 25px rgba(4,18,32,.16);opacity:0;visibility:hidden;pointer-events:auto;transition:opacity .2s ease,visibility .2s ease,transform .2s ease,background .2s ease}
.builder-news-slider .builder-inline-slider-controls [data-paged-prev]{right:10px}
.builder-news-slider .builder-inline-slider-controls [data-paged-next]{left:10px}
.builder-news-slider:hover .builder-inline-slider-controls button,
.builder-news-slider:focus-within .builder-inline-slider-controls button{opacity:1;visibility:visible;transform:translateY(-50%) scale(1)}
.builder-news-slider .builder-inline-slider-controls button:hover:not(:disabled){background:var(--navy);color:#fff}
.builder-news-slider .builder-inline-slider-controls button:disabled{opacity:.22!important;cursor:default}

.builder-news-slider .builder-slider-dots{position:absolute;left:50%;right:auto;bottom:10px;z-index:10;display:flex;align-items:center;justify-content:center;gap:6px;margin:0;padding:7px 10px;transform:translateX(-50%);border-radius:999px;background:rgba(255,255,255,.86);box-shadow:0 5px 18px rgba(4,18,32,.10);backdrop-filter:blur(8px)}
.builder-news-slider .builder-slider-dots button{width:8px;height:8px;margin:0;border:0;border-radius:99px;background:#c5ccd2;transition:width .2s ease,background .2s ease}
.builder-news-slider .builder-slider-dots button.is-active{width:24px;background:var(--gold)}
.builder-news-slider:has(.builder-slider-dots) .builder-news-slider-viewport{padding-bottom:34px}

.builder-news-slider-no-image .builder-news-slide-page .builder-news-slide>div{padding-top:14px}
.builder-news-slider-no-excerpt .builder-news-slide-page .builder-news-slide p{display:none}
.builder-news-slider-no-category .builder-news-slide-page .builder-news-slide>div>span{display:none}
.builder-news-slider-no-image.builder-news-slider-no-excerpt .builder-news-slide-page .builder-news-slide{justify-content:center}
.builder-news-slider-no-image.builder-news-slider-no-excerpt .builder-news-slide-page .builder-news-slide>div{flex:0 1 auto;padding-block:16px}
.builder-news-slider-no-image.builder-news-slider-no-excerpt.builder-news-slider-no-category .builder-news-slide-page .builder-news-slide>div{padding-block:12px}

@media (hover:none){
  .builder-news-slider .builder-inline-slider-controls button{opacity:.88;visibility:visible;transform:translateY(-50%) scale(.9)}
}
@media(max-width:620px){
  .builder-news-slider .builder-inline-slider-controls button{width:36px;height:36px}
  .builder-news-slider .builder-inline-slider-controls [data-paged-prev]{right:6px}
  .builder-news-slider .builder-inline-slider-controls [data-paged-next]{left:6px}
  .builder-news-slider .builder-slider-dots{bottom:7px}
  .builder-news-slider:has(.builder-slider-dots) .builder-news-slider-viewport{padding-bottom:30px}
}


/* Paged builder slider: real horizontal pages, reliable images and centered overlay dots */
.builder-news-slider{
  position:relative;
  overflow:hidden;
  padding-bottom:0;
}
.builder-news-slider-viewport{
  position:relative;
  overflow:hidden;
  min-height:0!important;
  height:auto;
  direction:ltr;
  touch-action:pan-y;
}
.builder-news-slider-track{
  display:flex;
  align-items:flex-start;
  width:100%;
  will-change:transform;
  transform:translate3d(0,0,0);
}
.builder-news-slide-page{
  position:relative!important;
  inset:auto!important;
  flex:0 0 100%;
  width:100%;
  min-width:100%;
  display:grid!important;
  grid-template-columns:repeat(var(--builder-slider-visible,1),minmax(0,1fr));
  gap:14px;
  align-items:stretch;
  opacity:1!important;
  visibility:visible!important;
  direction:rtl;
  transition:none!important;
}
.builder-news-slide-page[aria-hidden="true"]{
  pointer-events:none;
}
.builder-news-slide-page .builder-news-slide>img{
  display:block!important;
  opacity:1!important;
  visibility:visible!important;
  width:100%;
  height:190px;
  object-fit:cover;
  background:#eef2f5;
}
.builder-news-slider .builder-inline-slider-controls{
  position:absolute;
  inset:0;
  z-index:12;
  margin:0;
  pointer-events:none;
}
.builder-news-slider .builder-inline-slider-controls button{
  position:absolute;
  top:50%;
  transform:translateY(-50%) scale(.92);
  width:42px;
  height:42px;
  opacity:0;
  visibility:hidden;
  pointer-events:auto;
  border:1px solid rgba(11,49,87,.14);
  background:rgba(255,255,255,.94);
  box-shadow:0 8px 25px rgba(4,18,32,.16);
  transition:opacity .2s ease,visibility .2s ease,transform .2s ease;
}
.builder-news-slider .builder-inline-slider-controls [data-paged-prev]{right:12px}
.builder-news-slider .builder-inline-slider-controls [data-paged-next]{left:12px}
.builder-news-slider:hover .builder-inline-slider-controls button,
.builder-news-slider:focus-within .builder-inline-slider-controls button{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) scale(1);
}
.builder-news-slider .builder-inline-slider-controls button:disabled{
  opacity:.28!important;
  cursor:default;
}
.builder-news-slider .builder-slider-dots{
  position:absolute;
  z-index:14;
  left:50%;
  right:auto!important;
  bottom:10px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:max-content;
  max-width:calc(100% - 28px);
  margin:0!important;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:999px;
  background:rgba(4,18,32,.50);
  box-shadow:0 5px 18px rgba(4,18,32,.16);
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
}
.builder-news-slider .builder-slider-dots button{
  width:7px;
  height:7px;
  min-width:7px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.60);
  transition:width .25s ease,background .25s ease,transform .25s ease;
}
.builder-news-slider .builder-slider-dots button.is-active{
  width:24px;
  background:var(--gold);
}
.builder-news-slider:has(.builder-slider-dots) .builder-news-slide-page{
  padding-bottom:42px;
}
@media(max-width:900px){
  .builder-news-slide-page{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .builder-news-slide-page{grid-template-columns:1fr}
  .builder-news-slider .builder-inline-slider-controls button{width:37px;height:37px}
  .builder-news-slider .builder-inline-slider-controls [data-paged-prev]{right:7px}
  .builder-news-slider .builder-inline-slider-controls [data-paged-next]{left:7px}
  .builder-news-slider .builder-slider-dots{bottom:7px}
}


/* Header/date/social + compact article header patch v5.7.2 */
.site-header .header-layout-row .header-date{
  color:var(--header-row-text-color,#17212b)!important;
  opacity:1!important;
}
.site-header .header-layout-row .header-social-icon-link{
  width:40px!important;
  height:40px!important;
  min-height:40px!important;
  padding:0!important;
  border-radius:50%!important;
  display:inline-grid!important;
  place-items:center!important;
  color:var(--header-row-icon-color,#0b3157)!important;
  border:1px solid color-mix(in srgb,var(--header-row-icon-color,#0b3157) 45%,transparent)!important;
  background:color-mix(in srgb,var(--header-row-icon-color,#0b3157) 8%,transparent)!important;
}
.site-header .header-layout-row .header-social-icon-link svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.8!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.site-header .header-layout-row .header-social-icon-link:hover{
  background:var(--header-row-icon-color,#0b3157)!important;
  color:#fff!important;
  transform:translateY(-1px);
}

.article-editorial-header{
  padding:16px 20px!important;
  margin-bottom:10px!important;
  border-radius:15px!important;
}
.article-heading-row{
  margin-bottom:7px!important;
  gap:12px!important;
}
.article-editorial-header h1{
  font-size:clamp(25px,2.6vw,36px)!important;
  line-height:1.4!important;
  letter-spacing:-.45px!important;
}
.article-editorial-header .article-deck{
  margin-top:6px!important;
  font-size:12px!important;
  line-height:1.85!important;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article-author-inline{
  margin-top:9px!important;
  padding-top:9px!important;
  gap:8px!important;
}
.article-author-inline .avatar{
  width:32px!important;
  height:32px!important;
  flex-basis:32px!important;
}
.article-time-compact{font-size:9px!important;gap:9px!important}
.article-time-compact span{padding-inline-start:9px!important}

@media(max-width:700px){
  .site-header .header-layout-row .header-social-icon-link{
    width:36px!important;height:36px!important;min-height:36px!important;
  }
  .article-editorial-header{padding:14px 15px!important}
  .article-heading-row{align-items:flex-start!important;flex-direction:column!important;gap:6px!important}
  .article-editorial-header h1{font-size:25px!important}
  .article-author-inline{margin-top:8px!important;padding-top:8px!important}
}


/* Header row JSON color + ultra compact article heading patch v5.7.3 */
.site-header .header-layout-row .header-date{
  color:var(--header-row-text-color)!important;
  -webkit-text-fill-color:var(--header-row-text-color)!important;
  opacity:1!important;
}

.article-editorial-header{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  grid-template-areas:
    "title meta"
    "deck author"!important;
  align-items:center!important;
  column-gap:18px!important;
  row-gap:5px!important;
  min-height:0!important;
  padding:12px 18px!important;
  margin-bottom:9px!important;
}
.article-editorial-header .article-heading-row{
  grid-area:meta!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-end!important;
  justify-content:center!important;
  gap:5px!important;
  margin:0!important;
  min-width:150px!important;
}
.article-editorial-header h1{
  grid-area:title!important;
  margin:0!important;
  font-size:clamp(25px,2.5vw,35px)!important;
  line-height:1.25!important;
  letter-spacing:-.4px!important;
  align-self:center!important;
}
.article-editorial-header .article-deck{
  grid-area:deck!important;
  margin:0!important;
  font-size:11px!important;
  line-height:1.55!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  display:block!important;
}
.article-editorial-header .article-author-inline{
  grid-area:author!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  min-width:150px!important;
  justify-self:end!important;
  gap:7px!important;
}
.article-editorial-header .article-author-inline .avatar{
  width:30px!important;
  height:30px!important;
  flex:0 0 30px!important;
  font-size:11px!important;
}
.article-editorial-header .article-author-inline strong{font-size:10px!important;line-height:1.25!important}
.article-editorial-header .article-author-inline small{font-size:8px!important;line-height:1.25!important}
.article-editorial-header .article-time-compact{font-size:8px!important;line-height:1.3!important;gap:7px!important}
.article-editorial-header .category-pill{font-size:9px!important;padding:5px 10px!important}

@media(max-width:760px){
  .article-editorial-header{
    grid-template-columns:1fr!important;
    grid-template-areas:"meta" "title" "deck" "author"!important;
    padding:12px 14px!important;
    row-gap:7px!important;
  }
  .article-editorial-header .article-heading-row{
    min-width:0!important;
    width:100%!important;
    flex-direction:row!important;
    justify-content:space-between!important;
    align-items:center!important;
  }
  .article-editorial-header .article-author-inline{
    min-width:0!important;
    justify-self:start!important;
  }
  .article-editorial-header h1{font-size:24px!important;line-height:1.35!important}
  .article-editorial-header .article-deck{white-space:normal!important;display:-webkit-box!important;-webkit-line-clamp:1!important;-webkit-box-orient:vertical!important}
}

/* Article heading layout + full summary patch v5.7.4 */
.article-editorial-header{
  grid-template-columns:minmax(0,1fr) 180px!important;
  grid-template-areas:
    "title meta"
    "title author"
    "deck deck"!important;
  align-items:center!important;
  column-gap:18px!important;
  row-gap:4px!important;
  padding:12px 18px 14px!important;
}
.article-editorial-header h1{
  grid-area:title!important;
  align-self:center!important;
  margin:0!important;
  padding:0!important;
}
.article-editorial-header .article-heading-row{
  grid-area:meta!important;
  width:100%!important;
  min-width:0!important;
  align-items:flex-start!important;
  justify-content:flex-start!important;
  gap:7px!important;
  padding:0 0 6px!important;
  margin:0!important;
  border-bottom:1px solid var(--line)!important;
}
.article-editorial-header .article-time-compact{
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:5px 8px!important;
  width:100%!important;
  font-size:8.5px!important;
  line-height:1.45!important;
}
.article-editorial-header .article-time-compact span{
  padding-inline-start:8px!important;
}
.article-editorial-header .article-author-inline{
  grid-area:author!important;
  width:100%!important;
  min-width:0!important;
  justify-self:stretch!important;
  justify-content:flex-start!important;
  align-items:center!important;
  margin:0!important;
  padding:6px 0 0!important;
  gap:8px!important;
}
.article-editorial-header .article-deck{
  grid-area:deck!important;
  width:100%!important;
  max-width:none!important;
  margin:7px 0 0!important;
  padding-top:8px!important;
  border-top:1px solid var(--line)!important;
  font-size:11.5px!important;
  line-height:1.9!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:clip!important;
  display:block!important;
  -webkit-line-clamp:unset!important;
  -webkit-box-orient:unset!important;
}

@media(max-width:760px){
  .article-editorial-header{
    grid-template-columns:1fr!important;
    grid-template-areas:
      "title"
      "deck"
      "meta"
      "author"!important;
    row-gap:7px!important;
  }
  .article-editorial-header .article-heading-row{
    flex-direction:row!important;
    align-items:center!important;
    justify-content:space-between!important;
    padding:6px 0!important;
    border-top:1px solid var(--line)!important;
    border-bottom:1px solid var(--line)!important;
  }
  .article-editorial-header .article-deck{
    margin-top:2px!important;
    padding-top:0!important;
    border-top:0!important;
  }
}


/* News slider interaction and indicator refinement */
.builder-news-slider,
.builder-news-slider *{
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
}
.builder-news-slider .builder-news-slider-viewport{
  touch-action:pan-y;
  cursor:grab;
}
.builder-news-slider.is-dragging .builder-news-slider-viewport{cursor:grabbing}
.builder-news-slider img,
.builder-news-slider a{
  -webkit-user-drag:none;
}
.builder-news-slider .builder-slider-dots{
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  padding:4px 6px !important;
}

/* Slider inactive indicators: improve visibility on light backgrounds */
.builder-news-slider .builder-slider-dots button:not(.is-active){
  background:#8b95a1 !important;
  opacity:1 !important;
  box-shadow:0 0 0 1px rgba(4,18,32,.08);
}
.builder-news-slider .builder-slider-dots button:not(.is-active):hover{
  background:#687583 !important;
  transform:scale(1.12);
}
.builder-news-slider .builder-slider-dots button.is-active{
  background:var(--gold,#d8940c) !important;
  opacity:1 !important;
}

/* Video cards: clear play state and in-image launch control */
.builder-card-media{position:relative;overflow:hidden}
.builder-card-media>a{display:block;width:100%;height:100%}
.builder-card-media img{display:block;width:100%;height:100%;object-fit:cover}
.builder-video-card-indicator{
  position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);
  width:48px;height:48px;border-radius:50%;display:grid;place-items:center;
  background:rgba(4,18,32,.68);border:1px solid rgba(255,255,255,.72);
  box-shadow:0 8px 24px rgba(4,18,32,.25);pointer-events:none;z-index:3;
}
.builder-video-card-indicator svg{width:23px;height:23px;fill:#fff;margin-left:2px}
.builder-video-image-button{
  position:absolute!important;right:10px!important;bottom:10px!important;left:auto!important;top:auto!important;
  width:36px!important;height:36px!important;min-width:36px!important;padding:0!important;border-radius:50%!important;
  display:grid!important;place-items:center!important;background:rgba(255,255,255,.94)!important;
  border:1px solid rgba(4,18,32,.12)!important;box-shadow:0 5px 16px rgba(4,18,32,.2)!important;
  color:var(--navy,#0c376b)!important;z-index:5!important;font-size:0!important;
}
.builder-video-image-button svg{width:18px;height:18px;fill:currentColor;margin-left:2px}
.builder-video-image-button:hover{transform:translateY(-2px) scale(1.04)}
.builder-hero-media{position:absolute;inset:0;width:100%;height:100%}
.builder-hero-slide>.builder-hero-media img{width:100%;height:100%;object-fit:cover}
.builder-slider-card-media{width:100%;aspect-ratio:16/9}
.builder-grid-image.builder-card-media,.builder-list-image.builder-card-media{display:block}
.builder-list-image .builder-video-card-indicator{width:32px;height:32px}
.builder-list-image .builder-video-card-indicator svg{width:15px;height:15px}
.builder-list-image .builder-video-image-button{width:27px!important;height:27px!important;min-width:27px!important;right:5px!important;bottom:5px!important}
.builder-list-image .builder-video-image-button svg{width:13px;height:13px}

/* Hero slider settings/image restoration patch */
.builder-hero-slider{position:relative}
.builder-hero-viewport{position:relative;overflow:hidden}
.builder-hero-slide>img{display:block;width:100%;height:100%;object-fit:cover;position:absolute;inset:0;z-index:0}
.builder-hero-slide>.builder-video-play-indicator,.builder-hero-slide>.builder-media-open{z-index:4}
.builder-hero-block-title{position:relative;z-index:6;margin-bottom:10px}
.builder-hero-dots{position:absolute;left:50%;bottom:14px;transform:translateX(-50%);z-index:7;display:flex;align-items:center;justify-content:center;gap:7px}
.builder-hero-dots button{width:8px;height:8px;border:0;border-radius:999px;padding:0;background:#8f98a3;cursor:pointer;transition:width .22s ease,background-color .22s ease}
.builder-hero-dots button.is-active{width:24px;background:var(--accent,#d89412)}
.builder-hero-no-image .builder-hero-slide{background:linear-gradient(135deg,#153b67,#0b2441)}


/* Hero slider image + responsive height hotfix */
.builder-hero-slider{
  min-height:0!important;
  height:auto!important;
  overflow:hidden;
}
.builder-hero-viewport{
  position:relative!important;
  min-height:0!important;
  height:clamp(300px,38vw,460px)!important;
  background:#0b1e2c;
  overflow:hidden;
}
.builder-hero-slide{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
}
.builder-hero-slide>img{
  position:absolute!important;
  inset:0!important;
  z-index:0!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  object-fit:cover!important;
  object-position:center!important;
  opacity:1!important;
  visibility:visible!important;
}
.builder-hero-shade{
  z-index:1!important;
  background:linear-gradient(180deg,rgba(4,18,32,.04) 20%,rgba(4,18,32,.76) 100%)!important;
  pointer-events:none;
}
.builder-hero-copy{z-index:2!important}
.builder-hero-slide.is-active{opacity:1!important;visibility:visible!important}
@media(max-width:800px){
  .builder-hero-viewport{height:clamp(270px,62vw,380px)!important}
}
@media(max-width:520px){
  .builder-hero-viewport{height:280px!important}
  .builder-hero-copy h2{font-size:20px!important;line-height:1.65!important}
}

/* Hero slider compact layout: remove reserved title bar and reduce height */
.builder-hero-slider{
  position:relative!important;
  min-height:0!important;
  height:auto!important;
  overflow:hidden!important;
}
.builder-hero-block-title{
  position:absolute!important;
  top:16px!important;
  right:20px!important;
  left:auto!important;
  z-index:8!important;
  width:auto!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  pointer-events:none!important;
}
.builder-hero-block-title::before,
.builder-hero-block-title::after{
  display:none!important;
}
.builder-hero-block-title h2{
  margin:0!important;
  padding:0!important;
  border:0!important;
  color:#fff!important;
  font-size:15px!important;
  line-height:1.5!important;
  text-shadow:0 1px 5px rgba(0,0,0,.55)!important;
}
.builder-hero-viewport{
  display:block!important;
  width:100%!important;
  height:clamp(320px,32vw,390px)!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
}
.builder-hero-slide{
  top:0!important;
  margin:0!important;
  padding:0!important;
}
.builder-hero-slide>img{
  top:0!important;
  object-position:center center!important;
}
@media(max-width:800px){
  .builder-hero-viewport{height:clamp(260px,54vw,330px)!important}
  .builder-hero-block-title{top:12px!important;right:14px!important}
}
@media(max-width:520px){
  .builder-hero-viewport{height:240px!important}
  .builder-hero-block-title h2{font-size:13px!important}
  .builder-hero-copy{right:18px!important;left:18px!important;bottom:34px!important}
  .builder-hero-copy h2{font-size:19px!important;line-height:1.55!important;margin:4px 0!important}
}

/* Builder category tabs: list and card slider */
.builder-news-slider .builder-news-head-with-tabs{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.builder-news-slider .builder-tab-panel{width:100%}
.builder-news-slider .builder-tab-panel[hidden]{display:none!important}
.builder-news-slider-instance{position:relative;min-width:0}
.builder-tab-empty{margin:0;padding:24px;text-align:center;color:var(--muted,#6b7280)}
@media (max-width:700px){.builder-news-slider .builder-news-head-with-tabs{align-items:flex-start}.builder-news-tabs{width:100%;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.builder-news-tabs button{white-space:nowrap}}

/* Compact category tabs for narrow list blocks */
.builder-news-tab-control{min-width:0;margin-inline-start:auto}
.builder-news-tab-select-wrap{display:none;position:relative;min-width:145px}
.builder-news-tab-select{width:100%;height:36px;padding:6px 34px 6px 12px;border:1px solid var(--line);border-radius:10px;background:var(--paper,#fff);color:var(--ink);font:inherit;font-size:11px;cursor:pointer;outline:none}
.builder-news-tab-select:focus{border-color:var(--navy);box-shadow:0 0 0 3px rgba(16,73,123,.10)}
.builder-news-tab-control.is-combo .builder-news-tabs{display:none!important}
.builder-news-tab-control.is-combo .builder-news-tab-select-wrap{display:block}
.builder-news-list .builder-news-head-with-tabs{container-type:inline-size}
@container (max-width:470px){
  .builder-news-list .builder-news-tab-control .builder-news-tabs{display:none!important}
  .builder-news-list .builder-news-tab-control .builder-news-tab-select-wrap{display:block}
}
@media (max-width:560px){
  .builder-news-list .builder-news-head-with-tabs{align-items:center;flex-wrap:nowrap!important}
  .builder-news-list .builder-news-tab-control{flex:0 1 165px;max-width:52%}
  .builder-news-list .builder-news-tab-select-wrap{min-width:0}
}


/* Hero slider transition and shape options */
.builder-hero-slider .builder-hero-slide{transform-origin:center;will-change:opacity,transform;backface-visibility:hidden}
.builder-hero-transition-fade .builder-hero-slide{opacity:0;transform:none;transition:opacity .55s ease,visibility .55s ease}
.builder-hero-transition-fade .builder-hero-slide.is-active{opacity:1;transform:none}
.builder-hero-transition-slide .builder-hero-slide{opacity:1;transform:translateX(105%);visibility:visible!important;transition:transform .58s cubic-bezier(.22,.61,.36,1)}
.builder-hero-transition-slide .builder-hero-slide.is-active{transform:translateX(0);z-index:2}
.builder-hero-transition-slide[data-slide-direction="next"] .builder-hero-slide.is-before{transform:translateX(-105%);z-index:1}
.builder-hero-transition-slide[data-slide-direction="prev"] .builder-hero-slide{transform:translateX(-105%)}
.builder-hero-transition-slide[data-slide-direction="prev"] .builder-hero-slide.is-after{transform:translateX(105%);z-index:1}
.builder-hero-transition-vertical .builder-hero-slide{opacity:1;transform:translateY(105%);visibility:visible!important;transition:transform .58s cubic-bezier(.22,.61,.36,1)}
.builder-hero-transition-vertical .builder-hero-slide.is-active{transform:translateY(0);z-index:2}
.builder-hero-transition-vertical[data-slide-direction="next"] .builder-hero-slide.is-before{transform:translateY(-105%)}
.builder-hero-transition-vertical[data-slide-direction="prev"] .builder-hero-slide{transform:translateY(-105%)}
.builder-hero-transition-vertical[data-slide-direction="prev"] .builder-hero-slide.is-after{transform:translateY(105%)}
.builder-hero-transition-zoom .builder-hero-slide{opacity:0;transform:scale(1.12);transition:opacity .62s ease,transform .72s cubic-bezier(.22,.61,.36,1),visibility .62s ease}
.builder-hero-transition-zoom .builder-hero-slide.is-active{opacity:1;transform:scale(1)}
.builder-hero-transition-flip .builder-hero-viewport{perspective:1200px}
.builder-hero-transition-flip .builder-hero-slide{opacity:0;transform:rotateY(-18deg) scale(.96);transition:opacity .55s ease,transform .65s cubic-bezier(.22,.61,.36,1),visibility .55s ease}
.builder-hero-transition-flip .builder-hero-slide.is-active{opacity:1;transform:rotateY(0) scale(1)}

.builder-hero-shape-standard{border-radius:14px!important}
.builder-hero-shape-rounded{border-radius:30px!important}
.builder-hero-shape-rounded .builder-hero-viewport{border-radius:30px!important}
.builder-hero-shape-cinema .builder-hero-viewport{height:clamp(260px,26vw,340px)!important}
.builder-hero-shape-cinema .builder-hero-copy{right:6%!important;left:6%!important;bottom:12%!important}
.builder-hero-shape-split{background:var(--paper,#fff)!important}
.builder-hero-shape-split .builder-hero-slide{display:grid!important;grid-template-columns:minmax(0,1.65fr) minmax(260px,.75fr);background:var(--paper,#fff)!important}
.builder-hero-shape-split .builder-hero-slide>img{position:relative!important;grid-column:1;height:100%!important}
.builder-hero-shape-split .builder-hero-shade{display:none!important}
.builder-hero-shape-split .builder-hero-copy{position:relative!important;grid-column:2;grid-row:1;right:auto!important;left:auto!important;bottom:auto!important;display:flex;flex-direction:column;justify-content:center;padding:34px;color:var(--ink,#0b1e2c)!important;background:var(--paper,#fff)}
.builder-hero-shape-split .builder-hero-copy h2 a{color:var(--ink,#0b1e2c)!important}
.builder-hero-shape-split .builder-video-card-indicator{left:auto;right:calc(50% - 30px)}
.builder-hero-shape-full{border:0!important;border-radius:0!important;box-shadow:none!important}
.builder-hero-shape-full .builder-hero-viewport{border-radius:0!important}
@media(max-width:760px){
 .builder-hero-shape-split .builder-hero-slide{display:block!important}
 .builder-hero-shape-split .builder-hero-slide>img{position:absolute!important}
 .builder-hero-shape-split .builder-hero-shade{display:block!important}
 .builder-hero-shape-split .builder-hero-copy{position:absolute!important;right:18px!important;left:18px!important;bottom:34px!important;padding:0!important;color:#fff!important;background:transparent!important}
 .builder-hero-shape-split .builder-hero-copy h2 a{color:#fff!important}
}
@media(prefers-reduced-motion:reduce){.builder-hero-slider .builder-hero-slide{transition:none!important}}

/* Hero slider: authoritative transition and shape rules */
.builder-hero-slider[data-hero-slider]{
  --hero-radius:16px;
  position:relative!important;
  overflow:hidden!important;
  border-radius:var(--hero-radius)!important;
}
.builder-hero-slider[data-hero-slider] .builder-hero-viewport{
  position:relative!important;
  height:clamp(300px,34vw,430px)!important;
  min-height:0!important;
  overflow:hidden!important;
  border-radius:inherit!important;
  background:#0b1e2c;
}
.builder-hero-slider[data-hero-slider] .builder-hero-slide{
  position:absolute!important;
  inset:0!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:0;
  transform:none;
  transition:none;
  backface-visibility:hidden;
  will-change:opacity,transform;
}
.builder-hero-slider[data-hero-slider] .builder-hero-slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:2;
}
.builder-hero-slider[data-hero-slider] .builder-hero-slide>img{
  position:absolute!important;
  inset:0!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

/* transitions */
.builder-hero-transition-fade[data-hero-slider] .builder-hero-slide{transition:opacity .55s ease,visibility .55s ease}
.builder-hero-transition-slide[data-hero-slider] .builder-hero-slide{visibility:visible;opacity:1;transform:translate3d(105%,0,0);transition:transform .62s cubic-bezier(.22,.75,.25,1)}
.builder-hero-transition-slide[data-hero-slider] .builder-hero-slide.is-active{transform:translate3d(0,0,0)}
.builder-hero-transition-slide[data-slide-direction="next"] .builder-hero-slide.is-before{transform:translate3d(-105%,0,0);z-index:1}
.builder-hero-transition-slide[data-slide-direction="prev"] .builder-hero-slide{transform:translate3d(-105%,0,0)}
.builder-hero-transition-slide[data-slide-direction="prev"] .builder-hero-slide.is-after{transform:translate3d(105%,0,0);z-index:1}
.builder-hero-transition-vertical[data-hero-slider] .builder-hero-slide{visibility:visible;opacity:1;transform:translate3d(0,105%,0);transition:transform .62s cubic-bezier(.22,.75,.25,1)}
.builder-hero-transition-vertical[data-hero-slider] .builder-hero-slide.is-active{transform:translate3d(0,0,0)}
.builder-hero-transition-vertical[data-slide-direction="next"] .builder-hero-slide.is-before{transform:translate3d(0,-105%,0);z-index:1}
.builder-hero-transition-vertical[data-slide-direction="prev"] .builder-hero-slide{transform:translate3d(0,-105%,0)}
.builder-hero-transition-vertical[data-slide-direction="prev"] .builder-hero-slide.is-after{transform:translate3d(0,105%,0);z-index:1}
.builder-hero-transition-zoom[data-hero-slider] .builder-hero-slide{transform:scale(1.12);transition:opacity .6s ease,transform .72s cubic-bezier(.22,.75,.25,1),visibility .6s ease}
.builder-hero-transition-zoom[data-hero-slider] .builder-hero-slide.is-active{transform:scale(1)}
.builder-hero-transition-flip[data-hero-slider] .builder-hero-viewport{perspective:1300px}
.builder-hero-transition-flip[data-hero-slider] .builder-hero-slide{transform:rotateY(-22deg) scale(.94);transform-origin:center right;transition:opacity .58s ease,transform .7s cubic-bezier(.22,.75,.25,1),visibility .58s ease}
.builder-hero-transition-flip[data-slide-direction="prev"] .builder-hero-slide{transform:rotateY(22deg) scale(.94);transform-origin:center left}
.builder-hero-transition-flip[data-hero-slider] .builder-hero-slide.is-active{transform:rotateY(0) scale(1)}

/* shapes */
.builder-hero-shape-standard[data-hero-slider]{--hero-radius:16px}
.builder-hero-shape-rounded[data-hero-slider]{--hero-radius:34px}
.builder-hero-shape-cinema[data-hero-slider] .builder-hero-viewport{height:clamp(250px,27vw,350px)!important;aspect-ratio:21/9}
.builder-hero-shape-full[data-hero-slider]{--hero-radius:0;border:0!important;box-shadow:none!important}
.builder-hero-shape-split[data-hero-slider]{background:var(--paper,#fff)!important}
.builder-hero-shape-split[data-hero-slider] .builder-hero-viewport{height:clamp(310px,32vw,410px)!important;background:var(--paper,#fff)}
.builder-hero-shape-split[data-hero-slider] .builder-hero-slide{
  display:grid!important;
  grid-template-columns:minmax(0,1.65fr) minmax(250px,.72fr)!important;
  background:var(--paper,#fff)!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-slide>img{position:relative!important;grid-column:1;grid-row:1;height:100%!important}
.builder-hero-shape-split[data-hero-slider] .builder-hero-shade{display:none!important}
.builder-hero-shape-split[data-hero-slider] .builder-hero-copy{
  position:relative!important;inset:auto!important;grid-column:2;grid-row:1;
  display:flex!important;flex-direction:column;justify-content:center;align-items:flex-start;
  padding:32px!important;background:var(--paper,#fff)!important;color:var(--ink,#0b1e2c)!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-copy h2 a{color:var(--ink,#0b1e2c)!important}
.builder-hero-shape-split[data-hero-slider] .builder-video-card-indicator{left:auto!important;right:calc(62% - 30px)!important}
@media(max-width:800px){
  .builder-hero-slider[data-hero-slider] .builder-hero-viewport{height:clamp(260px,62vw,360px)!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-slide{display:block!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-slide>img{position:absolute!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-shade{display:block!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-copy{position:absolute!important;right:18px!important;left:18px!important;bottom:34px!important;padding:0!important;background:transparent!important;color:#fff!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-copy h2 a{color:#fff!important}
}
@media(max-width:520px){.builder-hero-slider[data-hero-slider] .builder-hero-viewport{height:250px!important}}


/* Hero slider shapes — simplified, distinct and background-free */
.builder-hero-slider[data-hero-slider],
.builder-hero-slider[data-hero-slider] .builder-hero-viewport,
.builder-hero-slider[data-hero-slider] .builder-hero-slide{
  background:transparent!important;
}
.builder-hero-shape-standard[data-hero-slider]{
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.builder-hero-shape-standard[data-hero-slider] .builder-hero-viewport{
  border-radius:0!important;
}

/* Text + image: clean two-column editorial layout, no colored panel */
.builder-hero-shape-split[data-hero-slider]{
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:transparent!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-viewport{
  height:clamp(300px,31vw,390px)!important;
  border-radius:0!important;
  background:transparent!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-slide{
  display:grid!important;
  grid-template-columns:minmax(0,1.6fr) minmax(260px,.8fr)!important;
  align-items:stretch;
  background:transparent!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-slide>img{
  position:relative!important;
  inset:auto!important;
  grid-column:1;
  grid-row:1;
  width:100%!important;
  height:100%!important;
  border-radius:0!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-shade{display:none!important}
.builder-hero-shape-split[data-hero-slider] .builder-hero-copy{
  position:relative!important;
  inset:auto!important;
  grid-column:2;
  grid-row:1;
  display:flex!important;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:clamp(20px,3vw,44px)!important;
  color:var(--ink,#0b1e2c)!important;
  background:transparent!important;
  text-shadow:none!important;
}
.builder-hero-shape-split[data-hero-slider] .builder-hero-copy h2 a{
  color:var(--ink,#0b1e2c)!important;
}

/* Centered editorial: image-led, centered copy, no panel/background */
.builder-hero-shape-centered[data-hero-slider]{
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:transparent!important;
}
.builder-hero-shape-centered[data-hero-slider] .builder-hero-viewport{border-radius:0!important}
.builder-hero-shape-centered[data-hero-slider] .builder-hero-shade{
  display:block!important;
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.66))!important;
}
.builder-hero-shape-centered[data-hero-slider] .builder-hero-copy{
  right:8%!important;
  left:8%!important;
  bottom:50%!important;
  transform:translateY(50%)!important;
  max-width:820px;
  margin-inline:auto;
  text-align:center;
  align-items:center!important;
  background:transparent!important;
}
.builder-hero-shape-centered[data-hero-slider] .builder-hero-copy h2{
  margin-inline:auto;
}

@media(max-width:760px){
  .builder-hero-shape-split[data-hero-slider] .builder-hero-slide{display:block!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-slide>img{position:absolute!important;inset:0!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-shade{display:block!important}
  .builder-hero-shape-split[data-hero-slider] .builder-hero-copy{
    position:absolute!important;
    right:18px!important;
    left:18px!important;
    bottom:34px!important;
    padding:0!important;
    color:#fff!important;
    text-shadow:0 2px 12px rgba(0,0,0,.5)!important;
  }
  .builder-hero-shape-split[data-hero-slider] .builder-hero-copy h2 a{color:#fff!important}
  .builder-hero-shape-centered[data-hero-slider] .builder-hero-copy{right:20px!important;left:20px!important}
}

/* 2026-07-25 mobile navigation and responsive stability patch */
html,body{max-width:100%;overflow-x:clip}
img,video,iframe,svg{max-width:100%}
main{min-width:0}
.container{max-width:100%}

@media (max-width:850px){
  body.nav-open{overflow:hidden;touch-action:none}
  .site-header{z-index:100}
  .site-header>.mobile-menu-button{
    display:grid!important;
    position:absolute!important;
    top:12px!important;
    right:12px!important;
    width:44px;height:44px;
    z-index:120!important;
    background:var(--paper)!important;
    color:var(--navy)!important;
    border:1px solid var(--line)!important;
    box-shadow:0 8px 24px rgba(4,18,32,.12)
  }
  body.nav-open .site-header>.mobile-menu-button{position:fixed!important}
  .header-layout-grid{
    width:min(100% - 24px,1240px)!important;
    height:auto!important;
    min-height:0!important;
    grid-template-columns:1fr!important;
    gap:8px!important;
    padding-top:8px!important;
    padding-bottom:8px!important
  }
  .header-slot{width:100%;min-width:0;justify-content:center!important}
  .header-slot:has(.main-nav){height:0!important;padding:0!important;margin:0!important}
  .header-brand{max-width:calc(100vw - 86px)}
  .header-brand .brand-copy{min-width:0}
  .header-brand .brand-copy strong,.header-brand .brand-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

  .site-header .main-nav{
    display:block!important;
    position:fixed!important;
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(88vw,360px)!important;
    height:100dvh!important;
    max-height:100dvh!important;
    padding:14px 0 0!important;
    margin:0!important;
    overflow:hidden!important;
    transform:translate3d(105%,0,0)!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transition:transform .28s ease,visibility 0s linear .28s!important;
    border:0!important;
    border-radius:0!important;
    background:var(--paper)!important;
    box-shadow:-18px 0 48px rgba(4,18,32,.25)!important;
    z-index:115!important
  }
  body.nav-open .site-header .main-nav{
    transform:translate3d(0,0,0)!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transition:transform .28s ease!important
  }
  body.nav-open::after{
    content:"";position:fixed;inset:0;background:rgba(4,18,32,.58);
    backdrop-filter:blur(2px);z-index:110
  }
  .site-header .main-nav>.nav-inner{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    padding:0 14px 24px!important;
    overflow-y:auto!important;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch
  }
  .mobile-nav-head{
    position:sticky;top:0;z-index:3;display:flex!important;
    padding:0 4px 12px!important;background:var(--paper)!important
  }
  .mobile-nav-head button{cursor:pointer;color:var(--ink)}
  .nav-node{width:100%;height:auto!important;border-bottom:1px solid var(--line)}
  .nav-node-head{display:flex!important;width:100%;min-height:52px;height:auto!important}
  .nav-node-head>a{min-width:0;padding:14px 6px!important;border:0!important;white-space:normal!important;line-height:1.7}
  .nav-child-indicator{display:none!important}
  .submenu-toggle{display:grid!important;flex:0 0 42px;place-items:center}
  .normal-submenu,.mega-menu{display:none!important;position:static!important;width:100%!important;max-width:none!important;transform:none!important;opacity:1!important;visibility:visible!important;box-shadow:none!important}
  .nav-node.submenu-open>.normal-submenu,
  .nav-node.submenu-open>.mega-menu,
  .nav-node.submenu-open .nav-node-head+.normal-submenu,
  .nav-node.submenu-open .nav-node-head+.mega-menu{display:block!important}
  .normal-submenu{padding:4px 12px 10px!important;background:var(--surface)!important;border-radius:10px}
  .normal-submenu li,.normal-submenu a{width:100%}
  .normal-submenu a{padding:11px 8px!important;white-space:normal!important}

  .hero-grid,.content-layout,.footer-grid,.analysis-grid,.media-slide,
  .category-grid,.posts-grid,.news-grid,.builder-grid{grid-template-columns:minmax(0,1fr)!important}
  .sidebar{grid-template-columns:minmax(0,1fr)!important}
  .news-row{grid-template-columns:minmax(0,1fr)!important;gap:12px!important}
  .news-row img,.news-row-image{width:100%!important;height:auto!important;aspect-ratio:16/9;object-fit:cover}
  .site-search{grid-template-columns:auto minmax(0,1fr)!important}
  .site-search button{grid-column:1/-1;width:100%}
  .footer-grid{gap:26px!important}
  table{display:block;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
}

@media (max-width:560px){
  .container{width:min(100% - 20px,1240px)!important}
  .header-brand img{width:48px!important;height:48px!important}
  .header-brand .brand-copy strong{font-size:18px!important}
  .hero-slider,.hero-slider-viewport,.hero-slide,.hero-side-card{height:300px!important;min-height:300px!important}
  .hero-overlay-content{padding:18px!important}
  .hero-overlay-content strong{max-width:100%!important;font-size:21px!important}
  .section-space{padding-top:28px!important;padding-bottom:28px!important}
  .card,.sidebar-card,.admin-card{max-width:100%}
}

/* 2026-07-26 compact mobile header + two-column news cards */
@media (max-width:850px){
  .site-header{position:relative!important}

  /* Keep the utility/date strip compact. */
  .header-layout-row-0,
  .header-layout-row-0>.header-layout-grid,
  .header-layout-row-0 .header-slot{
    min-height:44px!important;
    height:44px!important;
    padding-top:0!important;
    padding-bottom:0!important
  }

  /* The brand row becomes the single mobile header row. */
  .header-layout-row:has(.header-brand){
    position:relative!important;
    z-index:20!important;
    min-height:72px!important;
    height:72px!important;
    overflow:visible!important
  }
  .header-layout-row:has(.header-brand)>.header-layout-grid{
    position:relative!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    min-height:72px!important;
    height:72px!important;
    padding:6px 68px!important
  }
  .header-layout-row:has(.header-brand) .header-slot{
    width:auto!important;
    min-height:0!important;
    height:auto!important;
    padding:0!important
  }
  .header-layout-row:has(.header-brand) .header-brand{
    display:flex!important;
    justify-content:center!important;
    margin:0 auto!important;
    max-width:100%!important
  }
  .header-layout-row:has(.header-brand) .header-brand img{
    width:54px!important;
    height:54px!important;
    object-fit:contain!important
  }
  .header-layout-row:has(.header-brand) .brand-copy{display:none!important}

  /* Search/theme row overlays the left side of the brand row and consumes no space. */
  .header-layout-row:has(.search-toggle),
  .header-layout-row:has(.theme-toggle){
    position:relative!important;
    z-index:35!important;
    height:0!important;
    min-height:0!important;
    margin:0!important;
    border:0!important;
    background:transparent!important;
    overflow:visible!important
  }
  .header-layout-row:has(.search-toggle)>.header-layout-grid,
  .header-layout-row:has(.theme-toggle)>.header-layout-grid{
    position:absolute!important;
    left:14px!important;
    right:auto!important;
    bottom:14px!important;
    transform:translateY(-14px)!important;
    display:flex!important;
    flex-direction:row!important;
    justify-content:flex-start!important;
    align-items:center!important;
    gap:7px!important;
    width:auto!important;
    height:44px!important;
    min-height:44px!important;
    padding:0!important
  }
  .header-layout-row:has(.search-toggle) .header-slot,
  .header-layout-row:has(.theme-toggle) .header-slot{
    display:flex!important;
    width:auto!important;
    height:44px!important;
    min-height:44px!important;
    padding:0!important;
    gap:7px!important
  }
  .header-layout-row:has(.search-toggle) .header-slot:empty,
  .header-layout-row:has(.theme-toggle) .header-slot:empty{display:none!important}
  .header-layout-row:has(.search-toggle) .icon-button,
  .header-layout-row:has(.theme-toggle) .icon-button{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    flex:0 0 38px!important
  }

  /* Mobile menu button stays on the right and aligns with the logo. */
  .site-header>.mobile-menu-button{
    top:58px!important;
    right:14px!important;
    width:40px!important;
    height:40px!important;
    z-index:45!important
  }
  body.nav-open .site-header>.mobile-menu-button{top:14px!important}

  /* Menu-only rows must not create blank white space. */
  .header-layout-row:has(.main-nav){
    height:0!important;
    min-height:0!important;
    border:0!important;
    background:transparent!important
  }
  .header-layout-row:has(.main-nav)>.header-layout-grid,
  .header-layout-row:has(.main-nav) .header-slot:has(.main-nav){
    height:0!important;
    min-height:0!important;
    padding:0!important;
    margin:0!important
  }
}

@media (max-width:620px){
  /* Use two cards per row where the card layout remains readable. */
  .builder-news-grid .builder-news-grid-items,
  .builder-grid-magazine .builder-news-grid-items,
  .builder-grid-cards .builder-news-grid-items,
  .category-grid,
  .posts-grid,
  .news-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important
  }
  .builder-news-grid .builder-news-grid-items article,
  .builder-news-grid .builder-news-grid-items article:nth-child(1),
  .builder-news-grid .builder-news-grid-items article:not(:nth-child(1)){
    grid-area:auto!important;
    min-width:0!important
  }
  .builder-news-grid .builder-news-grid-items article.is-lead{
    grid-column:1/-1!important
  }
  .builder-news-grid .builder-news-grid-items article:not(.is-lead) .builder-grid-image,
  .builder-news-grid .builder-news-grid-items article:not(.is-lead) .builder-grid-image img{
    width:100%!important;
    height:auto!important;
    aspect-ratio:4/3!important;
    object-fit:cover!important
  }
  .builder-news-grid .builder-news-grid-items article:not(.is-lead)>div{
    padding:10px!important
  }
  .builder-news-grid .builder-news-grid-items article:not(.is-lead) h3{
    margin:4px 0 0!important;
    font-size:12px!important;
    line-height:1.65!important;
    display:-webkit-box!important;
    -webkit-box-orient:vertical!important;
    -webkit-line-clamp:3!important;
    overflow:hidden!important
  }
  .builder-news-grid .builder-news-grid-items article:not(.is-lead) p{display:none!important}
}

@media (max-width:390px){
  .header-layout-row:has(.brand-copy) .header-brand img{width:50px!important;height:50px!important}
  .header-layout-row:has(.search-toggle)>.header-layout-grid,
  .header-layout-row:has(.theme-toggle)>.header-layout-grid{left:10px!important;gap:5px!important}
  .site-header>.mobile-menu-button{right:10px!important}
}

/* 2026-07-26 definitive mobile header source fix */
.mobile-header-primary{display:none}

@media (max-width:850px){
  .site-header{position:relative!important;z-index:100!important}

  /* A dedicated first row: menu right, centered logo, search/theme left. */
  .mobile-header-primary{
    position:relative;
    z-index:50;
    display:grid!important;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    direction:rtl;
    min-height:68px;
    padding:9px 12px;
    background:var(--header-row-color,#fff);
    border-bottom:1px solid var(--line);
  }
  .mobile-header-actions{display:flex;align-items:center;gap:7px;min-width:0}
  .mobile-header-actions-right{justify-content:flex-start}
  .mobile-header-actions-left{justify-content:flex-end;direction:ltr}
  .mobile-header-primary .icon-button{
    position:static!important;
    display:grid!important;
    place-items:center;
    width:40px!important;
    height:40px!important;
    min-width:40px!important;
    margin:0!important;
    color:var(--navy)!important;
    background:var(--paper)!important;
    border:1px solid var(--line)!important;
    border-radius:10px!important;
    box-shadow:0 5px 16px rgba(4,18,32,.08)!important;
  }
  .mobile-header-primary .icon-button svg{width:20px!important;height:20px!important}
  .mobile-header-brand{display:flex;align-items:center;justify-content:center;padding:0 8px}
  .mobile-header-brand img{display:block;width:48px;height:48px;object-fit:contain}

  /* Desktop configurable rows stay desktop-only, except the row holding the nav drawer. */
  .site-header>.header-layout-row:not(:has(.main-nav)){display:none!important}
  .site-header>.header-layout-row:has(.main-nav),
  .site-header>.header-layout-row:has(.main-nav)>.header-layout-grid,
  .site-header>.header-layout-row:has(.main-nav) .header-slot:has(.main-nav){
    display:block!important;
    width:0!important;
    height:0!important;
    min-height:0!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    overflow:visible!important;
    background:transparent!important;
  }

  /* Closed means fully off-canvas and non-interactive. */
  .site-header .main-nav{
    display:block!important;
    position:fixed!important;
    inset:0 0 0 auto!important;
    width:min(88vw,360px)!important;
    height:100dvh!important;
    padding:14px 0 0!important;
    margin:0!important;
    overflow:hidden!important;
    transform:translate3d(110%,0,0)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    background:var(--paper)!important;
    box-shadow:-18px 0 48px rgba(4,18,32,.25)!important;
    transition:transform .28s ease,opacity .2s ease,visibility 0s linear .28s!important;
    z-index:130!important;
  }
  body.nav-open .site-header .main-nav{
    transform:translate3d(0,0,0)!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transition:transform .28s ease,opacity .2s ease!important;
  }
  body.nav-open::after{z-index:120!important}
  body.nav-open .mobile-header-primary .mobile-menu-button{position:relative!important;z-index:1!important}

  /* Search panel appears immediately under the fixed mobile header row. */
  .search-panel{position:relative!important;z-index:45!important}

  /* Breaking news is naturally the second visible row on the home page. */
  main>.breaking:first-child{margin-top:0!important;padding-top:10px!important}
}

@media (max-width:390px){
  .mobile-header-primary{min-height:64px;padding:8px 9px}
  .mobile-header-primary .icon-button{width:38px!important;height:38px!important;min-width:38px!important}
  .mobile-header-brand img{width:46px;height:46px}
  .mobile-header-actions{gap:5px}
}

/* 2026-07-26 dark mobile header + white hero surface + responsive news slider */
@media (max-width:850px){
  /* Mobile header follows the active theme instead of saved light header colors. */
  .mobile-header-primary{
    background:var(--paper,#fff)!important;
    color:var(--ink,#0b1e2c)!important;
    border-color:var(--line,#dfe5ea)!important;
  }
  .mobile-header-primary .icon-button{
    background:var(--surface,var(--paper,#fff))!important;
    color:var(--ink,#0b1e2c)!important;
    border-color:var(--line,#dfe5ea)!important;
  }
  html[data-theme="dark"] .mobile-header-primary{
    background:#0f202c!important;
    border-bottom-color:#263b48!important;
    box-shadow:0 7px 22px rgba(0,0,0,.22)!important;
  }
  html[data-theme="dark"] .mobile-header-primary .icon-button{
    background:#162b38!important;
    color:#eef6fa!important;
    border-color:#304653!important;
    box-shadow:0 5px 16px rgba(0,0,0,.22)!important;
  }
  html[data-theme="dark"] .mobile-header-brand img{
    background:#fff!important;
    border-radius:10px!important;
    padding:2px!important;
  }
}

/* The large hero always sits on a clean white presentation surface. */
.builder-hero-slider[data-hero-slider]{
  background:#fff!important;
  padding:10px!important;
  border-radius:18px!important;
  box-shadow:0 8px 28px rgba(4,18,32,.08)!important;
}
.builder-hero-slider[data-hero-slider] .builder-hero-viewport{
  background:#fff!important;
  border-radius:12px!important;
}
html[data-theme="dark"] .builder-hero-slider[data-hero-slider]{
  background:#fff!important;
  border:1px solid rgba(255,255,255,.18)!important;
}
@media(max-width:620px){
  .builder-hero-slider[data-hero-slider]{padding:7px!important;border-radius:14px!important}
  .builder-hero-slider[data-hero-slider] .builder-hero-viewport{border-radius:9px!important}

  /* News slider pages become a readable mobile list and expose their full height. */
  .builder-news-slider-instance{width:100%!important;min-width:0!important;overflow:visible!important}
  .builder-news-slider-viewport{
    width:100%!important;
    min-height:0!important;
    height:auto;
    overflow:hidden!important;
    transition:height .28s ease!important;
  }
  .builder-news-slider-track{align-items:flex-start!important}
  .builder-news-slide-page{
    grid-template-columns:1fr!important;
    gap:10px!important;
    width:100%!important;
    min-width:100%!important;
    align-content:start!important;
  }
  .builder-news-slide-page .builder-news-slide{
    display:grid!important;
    grid-template-columns:112px minmax(0,1fr)!important;
    gap:0!important;
    width:100%!important;
    min-width:0!important;
    border-radius:11px!important;
  }
  .builder-news-slide-page .builder-slider-card-media{
    width:112px!important;
    height:100%!important;
    min-height:104px!important;
    aspect-ratio:auto!important;
  }
  .builder-news-slide-page .builder-slider-card-media img{
    width:100%!important;
    height:100%!important;
    min-height:104px!important;
    object-fit:cover!important;
  }
  .builder-news-slide-page .builder-news-slide>div:last-child{
    min-width:0!important;
    padding:10px!important;
  }
  .builder-news-slide-page .builder-news-slide h3{
    margin:3px 0!important;
    font-size:13px!important;
    line-height:1.65!important;
    display:-webkit-box!important;
    -webkit-box-orient:vertical!important;
    -webkit-line-clamp:3!important;
    overflow:hidden!important;
  }
  .builder-news-slide-page .builder-news-slide p{
    margin-top:4px!important;
    font-size:11px!important;
    line-height:1.7!important;
    display:-webkit-box!important;
    -webkit-box-orient:vertical!important;
    -webkit-line-clamp:2!important;
    overflow:hidden!important;
  }
  .builder-inline-slider-controls{margin-top:10px!important}
  .builder-news-slider .builder-slider-dots{margin-top:8px!important}
}
@media(max-width:380px){
  .builder-news-slide-page .builder-news-slide{grid-template-columns:96px minmax(0,1fr)!important}
  .builder-news-slide-page .builder-slider-card-media{width:96px!important;min-height:96px!important}
  .builder-news-slide-page .builder-slider-card-media img{min-height:96px!important}
}

/* 2026-07-26 pin mobile header controls to physical screen edges */
@media (max-width:850px){
  .mobile-header-primary{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    position:relative!important;
  }
  .mobile-header-actions-right{
    position:absolute!important;
    right:12px!important;
    left:auto!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    justify-content:flex-start!important;
    z-index:3!important;
  }
  .mobile-header-actions-left{
    position:absolute!important;
    left:12px!important;
    right:auto!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    justify-content:flex-start!important;
    direction:ltr!important;
    z-index:3!important;
  }
  .mobile-header-brand{
    position:relative!important;
    left:auto!important;
    right:auto!important;
    transform:none!important;
    margin:0 auto!important;
    z-index:2!important;
  }
}
@media (max-width:390px){
  .mobile-header-actions-right{right:9px!important}
  .mobile-header-actions-left{left:9px!important}
}

/* 2026-07-26 desktop dark header + hero frame refinement */
@media (min-width:851px){
  /* Preserve the configured first-row colour in dark mode. */
  html[data-theme="dark"] .site-header .header-layout-row-0{
    background-color:var(--header-row-color,#0c1b27)!important;
    color:var(--header-row-text-color,#eef4f8)!important;
    border-bottom-color:color-mix(in srgb,var(--header-row-text-color,#eef4f8) 18%,transparent)!important;
  }
  html[data-theme="dark"] .site-header .header-layout-row-0 a,
  html[data-theme="dark"] .site-header .header-layout-row-0 .header-date,
  html[data-theme="dark"] .site-header .header-layout-row-0 .header-tagline,
  html[data-theme="dark"] .site-header .header-layout-row-0 .header-newsletter{
    color:var(--header-row-text-color,#eef4f8)!important;
  }

  /* Keep utility/social buttons compact in the first row. */
  .site-header .header-layout-row-0 .socials{
    gap:6px!important;
  }
  .site-header .header-layout-row-0 .socials a{
    width:30px!important;
    min-width:30px!important;
    height:30px!important;
    padding:0!important;
    font-size:0!important;
  }
  .site-header .header-layout-row-0 .socials a svg{
    width:15px!important;
    height:15px!important;
  }
}

/* Make the large-slider frame thinner and theme-aware. */
.builder-hero-slider[data-hero-slider]{
  padding:5px!important;
  border:1px solid rgba(11,49,87,.08)!important;
  border-radius:16px!important;
}
.builder-hero-slider[data-hero-slider] .builder-hero-viewport{
  border-radius:11px!important;
}
html[data-theme="dark"] .builder-hero-slider[data-hero-slider]{
  background:var(--surface,#122431)!important;
  border-color:var(--line,#2c4351)!important;
  box-shadow:0 8px 28px rgba(0,0,0,.24)!important;
}
html[data-theme="dark"] .builder-hero-slider[data-hero-slider] .builder-hero-viewport{
  background:var(--surface,#122431)!important;
}
@media(max-width:620px){
  .builder-hero-slider[data-hero-slider]{padding:4px!important;border-radius:13px!important}
  .builder-hero-slider[data-hero-slider] .builder-hero-viewport{border-radius:9px!important}
}


/* 2026-07-26 final desktop slider/social refinement */
@media (min-width:851px){
  /* Smaller social icon in the utility row with a clean hover state. */
  .site-header .header-layout-row-0 .socials{gap:5px!important}
  .site-header .header-layout-row-0 .socials a{
    width:27px!important;
    min-width:27px!important;
    height:27px!important;
    padding:0!important;
    border-color:color-mix(in srgb,currentColor 28%,transparent)!important;
    background:transparent!important;
    color:inherit!important;
    opacity:.9;
    transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease,opacity .2s ease!important;
  }
  .site-header .header-layout-row-0 .socials a svg{width:13px!important;height:13px!important}
  .site-header .header-layout-row-0 .socials a:hover,
  .site-header .header-layout-row-0 .socials a:focus-visible{
    background:color-mix(in srgb,currentColor 12%,transparent)!important;
    border-color:currentColor!important;
    color:var(--header-row-text-color,#fff)!important;
    opacity:1;
    transform:translateY(-1px) scale(1.04)!important;
  }

  /* Make hero and the neighbouring slider fill the same row height. */
  .home-builder-columns:has(.builder-hero-slider){align-items:stretch!important}
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column{
    display:flex!important;
    flex-direction:column!important;
    min-width:0!important;
  }
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column>.builder-hero-slider,
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column>.builder-news-slider{
    flex:1 1 auto!important;
    height:100%!important;
    min-height:440px!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-viewport{
    height:100%!important;
    min-height:430px!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-instance,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-viewport,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-track,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slide-page{
    min-height:0!important;
    height:100%!important;
  }
}

/* Theme-aware previous/next controls for the large slider. */
.builder-hero-slider[data-hero-slider] .builder-slider-prev,
.builder-hero-slider[data-hero-slider] .builder-slider-next{
  display:grid!important;
  place-items:center!important;
  background:var(--paper,#fff)!important;
  color:var(--ink,#0b1e2c)!important;
  border:1px solid var(--line,#dfe5ea)!important;
  box-shadow:0 5px 16px rgba(4,18,32,.16)!important;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .2s ease!important;
}
.builder-hero-slider[data-hero-slider] .builder-slider-prev:hover,
.builder-hero-slider[data-hero-slider] .builder-slider-next:hover,
.builder-hero-slider[data-hero-slider] .builder-slider-prev:focus-visible,
.builder-hero-slider[data-hero-slider] .builder-slider-next:focus-visible{
  background:var(--gold,#d8940c)!important;
  color:#fff!important;
  border-color:var(--gold,#d8940c)!important;
  transform:translateY(-2px)!important;
}
html[data-theme="dark"] .builder-hero-slider[data-hero-slider] .builder-slider-prev,
html[data-theme="dark"] .builder-hero-slider[data-hero-slider] .builder-slider-next{
  background:var(--surface,#122431)!important;
  color:var(--ink,#eef4f8)!important;
  border-color:var(--line,#2c4351)!important;
  box-shadow:0 5px 18px rgba(0,0,0,.3)!important;
}
html[data-theme="dark"] .builder-hero-slider[data-hero-slider] .builder-slider-prev:hover,
html[data-theme="dark"] .builder-hero-slider[data-hero-slider] .builder-slider-next:hover{
  background:var(--gold,#d8940c)!important;
  color:#fff!important;
  border-color:var(--gold,#d8940c)!important;
}

/* Keep the centred video marker, but remove the separate bottom-corner playback action. */
.builder-video-image-button,
.builder-media-modal{display:none!important}


/* 2026-07-26 correction: compact header social icon + equal-height desktop sliders */
@media (min-width:851px){
  .site-header .header-layout-row-0 .header-social-links{
    gap:4px!important;
  }
  .site-header .header-layout-row-0 .header-social-links a,
  .site-header .header-layout-row-0 .header-social-icon-link{
    width:24px!important;
    min-width:24px!important;
    height:24px!important;
    min-height:24px!important;
    padding:0!important;
    border-radius:50%!important;
    display:inline-grid!important;
    place-items:center!important;
    line-height:1!important;
    opacity:.88!important;
    transform:none!important;
    transition:background-color .18s ease,border-color .18s ease,color .18s ease,opacity .18s ease,transform .18s ease!important;
  }
  .site-header .header-layout-row-0 .header-social-links a svg,
  .site-header .header-layout-row-0 .header-social-icon-link svg{
    width:12px!important;
    height:12px!important;
  }
  .site-header .header-layout-row-0 .header-social-links a:hover,
  .site-header .header-layout-row-0 .header-social-links a:focus-visible,
  .site-header .header-layout-row-0 .header-social-icon-link:hover,
  .site-header .header-layout-row-0 .header-social-icon-link:focus-visible{
    opacity:1!important;
    transform:translateY(-1px)!important;
    background:color-mix(in srgb,currentColor 14%,transparent)!important;
    border-color:color-mix(in srgb,currentColor 72%,transparent)!important;
    color:inherit!important;
  }

  /* The hero becomes shorter; both sliders use the same compact height. */
  .home-builder-columns:has(.builder-hero-slider){align-items:stretch!important}
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column{
    display:flex!important;
    flex-direction:column!important;
  }
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column>.builder-hero-slider,
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column>.builder-news-slider{
    flex:none!important;
    height:358px!important;
    min-height:358px!important;
    max-height:358px!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-viewport{
    height:348px!important;
    min-height:348px!important;
    max-height:348px!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-slide,
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-slide>img{
    height:100%!important;
    min-height:0!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-instance,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-viewport,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-track,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slide-page{
    height:100%!important;
    min-height:0!important;
    max-height:100%!important;
  }
}


/* 2026-07-26 author access + definitive equal rounded desktop sliders */
@media (min-width:851px){
  .home-builder-columns:has(.builder-hero-slider){align-items:stretch!important}
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column{display:flex!important;min-height:0!important}
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column>.builder-hero-slider,
  .home-builder-columns:has(.builder-hero-slider)>.home-builder-column>.builder-news-slider{
    box-sizing:border-box!important;
    width:100%!important;
    height:358px!important;
    min-height:358px!important;
    max-height:358px!important;
    border-radius:16px!important;
    overflow:hidden!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-slider{padding:4px!important}
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-viewport{
    height:350px!important;min-height:350px!important;max-height:350px!important;
    border-radius:12px!important;overflow:hidden!important;
  }
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-slide,
  .home-builder-columns:has(.builder-hero-slider) .builder-hero-slide>img{height:100%!important;min-height:0!important;border-radius:inherit!important}
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-instance,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-viewport,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slider-track,
  .home-builder-columns:has(.builder-hero-slider) .builder-news-slide-page{height:100%!important;min-height:0!important;max-height:100%!important}
}
html[data-theme="dark"] .builder-hero-slider[data-hero-slider]{border-color:var(--border-color,#294254)!important;background:var(--card-bg,#10212e)!important}


/* Advanced public search */
.site-search-wrap{display:flex;align-items:stretch;gap:10px;max-width:1040px;margin:0 auto}
.site-search-wrap .site-search{flex:1;max-width:none;margin:0}
.advanced-search-link{display:inline-flex;align-items:center;justify-content:center;gap:8px;flex:0 0 auto;padding:0 18px;border:1px solid var(--line);border-radius:12px;background:var(--paper);color:var(--ink);font-weight:800;white-space:nowrap;transition:.2s ease}
.advanced-search-link:hover{border-color:var(--gold);color:var(--navy);transform:translateY(-1px)}
.advanced-search-link svg,.advanced-search-toggle svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}
.archive-search-tools{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:26px 0 22px}
.archive-search-tools .archive-search{margin:0;flex:1 1 520px}
.advanced-search-toggle{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:48px;padding:0 18px;border:1px solid var(--line);border-radius:999px;background:var(--paper);color:var(--ink);font:inherit;font-weight:800;cursor:pointer}
.advanced-search-toggle:hover,.advanced-search-toggle[aria-expanded="true"]{border-color:var(--gold);color:var(--navy)}
.advanced-search-form{display:none;margin:0 0 24px;padding:20px;border:1px solid var(--line);border-radius:18px;background:var(--paper);box-shadow:var(--shadow-sm)}
.advanced-search-form.is-open{display:block}
.advanced-search-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.advanced-search-grid label{display:flex;flex-direction:column;gap:7px;color:var(--muted);font-size:13px;font-weight:700}
.advanced-search-grid input,.advanced-search-grid select{width:100%;min-height:46px;padding:0 12px;border:1px solid var(--line);border-radius:10px;background:var(--surface);color:var(--ink);font:inherit;outline:0}
.advanced-search-grid input:focus,.advanced-search-grid select:focus{border-color:var(--gold);box-shadow:0 0 0 3px color-mix(in srgb,var(--gold) 18%,transparent)}
.advanced-search-actions{display:flex;align-items:center;gap:10px;margin-top:16px}
.advanced-search-actions button,.advanced-search-actions a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 20px;border-radius:10px;font:inherit;font-weight:800}
.advanced-search-actions button{border:0;background:var(--navy);color:#fff;cursor:pointer}
.advanced-search-actions a{border:1px solid var(--line);background:transparent;color:var(--ink)}
html[data-theme="dark"] .advanced-search-link,html[data-theme="dark"] .advanced-search-toggle,html[data-theme="dark"] .advanced-search-form{background:var(--paper);color:var(--ink)}
@media(max-width:900px){.advanced-search-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.site-search-wrap{display:grid;grid-template-columns:1fr}.advanced-search-link{min-height:46px}.archive-search-tools{display:grid;grid-template-columns:1fr}.advanced-search-toggle{width:100%}.advanced-search-grid{grid-template-columns:1fr}.advanced-search-actions{flex-direction:column;align-items:stretch}.advanced-search-actions button,.advanced-search-actions a{width:100%}.search-panel.open{max-height:420px}}

/* Advanced search v2: responsive + Jalali + content type */
.advanced-search-form{overflow:hidden}
.advanced-search-grid{grid-template-columns:repeat(4,minmax(0,1fr));align-items:end}
.advanced-search-grid .search-field-wide{grid-column:span 2}
.advanced-search-check{min-height:46px;display:flex!important;flex-direction:row!important;align-items:center;gap:10px!important;padding:8px 12px;border:1px solid var(--line);border-radius:10px;background:var(--surface);cursor:pointer}
.advanced-search-check input{width:18px!important;height:18px!important;min-height:0!important;flex:0 0 auto;accent-color:var(--gold)}
.advanced-search-check span{display:grid;gap:1px;color:var(--ink)}
.advanced-search-check strong{font-size:13px}
.advanced-search-check small{font-size:11px;color:var(--muted);font-weight:500}
.jalali-search-date{direction:ltr;text-align:right}
.search-highlight{padding:0 .12em;border-radius:3px;background:color-mix(in srgb,var(--gold) 50%,#fff);color:inherit}
html[data-theme="dark"] .search-highlight{background:color-mix(in srgb,var(--gold) 55%,#3a2c00);color:#fff}
@media(max-width:1100px){
 .listing-hero.section-space{padding-block:34px 22px}
 .advanced-search-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
 .advanced-search-grid .search-field-wide{grid-column:span 1}
}
@media(max-width:700px){
 .listing-hero.section-space{padding-block:22px 16px}
 .listing-hero .container{padding-inline:14px}
 .archive-search-tools{display:grid;grid-template-columns:1fr;margin:18px 0 14px}
 .archive-search-tools .archive-search{min-width:0;width:100%;display:flex}
 .archive-search-tools .archive-search input{min-width:0;flex:1}
 .advanced-search-toggle{width:100%;border-radius:12px}
 .advanced-search-form{padding:14px;border-radius:14px}
 .advanced-search-grid{grid-template-columns:minmax(0,1fr);gap:11px}
 .advanced-search-grid .search-field-wide{grid-column:auto}
 .advanced-search-actions{display:grid;grid-template-columns:1fr;gap:8px}
 .advanced-search-actions button,.advanced-search-actions a{width:100%}
 .archive-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:6px}
}
@media(max-width:420px){
 .archive-search-tools .archive-search{display:grid;grid-template-columns:1fr}
 .archive-search-tools .archive-search button{width:100%;min-height:44px}
 .advanced-search-form{margin-inline:-4px}
}


/* Advanced search v3: spacing, scope, tags and reliable highlighting */
.listing-hero .container,
.archive-section .container{padding-inline:clamp(18px,2.2vw,34px)}
.archive-search-tools{padding-inline:2px}
.archive-search-tools .archive-search input{padding-inline:18px}
.search-highlight{
  display:inline;
  padding:.05em .18em;
  border-radius:4px;
  background:#ffe08a!important;
  color:#18202a!important;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
html[data-theme="dark"] .search-highlight{background:#d99a16!important;color:#071722!important}
@media(max-width:700px){
  .listing-hero .container,.archive-section .container{padding-inline:16px}
  .archive-search-tools{padding-inline:0}
}


/* Advanced search v4: search actions after filters + article highlighting */
.advanced-search-form.is-open{display:block!important}
.listing-hero .advanced-search-form{margin-top:22px}
.advanced-search-actions{justify-content:flex-start;border-top:1px solid var(--line);padding-top:16px}
.advanced-search-actions button{min-width:140px}
.article-editorial-header .search-highlight,
.article-editorial-body .search-highlight{background:#ffe08a!important;color:#18202a!important;padding:.04em .16em;border-radius:4px}
html[data-theme="dark"] .article-editorial-header .search-highlight,
html[data-theme="dark"] .article-editorial-body .search-highlight{background:#d99a16!important;color:#071722!important}
@media(max-width:700px){
 .listing-hero .advanced-search-form{margin-top:14px}
 .advanced-search-actions{grid-template-columns:1fr 1fr!important}
}
@media(max-width:460px){.advanced-search-actions{grid-template-columns:1fr!important}}


/* Advanced search v5: spacing, default date range, automatic highlighting */
.listing-hero .container{padding-right:clamp(26px,3vw,46px)!important;padding-left:clamp(20px,2.2vw,34px)!important}
.listing-hero .breadcrumb,.listing-hero .section-kicker,.listing-hero h1,.listing-hero>div>p{margin-right:6px}
.advanced-search-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.advanced-search-actions{justify-content:flex-start}
@media(max-width:900px){.advanced-search-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){
 .listing-hero .container{padding-right:20px!important;padding-left:16px!important}
 .listing-hero .breadcrumb,.listing-hero .section-kicker,.listing-hero h1,.listing-hero>div>p{margin-right:2px}
 .advanced-search-grid{grid-template-columns:1fr}
}

/* 2026-07-27 social icons, compact share and header date refinement */
.site-header .header-date{
  direction:rtl;
  unicode-bidi:isolate;
  white-space:nowrap;
  text-align:right;
}
.header-social-links a,
.footer-socials a{
  overflow:hidden;
}
.header-social-links a img,
.footer-socials a img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  border-radius:inherit;
}
.header-social-links a svg,
.footer-socials a svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.article-share-bottom{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between;
  gap:12px!important;
  width:max-content;
  max-width:100%;
  margin:18px 0 0 auto!important;
  padding:8px 10px!important;
  border-radius:999px!important;
  background:var(--surface)!important;
}
.article-share-label{
  font-size:11px;
  font-weight:800;
  color:var(--muted);
  white-space:nowrap;
}
.article-share-buttons{
  width:auto!important;
  display:flex!important;
  flex-direction:row!important;
  gap:6px!important;
}
.article-share-buttons button{
  width:34px!important;
  min-width:34px;
  height:34px;
  min-height:34px!important;
  padding:0!important;
  display:grid;
  place-items:center;
  border-radius:50%!important;
}
.article-share-buttons button svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media (max-width:600px){
  .article-share-bottom{
    width:100%;
    margin-inline:0!important;
  }
}

/* 2026-07-27 borderless social icons in header and footer */
.site-header .header-social-links,
.site-footer .footer-socials{
  align-items:center;
}
.site-header .header-social-links a,
.site-header .header-social-icon-link,
.site-footer .footer-socials a{
  width:auto!important;
  min-width:0!important;
  height:auto!important;
  min-height:0!important;
  padding:2px!important;
  border:0!important;
  outline:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  overflow:visible!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  line-height:1!important;
  opacity:.9;
  transition:color .18s ease,opacity .18s ease,transform .18s ease!important;
}
.site-header .header-social-links a:hover,
.site-header .header-social-links a:focus-visible,
.site-header .header-social-icon-link:hover,
.site-header .header-social-icon-link:focus-visible,
.site-footer .footer-socials a:hover,
.site-footer .footer-socials a:focus-visible{
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:var(--gold-light,#d9a62e)!important;
  opacity:1!important;
  transform:translateY(-1px) scale(1.08)!important;
}
.site-header .header-social-links a svg,
.site-header .header-social-icon-link svg,
.site-footer .footer-socials a svg{
  width:18px!important;
  height:18px!important;
}
.site-header .header-social-links a img,
.site-header .header-social-icon-link img,
.site-footer .footer-socials a img{
  width:20px!important;
  height:20px!important;
  object-fit:contain!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
@media (min-width:851px){
  .site-header .header-layout-row-0 .header-social-links a,
  .site-header .header-layout-row-0 .header-social-icon-link{
    width:auto!important;
    min-width:0!important;
    height:auto!important;
    min-height:0!important;
    padding:2px!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
  }
  .site-header .header-layout-row-0 .header-social-links a:hover,
  .site-header .header-layout-row-0 .header-social-links a:focus-visible,
  .site-header .header-layout-row-0 .header-social-icon-link:hover,
  .site-header .header-layout-row-0 .header-social-icon-link:focus-visible{
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
  }
}

/* New homepage builder blocks: lead news lists and multimedia split */
.builder-lead-list,.builder-multimedia-split{background:var(--paper);border:1px solid var(--line);border-radius:20px;padding:18px;min-width:0}
.builder-lead-layout{display:grid;gap:18px;min-width:0}
.builder-lead-list-top .builder-lead-layout{grid-template-columns:1fr}
.builder-lead-list-right .builder-lead-layout{grid-template-columns:minmax(0,1.45fr) minmax(270px,.72fr);align-items:start}
.builder-lead-story{border:1px solid var(--line);border-radius:16px;overflow:hidden;background:var(--paper);min-width:0}
.builder-lead-media{position:relative;height:var(--builder-lead-height,300px);overflow:hidden;background:var(--surface)}
.builder-lead-list-top .builder-lead-media{height:min(var(--builder-lead-height,280px),300px)}
.builder-lead-media img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.builder-lead-copy{padding:18px}.builder-lead-copy h3{font-size:clamp(19px,2vw,28px);line-height:1.65;margin:5px 0}.builder-lead-copy p{margin:8px 0 0;color:var(--muted);line-height:1.95}
.builder-lead-list-right .builder-lead-story{display:grid;grid-template-columns:minmax(220px,.9fr) minmax(0,1.1fr);align-items:stretch;min-height:260px}
.builder-lead-list-right .builder-lead-media{height:auto;min-height:260px}
.builder-lead-list-right .builder-lead-copy{display:flex;flex-direction:column;justify-content:center}
.builder-lead-meta{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:11px}.builder-lead-meta span{color:var(--gold)}
.builder-lead-items{display:grid;gap:10px;align-content:start}
.builder-lead-items article{display:grid;grid-template-columns:112px minmax(0,1fr);gap:12px;align-items:center;padding:10px;border:1px solid var(--line);border-radius:13px;background:var(--paper);min-width:0}
.builder-lead-thumb{height:84px;border-radius:10px;overflow:hidden;position:relative}.builder-lead-thumb img{width:100%;height:100%;object-fit:cover}.builder-lead-items h4{margin:4px 0 0;font-size:14px;line-height:1.75}.builder-lead-item-copy p{margin:5px 0 0;color:var(--muted);font-size:12px;line-height:1.75;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.builder-lead-list-top .builder-lead-items{grid-template-columns:1fr}
.builder-lead-list-right .builder-lead-story{grid-column:1}.builder-lead-list-right .builder-lead-items{grid-column:2;max-height:430px;overflow:auto;padding-inline-end:3px}
.builder-hover-zoom .builder-lead-story:hover .builder-lead-media img{transform:scale(1.035)}
.builder-media-layout{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(260px,.72fr);gap:18px;min-width:0}
.builder-media-player{border:1px solid var(--line);border-radius:17px;overflow:hidden;background:var(--paper);min-width:0}
.builder-media-stage{display:block;position:relative;height:var(--builder-player-height,420px);overflow:hidden;background:#071725}.builder-media-stage>a{display:block;width:100%;height:100%;position:relative}.builder-media-stage img,.builder-media-stage video,.builder-media-stage iframe{width:100%;height:100%;object-fit:cover;border:0;display:block;transition:opacity .2s ease,transform .45s ease}
.builder-media-main-play{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:rgba(5,22,38,.78);color:#fff;border:1px solid rgba(255,255,255,.55);backdrop-filter:blur(5px)}.builder-media-main-play svg{width:26px;height:26px;fill:currentColor}
.builder-media-main-copy{padding:18px}.builder-media-main-copy>span{color:var(--gold);font-size:11px}.builder-media-main-copy h3{margin:5px 0;font-size:21px;line-height:1.65}.builder-media-main-copy p{margin:6px 0 0;color:var(--muted);line-height:1.9}
.builder-media-list{display:grid;gap:9px;align-content:start;max-height:calc(var(--builder-player-height,420px) + 150px);overflow:auto;padding-inline-end:3px}
.builder-media-list button{display:grid;grid-template-columns:92px minmax(0,1fr);gap:11px;align-items:center;width:100%;padding:9px;border:1px solid var(--line);border-radius:13px;background:var(--paper);color:var(--ink);font:inherit;text-align:right;cursor:pointer;transition:.2s ease}.builder-media-list button:hover,.builder-media-list button.is-active{border-color:var(--gold);background:color-mix(in srgb,var(--gold) 7%,var(--paper))}
.builder-media-list-thumb{height:68px;border-radius:9px;overflow:hidden;position:relative}.builder-media-list-thumb img{width:100%;height:100%;object-fit:cover}.builder-media-list button small{display:block;color:var(--gold);font-size:10px;margin-bottom:3px}.builder-media-list button strong{display:block;font-size:13px;line-height:1.7}
@media(max-width:900px){.builder-lead-list-right .builder-lead-layout,.builder-media-layout{grid-template-columns:1fr}.builder-lead-list-right .builder-lead-items,.builder-lead-list-right .builder-lead-story{grid-column:auto}.builder-lead-list-right .builder-lead-items,.builder-media-list{max-height:none}.builder-lead-list-right .builder-lead-story{grid-template-columns:minmax(190px,.85fr) minmax(0,1.15fr)}}
@media(max-width:620px){.builder-lead-list,.builder-multimedia-split{padding:12px;border-radius:15px}.builder-lead-media,.builder-lead-list-top .builder-lead-media{height:min(var(--builder-lead-height,280px),56vw)}.builder-media-stage{height:min(var(--builder-player-height,420px),62vw)}.builder-lead-list-right .builder-lead-story{grid-template-columns:1fr}.builder-lead-list-right .builder-lead-media{height:min(var(--builder-lead-height,280px),56vw);min-height:0}.builder-lead-items article,.builder-media-list button{grid-template-columns:92px minmax(0,1fr)}.builder-lead-thumb{height:76px}.builder-lead-copy{padding:14px}.builder-media-main-copy{padding:14px}}

/* Header gradient and square action controls */
.site-header .header-layout-row{
  background-color:var(--header-row-color,#fff)!important;
  background-image:linear-gradient(var(--header-row-gradient-angle,90deg),var(--header-row-color,#fff),var(--header-row-color-end,var(--header-row-color,#fff)))!important;
}
.site-header .icon-button{
  width:40px!important;
  height:40px!important;
  min-width:40px!important;
  min-height:40px!important;
  padding:0!important;
  border-radius:7px!important;
  aspect-ratio:1/1;
}
.footer-bottom a{color:inherit;text-decoration:none}
.footer-bottom a:hover{color:#fff!important}

/* Builder block colors, compact news grid and readable image captions */
.home-builder-block{
  background-color:var(--builder-block-bg,var(--surface));
}
.home-builder-block-head h2,
.home-builder-block > h2{
  color:var(--builder-title-color,var(--ink))!important;
}
.home-builder-block .builder-news-grid-items article > div > span,
.home-builder-block .builder-news-slide > div > span,
.home-builder-block .builder-lead-meta span,
.home-builder-block .builder-list-items article > div > span,
.home-builder-block .builder-news-tabs button.is-active{
  color:var(--builder-accent-color,var(--gold))!important;
}
.home-builder-block.builder-block-no-title > .home-builder-block-head{display:none!important}

.builder-news-grid{
  padding:8px!important;
  border-radius:14px!important;
}
.builder-news-grid .home-builder-block-head{
  margin:0 3px 8px!important;
  padding:3px 2px 7px!important;
}
.builder-news-grid .builder-news-grid-items{
  gap:6px!important;
  margin:0!important;
}
.builder-news-grid.builder-block-no-title{padding:5px!important}
.builder-news-grid .builder-news-grid-items article{
  border-radius:10px!important;
  overflow:hidden!important;
}
.builder-news-grid .builder-grid-image{
  inset:0!important;
  width:100%!important;
  height:100%!important;
  margin:0!important;
}
.builder-news-grid .builder-news-grid-items article::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 28%,transparent 48%,var(--builder-overlay-color,#071827) 100%)!important;
  opacity:.94;
}
.builder-news-grid .builder-news-grid-items article > div{
  position:relative;
  z-index:2;
  padding:58px 12px 12px!important;
  background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.08) 38%,rgba(0,0,0,.38) 100%)!important;
}
.builder-news-grid .builder-news-grid-items h3,
.builder-news-grid .builder-news-grid-items p,
.builder-news-grid .builder-news-grid-items article > div > span{
  text-shadow:0 2px 8px rgba(0,0,0,.9),0 1px 2px rgba(0,0,0,.95);
}
.builder-news-grid .builder-news-grid-items h3 a,
.builder-news-grid .builder-news-grid-items p{color:#fff!important}

@media(max-width:620px){
  .builder-news-grid{padding:4px!important}
  .builder-news-grid .builder-news-grid-items{gap:5px!important}
  .builder-news-grid .builder-news-grid-items article > div{padding:46px 10px 10px!important}
}



/* 2026-07-27 definitive news-grid controls and image fitting */
.builder-news-grid{
  background:var(--builder-block-bg,#fff)!important;
}
.builder-news-grid .builder-news-grid-items article{
  position:relative!important;
  overflow:hidden!important;
  background:var(--builder-block-bg,#fff)!important;
  isolation:isolate;
}
.builder-news-grid .builder-grid-image,
.builder-news-grid .builder-grid-image>a{
  position:absolute!important;
  inset:0!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
  margin:0!important;
  padding:0!important;
}
.builder-news-grid .builder-grid-image img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  object-fit:cover!important;
  object-position:center!important;
}
.builder-grid-lead-four .builder-news-grid-items{
  grid-template-rows:repeat(2,minmax(0,1fr))!important;
  height:clamp(360px,34vw,452px)!important;
  min-height:0!important;
}
.builder-grid-lead-four .builder-news-grid-items article:not(.is-lead){
  aspect-ratio:auto!important;
  min-height:0!important;
}
.builder-news-grid .builder-news-grid-items article::after{
  background:linear-gradient(
    180deg,
    rgba(var(--builder-overlay-rgb,7,24,39),0) 0%,
    rgba(var(--builder-overlay-rgb,7,24,39),0) var(--builder-overlay-start,48%),
    rgba(var(--builder-overlay-rgb,7,24,39),var(--builder-overlay-opacity,.82)) 100%
  )!important;
  opacity:1!important;
}
.builder-news-grid .builder-news-grid-items article>div:last-child{
  position:absolute!important;
  right:0!important;
  left:0!important;
  bottom:0!important;
  z-index:3!important;
  padding:52px 12px 12px!important;
  background:transparent!important;
}
.builder-news-grid .builder-news-grid-items article>div:last-child:empty{display:none!important}
.builder-news-grid .builder-news-grid-items article:not(.is-lead) p{
  font-size:10px!important;
  line-height:1.7!important;
  -webkit-line-clamp:2!important;
}
@media(max-width:900px){
  .builder-grid-lead-four .builder-news-grid-items{height:420px!important}
}
@media(max-width:620px){
  .builder-grid-lead-four .builder-news-grid-items{
    height:auto!important;
    grid-auto-rows:minmax(190px,52vw)!important;
  }
  .builder-grid-lead-four .builder-news-grid-items article.is-lead{min-height:280px!important}
  .builder-news-grid .builder-grid-image,
  .builder-news-grid .builder-grid-image>a,
  .builder-news-grid .builder-grid-image img{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    aspect-ratio:auto!important;
    object-fit:cover!important;
  }
}


/* Dynamic footer builder output */
.footer-grid.footer-grid-dynamic{grid-template-columns:repeat(var(--footer-columns,4),minmax(0,1fr));align-items:start}
.footer-grid-dynamic .footer-column{display:flex;flex-direction:column;align-items:stretch;gap:18px;min-width:0}
.footer-grid-dynamic .footer-widget{min-width:0}
.footer-grid-dynamic .footer-widget h3{margin:0 0 10px}
.footer-grid-dynamic .footer-text-widget p{margin:0;line-height:2}
.footer-grid-dynamic .footer-brand{grid-column:auto}
@media(max-width:980px){.footer-grid.footer-grid-dynamic{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.footer-grid.footer-grid-dynamic{grid-template-columns:1fr}}

/* Continuous builder news carousel: move one card at a time without partial empty pages */
.builder-news-slider-track{
  gap:14px;
  width:auto;
  align-items:stretch;
}
.builder-news-slider-track>.builder-news-slide{
  position:relative!important;
  inset:auto!important;
  flex:0 0 calc((100% - (var(--builder-slider-visible,1) - 1)*14px)/var(--builder-slider-visible,1));
  min-width:0;
  width:auto;
  opacity:1!important;
  visibility:visible!important;
  direction:rtl;
  transition:box-shadow .2s ease,transform .2s ease;
}
.builder-news-slider-track>.builder-news-slide[data-carousel-clone="1"]{pointer-events:none}
.builder-news-slider-no-image .builder-news-slider-track>.builder-news-slide>div{padding-top:14px}
.builder-news-slider-no-excerpt .builder-news-slider-track>.builder-news-slide p{display:none}
.builder-news-slider-no-category .builder-news-slider-track>.builder-news-slide>div>span{display:none}
.builder-news-slider-no-image.builder-news-slider-no-excerpt .builder-news-slider-track>.builder-news-slide{justify-content:center}
.builder-news-slider-no-image.builder-news-slider-no-excerpt .builder-news-slider-track>.builder-news-slide>div{flex:0 1 auto;padding-block:16px}
.builder-news-slider:has(.builder-slider-dots) .builder-news-slider-viewport{padding-bottom:42px}
@media(max-width:900px){
  .builder-news-slider-instance{--builder-slider-visible:2!important}
}
@media(max-width:620px){
  .builder-news-slider-instance{--builder-slider-visible:1!important}
}

/* Compact builder news lists — 2026-07-27 */
.builder-news-list article{
  grid-template-columns:96px minmax(0,1fr);
  gap:10px;
  padding:8px 0;
}
.builder-news-list-compact article{
  grid-template-columns:64px minmax(0,1fr);
  gap:9px;
  padding:6px 0;
}
.builder-list-image,
.builder-list-image a{
  display:block;
  overflow:hidden;
  border-radius:9px;
}
.builder-list-image img{
  display:block;
  width:96px;
  height:72px;
  border-radius:9px;
}
.builder-news-list-compact .builder-list-image,
.builder-news-list-compact .builder-list-image a,
.builder-news-list-compact .builder-list-image img{
  border-radius:8px;
}
.builder-news-list-compact .builder-list-image img{
  width:64px;
  height:50px;
}
.builder-news-list h3{
  margin:0;
  font-size:13px;
  line-height:1.6;
}
.builder-news-list-compact h3{
  font-size:11px;
  line-height:1.55;
}
.builder-news-list p{
  margin:3px 0 0;
  line-height:1.7;
}
.builder-news-list article span{
  font-size:8px;
}
@media(max-width:620px){
  .builder-news-list article,
  .builder-news-list-compact article{
    grid-template-columns:64px minmax(0,1fr);
    gap:9px;
    padding:6px 0;
  }
  .builder-list-image img,
  .builder-news-list-compact .builder-list-image img{
    width:64px;
    height:50px;
  }
  .builder-news-list-large article{
    grid-template-columns:1fr;
  }
  .builder-news-list-large .builder-list-image img{
    width:100%;
    height:190px;
  }
}

/* Fit/minimal lead-news cards — 2026-07-27 */
.builder-lead-list{
  padding:14px;
  border-radius:16px;
}
.builder-lead-layout{
  gap:14px;
}
.builder-lead-story{
  padding:10px;
  border-radius:14px;
  overflow:visible;
  box-sizing:border-box;
}
.builder-lead-media{
  border-radius:12px;
  overflow:hidden;
  background:var(--surface);
}
.builder-lead-media a{
  display:block;
  width:100%;
  height:100%;
}
.builder-lead-media img{
  display:block;
  border-radius:12px;
}
.builder-lead-copy{
  padding:13px 4px 4px;
}
.builder-lead-copy h3{
  margin:4px 0;
  font-size:clamp(18px,1.8vw,25px);
  line-height:1.7;
}
.builder-lead-copy p{
  margin-top:6px;
  line-height:1.85;
}

/* Top lead: inset image with rounded bottom corners */
.builder-lead-list-top .builder-lead-media{
  width:100%;
  height:min(var(--builder-lead-height,280px),300px);
}
.builder-lead-list-top .builder-lead-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Right lead: full image on top, copy below, list remains in left column */
.builder-lead-list-right .builder-lead-layout{
  grid-template-columns:minmax(0,1.35fr) minmax(280px,.85fr);
  align-items:start;
}
.builder-lead-list-right .builder-lead-story{
  display:block;
  min-height:0;
  grid-column:1;
}
.builder-lead-list-right .builder-lead-media{
  width:100%;
  height:auto;
  min-height:0;
  aspect-ratio:16/10;
}
.builder-lead-list-right .builder-lead-media img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.builder-lead-list-right .builder-lead-copy{
  display:block;
  padding:13px 4px 4px;
}
.builder-lead-list-right .builder-lead-items{
  grid-column:2;
  max-height:var(--builder-lead-height,430px);
  overflow:auto;
  padding-inline-end:3px;
}
.builder-lead-items article{
  grid-template-columns:92px minmax(0,1fr);
  gap:10px;
  padding:8px;
  border-radius:11px;
}
.builder-lead-thumb{
  height:68px;
  border-radius:9px;
}
.builder-lead-items h4{
  margin:2px 0 0;
  font-size:13px;
  line-height:1.65;
}
.builder-lead-item-copy p{
  margin-top:3px;
  font-size:11px;
  line-height:1.65;
}

@media(max-width:900px){
  .builder-lead-list-right .builder-lead-layout{
    grid-template-columns:1fr;
  }
  .builder-lead-list-right .builder-lead-story,
  .builder-lead-list-right .builder-lead-items{
    grid-column:auto;
  }
  .builder-lead-list-right .builder-lead-items{
    max-height:none;
  }
}
@media(max-width:620px){
  .builder-lead-list{padding:10px}
  .builder-lead-story{padding:8px}
  .builder-lead-list-right .builder-lead-media{aspect-ratio:16/10}
  .builder-lead-items article{grid-template-columns:78px minmax(0,1fr)}
  .builder-lead-thumb{height:60px}
}

/* Lead-right list: no inner scroll + clean text truncation — 2026-07-27 */
.builder-lead-list-right .builder-lead-items{
  max-height:none !important;
  height:auto !important;
  overflow:visible !important;
  padding-inline-end:0 !important;
  align-content:start;
}
.builder-lead-list-right .builder-lead-items article{
  min-height:0;
  overflow:hidden;
}
.builder-lead-list-right .builder-lead-items h4{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  max-height:3.3em;
}
.builder-lead-list-right .builder-lead-item-copy p{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  max-height:3.3em;
}
.builder-lead-list-right .builder-lead-copy h3{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  text-overflow:ellipsis;
}
.builder-lead-list-right .builder-lead-copy p,
.builder-lead-list-top .builder-lead-copy p{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media(max-width:620px){
  .builder-lead-list-right .builder-lead-copy h3{-webkit-line-clamp:2}
  .builder-lead-list-right .builder-lead-item-copy p{-webkit-line-clamp:1;max-height:1.65em}
}

/* Lead-right featured image: force complete rounded clipping — 2026-07-27 */
.builder-lead-list-right .builder-lead-media{
  position:relative;
  overflow:hidden!important;
  border-radius:14px!important;
  isolation:isolate;
  transform:translateZ(0);
  -webkit-mask-image:-webkit-radial-gradient(white,black);
  clip-path:inset(0 round 14px);
}
.builder-lead-list-right .builder-lead-media>a{
  display:block!important;
  width:100%!important;
  height:100%!important;
  overflow:hidden!important;
  border-radius:inherit!important;
  clip-path:inset(0 round 14px);
}
.builder-lead-list-right .builder-lead-media img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  border-radius:inherit!important;
  clip-path:inset(0 round 14px);
}
