:root {
  --mg-primary: #06479f;
  --mg-navy: #022b66;
  --mg-accent: #ffe500;
  --mg-ink: #0d1b35;
  --mg-muted: #68738a;
  --mg-surface: #f5f7fb;
  --mg-border: #dfe5ee;
  --mg-white: #fff;
  --mg-max: 1180px;
  --mg-radius: 6px;
  --mg-shadow: 0 12px 34px rgba(7, 31, 69, .11);
  --mg-ease: cubic-bezier(.22, 1, .36, 1);
  --mg-header-height: 79px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--mg-ink); background: #fff; font-family: var(--mg-font, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif); font-size: var(--mg-base-size, 16px); line-height: 1.5; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open, body.search-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-shell { width: min(calc(100% - 88px), var(--mg-max)); margin-inline: auto; }
.site-main { min-height: 55vh; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute!important; width: 1px; word-wrap: normal!important; }
.screen-reader-text:focus, .skip-link:focus { clip: auto!important; clip-path: none; height: auto; width: auto; top: 8px; left: 8px; padding: 12px 16px; color: var(--mg-navy); background: var(--mg-accent); z-index: 99999; font-weight: 800; }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

/* Top bar and header */
.topbar { min-height: 26px; color: #fff; background: linear-gradient(110deg, #064ca7, #032e72); font-size: 9px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 26px; }
.topbar-context, .topbar-context > span, .topbar-social { display: flex; align-items: center; gap: 13px; }
.topbar-context > span + span { border-left: 1px solid rgba(255,255,255,.35); padding-left: 13px; }
.topbar .icon { width: 14px; height: 14px; }
.social-menu { display: flex; align-items: center; gap: 13px; list-style: none; padding: 0; margin: 0; }
.social-menu a { display: grid; place-items: center; color: inherit; }
.social-menu a:hover, .social-menu a:focus-visible { color: var(--mg-accent); transform: translateY(-1px); }
.site-header { position: relative; z-index: 100; height: var(--mg-header-height); background: rgba(255,255,255,.98); border-bottom: 1px solid var(--mg-border); transition: box-shadow .25s ease, height .25s ease; }
.has-sticky-header .site-header { position: sticky; top: 0; }
.admin-bar.has-sticky-header .site-header { top: 32px; }
.site-header.is-scrolled { height: 76px; box-shadow: 0 10px 28px rgba(7,31,69,.12); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.site-branding { flex: 0 0 175px; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-width: 158px; max-height: 60px; object-fit: contain; }
.wordmark { display: inline-flex; flex-direction: column; color: #080b11; line-height: .77; letter-spacing: -.055em; }
.wordmark > span, .wordmark > strong { font-size: 30px; font-weight: 850; }
.wordmark > strong { font-size: 34px; }
.wordmark small { margin-top: 11px; font-size: 9px; line-height: 1; letter-spacing: 0; color: #555d6d; font-weight: 500; }
.primary-navigation { margin-left: auto; height: 100%; }
.primary-menu { display: flex; align-items: stretch; height: 100%; list-style: none; padding: 0; margin: 0; }
.primary-menu > li { position: relative; display: flex; align-items: center; }
.primary-menu a { position: relative; display: flex; align-items: center; height: 100%; padding: 0 10px; font-size: 10px; font-weight: 650; white-space: nowrap; }
.primary-menu > li > a::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 18px; height: 2px; background: var(--mg-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--mg-ease); }
.primary-menu > li:hover > a::after, .primary-menu > li.current-menu-item > a::after, .primary-menu > li.current-menu-ancestor > a::after, .primary-menu > li > a:focus-visible::after { transform: scaleX(1); }
.primary-menu .sub-menu { position: absolute; visibility: hidden; opacity: 0; list-style: none; top: calc(100% - 10px); left: 0; min-width: 240px; margin: 0; padding: 9px; background: #fff; border: 1px solid var(--mg-border); border-radius: 7px; box-shadow: var(--mg-shadow); transform: translateY(10px); transition: .2s ease; }
.primary-menu .sub-menu .sub-menu { left: calc(100% - 2px); top: 0; }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.primary-menu .sub-menu a { height: auto; padding: 10px 12px; border-radius: 4px; white-space: normal; }
.primary-menu .sub-menu a:hover, .primary-menu .sub-menu a:focus-visible { background: var(--mg-surface); color: var(--mg-primary); }
.primary-menu .menu-item-mega-enabled { position: static; }
.primary-menu .menu-item-mega-enabled > .sub-menu { left: 260px; right: 58px; display: grid; grid-template-columns: repeat(4,1fr); }
.search-toggle, .menu-toggle, .mobile-menu-close, .search-close { display: grid; place-items: center; border: 0; background: transparent; color: var(--mg-ink); padding: 10px; cursor: pointer; border-radius: 50%; }
.search-toggle:hover, .search-toggle:focus-visible { background: var(--mg-surface); color: var(--mg-primary); }
.search-toggle .icon { width: 22px; height: 22px; }
.menu-toggle, .mobile-menu-close, .mobile-social { display: none; }
.nav-scrim { position: fixed; inset: 0; z-index: 109; background: rgba(0,19,49,.62); backdrop-filter: blur(2px); }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: start center; padding-top: clamp(90px, 16vh, 180px); background: rgba(0,24,61,.86); backdrop-filter: blur(10px); }
.search-overlay[hidden] { display: none; }
.search-dialog { position: relative; width: min(680px, calc(100% - 36px)); padding: 45px; background: #fff; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.search-close { position: absolute; top: 14px; right: 14px; }
.search-eyebrow { color: var(--mg-primary); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.search-dialog h2 { margin: 4px 0 24px; font-size: clamp(26px,4vw,42px); letter-spacing: -.035em; }
.search-form { display: flex; min-width: 0; }
.search-form label { flex: 1; min-width: 0; }
.search-field { width: 100%; height: 44px; padding: 0 14px; border: 1px solid #cdd5e1; border-right: 0; border-radius: 5px 0 0 5px; outline: 0; }
.search-field:focus { border-color: var(--mg-primary); box-shadow: inset 0 0 0 1px var(--mg-primary); }
.search-submit { width: 46px; border: 0; border-radius: 0 5px 5px 0; color: #fff; background: var(--mg-primary); cursor: pointer; }
.search-submit:hover, .search-submit:focus-visible { background: var(--mg-navy); }

/* Hero */
.hero-editorial { background: #031a3c; color: #fff; overflow: hidden; }
.hero-grid { width: min(100%, 1440px); height: 260px; min-height: 260px; margin-inline: auto; display: grid; grid-template-columns: 57% 43%; }
.hero-lead, .hero-story { position: relative; min-width: 0; overflow: hidden; isolation: isolate; }
.hero-media, .hero-story-media, .hero-scrim, .hero-story-scrim { position: absolute; inset: 0; }
.hero-media img, .hero-story-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { object-position: 62% center; }
.hero-lead .hero-media, .hero-lead .hero-content { transition: opacity .18s ease; }
.hero-lead.is-changing .hero-media, .hero-lead.is-changing .hero-content { opacity: .35; }
.hero-scrim { z-index: 1; background: linear-gradient(90deg, rgba(1,30,71,.99) 0%, rgba(1,35,80,.84) 37%, rgba(2,30,66,.08) 78%), linear-gradient(0deg, rgba(2,26,59,.55), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: 76%; height: 100%; min-height: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 24px 20px 28px max(46px, calc((100vw - min(100vw, var(--mg-max))) / 2)); }
.post-kicker { display: inline-flex; align-items: center; width: fit-content; color: #fff; background: var(--mg-primary); border-radius: 2px; padding: 4px 9px; font-size: 10px; line-height: 1.25; font-weight: 800; text-transform: uppercase; }
.hero-content .post-kicker { color: var(--mg-accent); background: transparent; border-bottom: 2px solid var(--mg-accent); border-radius: 0; padding: 0 0 7px; }
.hero-content h1 { margin: 9px 0 7px; max-width: 470px; font-size: clamp(25px, 3.08vw, 44px); line-height: 1.04; letter-spacing: -.035em; }
.hero-content p { max-width: 390px; margin: 0 0 13px; color: rgba(255,255,255,.9); font-size: 11px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 28px; padding: 0 13px; border: 0; border-radius: 3px; font-weight: 800; font-size: 10px; transition: transform .2s var(--mg-ease), box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.button-accent { color: var(--mg-navy); background: var(--mg-accent); }
.button-primary { color: #fff; background: var(--mg-primary); }
.hero-secondary { display: grid; height: 260px; min-height: 0; grid-template-columns: 1fr 1.25fr; grid-template-rows: minmax(0,1fr) minmax(0,1fr); gap: 2px; background: #fff; }
.hero-story-4 { grid-column: 1 / 3; }
.hero-story-scrim { z-index: 1; background: linear-gradient(90deg, rgba(0,20,52,.95), rgba(0,24,61,.22)); }
.hero-story-content { position: relative; z-index: 2; height: 100%; display: flex; flex-wrap: wrap; align-content: flex-start; gap: 4px 6px; padding: 13px 15px; }
.hero-number { font-size: 18px; line-height: 1; font-weight: 350; }
.hero-story-content .post-kicker { padding: 0 0 0 8px; background: none; border-left: 1px solid rgba(255,255,255,.6); border-radius: 0; font-size: 9px; }
.hero-story h2 { flex: 0 0 100%; margin: 9px 0 0; font-size: clamp(10px, 1.15vw, 17px); line-height: 1.35; font-weight: 650; }
.hero-story a::after { content: ""; position: absolute; inset: 0; z-index: 3; }
.hero-story:hover img { transform: scale(1.035); }
.hero-story img { transition: transform .7s var(--mg-ease); }
.hero-control { position: absolute; z-index: 4; top: 50%; display: grid; place-items: center; width: 29px; height: 29px; margin-top: -15px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(9,36,73,.48); cursor: pointer; backdrop-filter: blur(5px); }
.hero-prev { left: 12px; transform: rotate(180deg); }
.hero-next { right: 12px; }
.hero-control:hover, .hero-control:focus-visible { background: var(--mg-primary); }
.hero-dots { position: absolute; z-index: 4; left: 49%; bottom: 16px; display: flex; gap: 6px; }
.hero-dots button { width: 8px; height: 8px; border: 0; border-radius: 50%; padding: 0; background: rgba(255,255,255,.9); cursor: pointer; }
.hero-dots button.is-active { background: var(--mg-accent); }

/* Homepage sections */
.home-layout { display: grid; grid-template-columns: minmax(0, 1fr) 226px; gap: 34px; padding-top: 15px; padding-bottom: 0; }
.home-section { margin-bottom: 20px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; min-height: 28px; margin-bottom: 10px; border-bottom: 1px solid var(--mg-border); }
.section-heading h2 { position: relative; margin: 0; padding: 0 0 9px; font-size: 14px; line-height: 1; letter-spacing: -.015em; }
.section-heading h2::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 42px; height: 3px; background: var(--mg-accent); }
.section-heading > a { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 9px; color: var(--mg-primary); font-size: 10px; font-weight: 750; }
.section-heading > a:hover, .section-heading > a:focus-visible { text-decoration: underline; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.post-card { min-width: 0; overflow: hidden; border: 1px solid var(--mg-border); border-radius: var(--mg-radius); background: #fff; transition: transform .3s var(--mg-ease), box-shadow .3s ease, border-color .3s ease; }
.post-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--mg-shadow); }
.reduce-card-motion .post-card:hover { transform: none; }
.card-media { display: block; height: 118px; overflow: hidden; background: #d9e1ed; }
.card-media img, .media-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--mg-ease); }
.post-card:hover .card-media img { transform: scale(1.035); }
.media-fallback { display: grid; place-items: center; background: radial-gradient(circle at 75% 25%, #2372c9, transparent 32%), linear-gradient(135deg, #032c67, #0756b4); color: rgba(255,255,255,.55); font-size: 38px; font-weight: 900; }
.card-body { display: flex; flex-direction: column; min-height: 141px; padding: 9px 10px 8px; }
.card-title { margin: 6px 0 4px; font-size: 11px; line-height: 1.34; letter-spacing: -.01em; }
.post-card-featured .card-title { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.post-card-standard .card-title { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.card-title a:hover, .card-title a:focus-visible { color: var(--mg-primary); }
.card-excerpt { margin: 0 0 7px; color: var(--mg-muted); font-size: 8.5px; line-height: 1.48; }
.post-card-featured .card-excerpt { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: auto; color: #8b94a6; font-size: 9px; }
.post-meta > span { display: inline-flex; align-items: center; gap: 4px; }
.post-meta .icon { width: 11px; height: 11px; }
.post-meta .meta-separator { display: inline; }
.post-card-featured .card-body { height: 141px; min-height: 141px; }
.post-card-standard .card-body { height: 119px; min-height: 119px; }
.gallery-section { margin-bottom: 0; }
.image-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.image-strip a { height: 72px; overflow: hidden; border-radius: 5px; }
.image-strip img, .image-strip .media-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mg-ease); }
.image-strip a:hover img { transform: scale(1.06); }

/* Sidebar */
.editorial-sidebar > section, .widget { margin-bottom: 20px; }
.weather-card { padding: 14px 14px 12px; color: #fff; background: radial-gradient(circle at 86% 12%, #0b64c6, transparent 38%), linear-gradient(145deg, #064aa4, #03337b); border-radius: 7px; box-shadow: 0 9px 24px rgba(4,63,142,.2); }
.weather-days span { gap: 10px; }
.weather-location { margin: 0 0 4px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.weather-main { display: flex; justify-content: space-between; align-items: center; }
.weather-main strong { font-size: 36px; line-height: 1; }
.weather-main sup { font-size: 17px; font-weight: 500; vertical-align: top; }
.weather-sun { color: var(--mg-accent); font-size: 48px; line-height: 1; }
.weather-card > p:not(.weather-location) { margin: 5px 0 14px; font-size: 13px; }
.weather-details { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); font-size: 9px; }
.weather-days { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 11px; text-align: center; font-size: 9px; }
.weather-days span { display: flex; flex-direction: column; gap: 16px; }
.weather-days b { font-size: 12px; }
.widget-title { margin: 0 0 9px; font-size: 13px; }
.sidebar-search { padding: 11px 14px 14px; background: var(--mg-surface); border-radius: 5px; }
.sidebar-search .search-field, .sidebar-search .search-submit { height: 30px; }
.sidebar-search .search-field { font-size: 10px; }
.category-widget { padding: 15px; background: linear-gradient(135deg,#fbfcfd,#f1f4f8); border-radius: 5px; }
.category-widget ul, .footer-categories { list-style: none; padding: 0; margin: 0; }
.category-widget li { display: flex; justify-content: space-between; align-items: center; min-height: 34px; border-bottom: 1px solid #e5e9ef; color: var(--mg-primary); font-size: 10px; font-weight: 750; }
.category-widget li:last-child { border: 0; }
.category-widget li a { flex: 1; }
.category-widget .cat-count, .category-widget li { font-variant-numeric: tabular-nums; }
.newsletter-card { padding: 16px; color: #fff; background: radial-gradient(circle at 12% 5%, #0c6ad1, transparent 34%), linear-gradient(145deg,#06489f,#032e70); border-radius: 7px; }
.sidebar-widgets { padding-top: 4px; }
.sidebar-widgets .widget { padding: 15px; background: var(--mg-surface); border-radius: 5px; }
.sidebar-widgets ul { margin: 0; padding-left: 18px; }
.sidebar-widgets li { margin-bottom: 6px; font-size: 11px; }
.newsletter-card-title { display: flex; align-items: flex-start; gap: 12px; }
.newsletter-card-title .icon { width: 38px; height: 38px; color: #6bb7ff; transform: rotate(-15deg); }
.newsletter-card h2 { margin: 0; font-size: 12px; line-height: 1.3; }
.newsletter-card p { margin: 11px 0; font-size: 9px; }
.newsletter-card .newsletter-form input { height: 31px; }
.newsletter-card .newsletter-form button { height: 29px; }
.newsletter-form { display: grid; gap: 8px; }
.newsletter-form input { width: 100%; min-width: 0; height: 42px; padding: 0 13px; border: 1px solid transparent; border-radius: 4px; outline: 0; }
.newsletter-form input:focus { border-color: var(--mg-accent); box-shadow: 0 0 0 3px rgba(255,229,0,.22); }
.newsletter-form button { display: flex; align-items: center; justify-content: center; gap: 15px; height: 40px; border: 0; border-radius: 4px; color: var(--mg-navy); background: var(--mg-accent); font-weight: 800; cursor: pointer; }
.newsletter-form button:hover, .newsletter-form button:focus-visible { background: #fff27a; }
.form-status { grid-column: 1/-1; margin: 0; font-size: 11px!important; }
.form-status.is-error { color: #ffd6d6; }

/* Author and lower modules */
.author-feature { position: relative; overflow: hidden; border-top: 1px solid #e3e8f0; border-bottom: 1px solid #e3e8f0; background: radial-gradient(circle at 96% 15%, rgba(5,78,163,.08), transparent 23%), linear-gradient(90deg,#f7f8fb,#fff); }
.author-feature::after { content: ""; position: absolute; inset: 0 0 0 70%; opacity: .15; background-image: radial-gradient(#0952a4 1.1px,transparent 1.1px); background-size: 9px 9px; pointer-events: none; }
.author-grid { display: grid; grid-template-columns: 37% 63%; align-items: stretch; max-width: 752px; }
.author-grid { height: 228px; }
.author-photo { height: 228px; min-height: 228px; background: linear-gradient(145deg,#dce6f2,#afc3dc); overflow: hidden; }
.author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.author-placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: 330px; color: rgba(255,255,255,.6); background: linear-gradient(135deg,#082b61,#0d64bd); font-size: 90px; font-weight: 900; }
.author-copy { position: relative; z-index: 1; align-self: center; padding: 12px 21px; }
.eyebrow { margin: 0; color: var(--mg-navy); font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.author-copy h2 { margin: 3px 0 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(24px,3vw,40px); line-height: 1; font-style: italic; font-weight: 500; }
.author-role { margin: 6px 0 12px; font-family: Georgia,"Times New Roman",serif; font-size: 12px; }
.author-copy > p:not(.eyebrow):not(.author-role) { max-width: 520px; color: #354056; font-size: 9px; }
.author-signature { margin: 5px 0 7px; font-family: "Brush Script MT", cursive; font-size: 23px; transform: rotate(-3deg); transform-origin: left; }
.lower-home { display: grid; grid-template-columns: minmax(0,1fr) 226px; gap: 28px; padding-top: 4px; padding-bottom: 4px; }
.lower-main .home-section { margin-bottom: 10px; }
.lower-main .home-section:last-child { margin-bottom: 0; }
.analysis-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.post-card-analysis .card-media { height: 145px; }
.post-card-analysis .card-body { min-height: 190px; height: auto; padding: 14px 15px 13px; }
.post-card-analysis .card-title { margin-bottom: 10px; font-size: 15px; line-height: 1.35; }
.post-card-analysis .card-excerpt { margin-bottom: 14px; font-size: 11px; line-height: 1.55; }
.post-card-analysis .post-meta { margin-top: auto; }
.compact-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.compact-card { min-width: 0; display: grid; grid-template-columns: 41% 1fr; gap: 10px; }
.analysis-section .compact-card { height: 68px; overflow: hidden; }
.compact-media { height: 68px; overflow: hidden; border-radius: 4px; }
.compact-media img, .compact-media .media-fallback { width: 100%; height: 100%; object-fit: cover; }
.compact-card h3 { margin: 0 0 8px; font-size: 11px; line-height: 1.35; }
.compact-card h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.compact-card h3 a:hover { color: var(--mg-primary); }
.compact-card .post-meta { font-size: 8px; }
.more-section { margin-bottom: 0; }
.more-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.more-grid .compact-card { grid-template-columns: 64px 1fr; }
.more-grid .compact-media { height: 45px; }
.more-grid .post-meta { display: none; }
.more-grid .compact-card h3 { font-size: 8px; -webkit-line-clamp: 3; }
.opinion-card { align-self: start; position: relative; min-height: 156px; overflow: hidden; margin-top: 0; padding: 24px; color: #fff; background: radial-gradient(circle at 100% 0,#0872d5,transparent 48%), linear-gradient(135deg,#05469c,#032d6c); border-radius: 7px; }
.opinion-card > div { position: relative; z-index: 2; width: 70%; }
.opinion-card h2 { margin: 0 0 10px; font-size: 14px; }
.opinion-card p { margin: 0 0 15px; font-size: 11px; }
.microphone { position: absolute; right: 22px; top: 15px; color: #7ebaf2; font-size: 76px; opacity: .75; text-shadow: 9px 9px 0 rgba(0,0,0,.15); }

/* Footer */
.footer-newsletter { color: #fff; background: linear-gradient(90deg,#0751b0,#064297); }
.footer-newsletter-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-newsletter-copy { display: flex; align-items: center; gap: 17px; }
.newsletter-line-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; }
.newsletter-line-icon .icon { width: 26px; height: 26px; }
.footer-newsletter h2 { margin: 0; font-size: 14px; }
.footer-newsletter p { margin: 0; font-size: 9px; }
.newsletter-form.is-compact { width: 370px; display: grid; grid-template-columns: 1fr 140px; gap: 8px; }
.newsletter-form.is-compact input, .newsletter-form.is-compact button { height: 32px; }
.site-footer { color: rgba(255,255,255,.9); background: linear-gradient(125deg,#032e6b,#021e4c); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 28px; padding-top: 5px; padding-bottom: 3px; }
.footer-brand { padding-right: 25px; border-right: 1px solid rgba(255,255,255,.22); }
.footer-wordmark { display: inline-flex; flex-direction: column; line-height: .8; }
.footer-wordmark img { width: auto; height: 38px; object-fit: contain; object-position: left center; }
.footer-wordmark span { font-size: 22px; }
.footer-wordmark strong { font-size: 25px; }
.footer-brand p { margin: 6px 0; font-size: 7px; }
.footer-column h2 { margin: 0 0 5px; font-size: 7px; }
.footer-menu, .footer-contact ul { list-style: none; margin: 0; padding: 0; }
.footer-menu li { font-size: 7px; line-height: 1.15; }
.footer-menu a, .footer-categories li, .footer-contact li { font-size: 7px; line-height: 1.15; }
.footer-menu a:hover, .footer-categories a:hover, .footer-contact a:hover { color: var(--mg-accent); }
.footer-categories li { display: flex; justify-content: space-between; }
.footer-categories li::marker { content: ""; }
.footer-contact li { display: flex; align-items: center; gap: 7px; margin-bottom: 3px; }
.footer-contact .icon { width: 12px; height: 12px; }
.site-info { padding: 2px 0 3px; border-top: 1px solid rgba(255,255,255,.14); text-align: center; font-size: 8px; line-height: 1.1; }
.back-to-top { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; place-items: center; width: 42px; height: 42px; opacity: 0; visibility: hidden; border: 0; border-radius: 50%; color: var(--mg-navy); background: var(--mg-accent); box-shadow: var(--mg-shadow); cursor: pointer; transform: translateY(12px) rotate(-90deg); transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) rotate(-90deg); }

/* Archives and single content */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 22px 0; color: var(--mg-muted); font-size: 11px; }
.breadcrumbs a:hover { color: var(--mg-primary); }
.breadcrumbs .icon { width: 12px; height: 12px; }
.breadcrumbs span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60ch; }
.archive-header { padding: 26px 0 32px; border-bottom: 1px solid var(--mg-border); }
.archive-header h1, .page-header h1 { margin: 5px 0 0; font-size: clamp(32px,5vw,58px); letter-spacing: -.045em; }
.archive-description { max-width: 720px; color: var(--mg-muted); }
.archive-layout, .single-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 44px; padding: 34px 0 60px; }
.archive-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.navigation.pagination { margin-top: 30px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 11px; border: 1px solid var(--mg-border); border-radius: 4px; }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--mg-primary); border-color: var(--mg-primary); }
.single-article { min-width: 0; }
.single-header { padding: 26px 0 30px; }
.single-header h1 { max-width: 900px; margin: 14px 0; font-size: clamp(36px,5.2vw,66px); line-height: 1.03; letter-spacing: -.045em; }
.single-excerpt { max-width: 760px; color: var(--mg-muted); font-family: Georgia,"Times New Roman",serif; font-size: 20px; line-height: 1.45; }
.single-byline { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-size: 12px; }
.author-avatar img { border-radius: 50%; }
.single-byline .post-meta { margin-top: 4px; }
.single-featured { margin: 0 0 32px; overflow: hidden; border-radius: 8px; }
.single-featured img { width: 100%; }
.entry-content { color: #243148; font-family: Georgia,"Times New Roman",serif; font-size: 18px; line-height: 1.78; }
.entry-content > * { max-width: 760px; margin-inline: auto; }
.entry-content > .alignwide { max-width: 980px; }
.entry-content > .alignfull { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); }
.entry-content a { color: var(--mg-primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content blockquote { margin-block: 36px; padding: 5px 0 5px 25px; border-left: 4px solid var(--mg-accent); color: var(--mg-navy); font-size: 24px; line-height: 1.45; }
.entry-content img { border-radius: 5px; }
.article-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--mg-border); font-size: 12px; }
.source-attribution a { display: inline-flex; align-items: center; gap: 7px; color: var(--mg-primary); font-weight: 700; }
.post-navigation { margin-top: 34px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.post-navigation a { display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--mg-border); border-radius: 5px; font-weight: 700; }
.post-navigation .nav-next { text-align: right; }
.post-navigation span { margin-bottom: 4px; color: var(--mg-muted); font-size: 10px; text-transform: uppercase; }
.page-main { padding-bottom: 60px; }
.page-article { max-width: 900px; margin-inline: auto; }
.page-header { padding: 45px 0 30px; }
.page-featured { margin: 0 0 30px; }
.comments-area { margin-top: 45px; padding-top: 30px; border-top: 1px solid var(--mg-border); }
.comment-list { padding-left: 22px; }
.comment-form input:not([type=submit]), .comment-form textarea { width: 100%; border: 1px solid var(--mg-border); padding: 12px; border-radius: 4px; }
.comment-form input[type=submit] { border: 0; padding: 12px 18px; color: #fff; background: var(--mg-primary); border-radius: 4px; font-weight: 800; }
.no-results { grid-column: 1/-1; padding: 50px 20px; text-align: center; background: var(--mg-surface); border-radius: 7px; }
.no-results .search-form { max-width: 480px; margin: 20px auto 0; }
.error-main { display: grid; place-items: center; min-height: 62vh; padding: 70px 0; background: var(--mg-surface); }
.error-content { text-align: center; }
.error-code { margin: 0; color: var(--mg-primary); font-size: clamp(90px,18vw,210px); line-height: .8; font-weight: 900; opacity: .12; }
.error-content h1 { margin: -12px 0 8px; font-size: clamp(30px,5vw,55px); }
.error-content .search-form { max-width: 500px; margin: 25px auto 18px; }

/* Responsive recomposition */
@media (max-width: 1180px) {
  :root { --mg-header-height: 79px; }
  .site-shell { width: min(calc(100% - 88px), var(--mg-max)); }
  .site-branding { flex-basis: 175px; }
  .wordmark > span { font-size: 25px; }
  .wordmark > strong { font-size: 28px; }
  .primary-menu a { padding-inline: 7px; font-size: 9px; }
  .primary-menu > li > a::after { left: 9px; right: 9px; }
  .hero-grid { min-height: 260px; }
  .hero-grid, .hero-secondary { height: 260px; }
  .hero-content { min-height: 260px; }
  .home-layout, .archive-layout, .single-layout { grid-template-columns: minmax(0,1fr) 226px; gap: 34px; }
  .card-media { height: 118px; }
}

@media (max-width: 780px) {
  .topbar { display: none; }
  .admin-bar.has-sticky-header .site-header { top: 46px; }
  .site-branding { flex-basis: auto; }
  .menu-toggle { display: grid; margin-left: auto; }
  .primary-navigation { position: fixed; z-index: 110; top: 0; right: 0; bottom: 0; width: min(390px, 88vw); height: 100dvh; overflow-y: auto; margin: 0; padding: 76px 24px 30px; background: #fff; box-shadow: -20px 0 60px rgba(0,23,57,.25); transform: translateX(105%); visibility: hidden; transition: transform .35s var(--mg-ease), visibility .35s; }
  .primary-navigation.is-open { transform: translateX(0); visibility: visible; }
  .mobile-menu-close { display: grid; position: absolute; top: 18px; right: 18px; }
  .primary-menu { display: block; height: auto; }
  .primary-menu > li { display: block; border-bottom: 1px solid var(--mg-border); }
  .primary-menu a { min-height: 52px; padding: 12px 4px; font-size: 14px; white-space: normal; }
  .primary-menu > li > a::after { left: 0; right: auto; bottom: 10px; width: 35px; }
  .primary-menu .sub-menu, .primary-menu .sub-menu .sub-menu, .primary-menu .menu-item-mega-enabled > .sub-menu { position: static; display: block; visibility: visible; opacity: 1; min-width: 0; padding: 0 0 8px 16px; border: 0; box-shadow: none; transform: none; }
  .mobile-social { display: block; margin-top: 26px; color: var(--mg-primary); }
  .hero-grid { height: auto; grid-template-columns: 1fr; }
  .hero-lead, .hero-content { min-height: 480px; }
  .hero-secondary { height: 340px; min-height: 340px; grid-template-columns: repeat(3,1fr); grid-template-rows: 1fr; }
  .hero-story-4 { grid-column: auto; }
  .hero-story-content { align-content: flex-end; }
  .home-layout, .archive-layout, .single-layout { grid-template-columns: minmax(0,1fr); }
  .editorial-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .editorial-sidebar > section { margin: 0; }
  .weather-card { grid-row: span 2; }
  .author-grid { grid-template-columns: 42% 58%; }
  .lower-home { grid-template-columns: 1fr; }
  .opinion-card { width: 100%; }
  .opinion-card > div { width: 50%; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 2/4; }
}

@media (max-width: 720px) {
  .site-shell { width: min(calc(100% - 28px), var(--mg-max)); }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .wordmark > span { font-size: 22px; }
  .wordmark > strong { font-size: 25px; }
  .wordmark small { display: none; }
  .header-inner { gap: 3px; }
  .hero-lead, .hero-content { min-height: 510px; }
  .hero-content { width: 88%; padding: 40px 26px 62px; justify-content: flex-end; }
  .hero-scrim { background: linear-gradient(0deg,rgba(1,23,54,.99),rgba(1,27,62,.12) 80%), linear-gradient(90deg,rgba(1,30,71,.6),transparent); }
  .hero-content h1 { font-size: clamp(34px,9vw,48px); }
  .hero-control { top: 42%; width: 38px; height: 38px; }
  .hero-dots { left: 26px; transform: none; }
  .hero-dots { bottom: 4px; gap: 0; }
  .hero-dots button { width: 44px; height: 44px; color: #fff; background: radial-gradient(circle, currentColor 0 4px, transparent 4.5px); }
  .hero-dots button.is-active { color: var(--mg-accent); background: radial-gradient(circle, currentColor 0 4px, transparent 4.5px); }
  .hero-secondary { height: 210px; min-height: 210px; grid-template-columns: repeat(3, min(84vw, 360px)); grid-template-rows: 210px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; }
  .hero-story { scroll-snap-align: start; }
  .hero-story h2 { max-width: 90%; font-size: 19px; }
  .home-layout { padding-top: 22px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card { display: grid; grid-template-columns: 40% 1fr; }
  .card-media { height: 100%; min-height: 185px; }
  .card-body, .post-card-featured .card-body, .post-card-standard .card-body { height: auto; min-height: 185px; }
  .image-strip { grid-template-columns: repeat(2,1fr); }
  .image-strip a { height: 120px; }
  .image-strip a:last-child { grid-column: 1/-1; }
  .editorial-sidebar { grid-template-columns: 1fr; }
  .weather-card { grid-row: auto; }
  .author-grid { width: 100%; height: auto; grid-template-columns: 1fr; }
  .author-photo, .author-placeholder { min-height: 390px; }
  .author-copy { padding: 34px 24px 42px; }
  .analysis-card-grid, .compact-grid, .more-grid { grid-template-columns: 1fr 1fr; }
  .post-card-analysis { display: block; }
  .post-card-analysis .card-media { height: 190px; min-height: 0; }
  .compact-card, .more-grid .compact-card { grid-template-columns: 92px 1fr; }
  .compact-media, .more-grid .compact-media { height: 70px; }
  .footer-newsletter-inner { flex-direction: column; align-items: stretch; padding-block: 18px; }
  .newsletter-form.is-compact { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding: 0 0 18px; }
  .footer-contact { grid-column: 1/-1; }
  .archive-grid { grid-template-columns: 1fr; }
  .single-header h1 { font-size: clamp(34px,10vw,52px); }
  .entry-content { font-size: 17px; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .search-toggle, .menu-toggle { padding: 8px; }
  .search-dialog { padding: 36px 20px 24px; }
  .post-card { display: block; }
  .card-media { height: 200px; }
  .card-body, .post-card-featured .card-body, .post-card-standard .card-body { height: auto; min-height: 0; }
  .post-meta { margin-top: 15px; }
  .section-heading h2 { font-size: 15px; }
  .image-strip a { height: 100px; }
  .author-photo, .author-placeholder { min-height: 330px; }
  .analysis-card-grid, .compact-grid, .more-grid { grid-template-columns: 1fr; }
  .post-card-analysis .card-media { height: 210px; }
  .opinion-card > div { width: 70%; }
  .newsletter-form.is-compact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .archive-header { padding-top: 10px; }
  .single-byline { align-items: flex-start; }
  .article-footer { flex-direction: column; }
}

@media (min-width: 1181px) {
  :root { --mg-header-height: 98px; }
  .topbar, .topbar-inner { min-height: 34px; }
  .topbar { font-size: 12px; }
  .site-branding { flex-basis: 235px; }
  .custom-logo { max-width: 205px; max-height: 72px; }
  .primary-menu a { padding-inline: 12px; font-size: 12px; }
  .hero-grid, .hero-secondary { height: 398px; min-height: 398px; }
  .hero-content { min-height: 398px; padding-left: max(70px, calc((100vw - min(100vw, var(--mg-max))) / 2)); }
  .hero-content h1 { font-size: 44px; }
  .hero-content p { font-size: 14px; }
  .button { min-height: 38px; padding-inline: 17px; font-size: 12px; }
  .hero-story-content { padding: 20px; }
  .hero-story h2 { margin-top: 15px; font-size: 18px; }
  .home-layout { grid-template-columns: minmax(0,1fr) 300px; gap: 44px; padding-top: 28px; }
  .home-section { margin-bottom: 30px; }
  .section-heading h2 { font-size: 17px; }
  .card-media { height: 168px; }
  .card-body { height: 188px; min-height: 188px; padding: 12px 13px 11px; }
  .card-title { font-size: 14px; }
  .card-excerpt { font-size: 11.5px; }
  .post-card-standard .card-body { height: 143px; min-height: 143px; }
  .image-strip a { height: 92px; }
  .author-grid { height: auto; max-width: 980px; }
  .author-photo { min-height: 330px; }
  .author-copy { padding: 28px 34px; }
  .author-copy h2 { font-size: 46px; }
  .author-role { font-size: 17px; }
  .author-copy > p:not(.eyebrow):not(.author-role) { font-size: 12px; }
  .lower-home { grid-template-columns: minmax(0,1fr) 290px; gap: 34px; padding-top: 20px; padding-bottom: 23px; }
  .analysis-section .compact-card { height: 86px; }
  .compact-media { height: 86px; }
  .more-grid .compact-media { height: 52px; }
  .footer-newsletter-inner { min-height: 60px; }
  .newsletter-line-icon { width: 44px; height: 44px; }
  .footer-newsletter h2 { font-size: 18px; }
  .footer-grid { padding-top: 22px; padding-bottom: 16px; }
  .footer-wordmark img { height: 54px; }
  .footer-brand p, .footer-column h2, .footer-menu li, .footer-menu a, .footer-categories li, .footer-contact li { font-size: 9px; }
  .footer-menu li, .footer-menu a, .footer-categories li, .footer-contact li { line-height: 1.55; }
}

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

@media print {
  .topbar, .site-header, .editorial-sidebar, .footer-newsletter, .site-footer, .back-to-top, .post-navigation, .comments-area { display: none!important; }
  .single-layout { display: block; }
  .entry-content { color: #000; font-size: 12pt; }
  a { text-decoration: none; }
}
