/*
Theme Name: News Blocksy Child
Template: blocksy
Version: 1.0.0
Text Domain: news-blocksy-child
*/

:root {
  --news-ink: #13171f;
  --news-muted: #5d6675;
  --news-rule: #d8dde5;
  --news-soft: #f4f6f8;
  --news-accent: #b6212d;
  --news-accent-dark: #891721;
}

.news-home {
  color: var(--news-ink);
}

.news-home a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.news-wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.news-section-title {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 2rem);
  line-height: 1.12;
  text-wrap: balance;
}

.news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--news-accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-hero {
  border-bottom: 1px solid var(--news-rule);
  padding: clamp(28px, 5vw, 64px) 0 clamp(30px, 5vw, 62px);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.news-featured-media,
.news-card-media,
.news-popular-media {
  display: block;
  overflow: hidden;
  background: var(--news-soft);
}

.news-featured-media {
  aspect-ratio: 4 / 3;
}

.news-featured-media img,
.news-card-media img,
.news-popular-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease-out;
}

.news-card:hover img,
.news-featured:hover img,
.news-popular-item:hover img {
  transform: scale(1.025);
}

.news-featured-title {
  margin: 0;
  font-size: clamp(2.1rem, 1.35rem + 2.7vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.news-featured-title a,
.news-card-title a,
.news-popular-title a {
  color: inherit;
  text-decoration: none;
}

.news-featured-excerpt {
  margin: 18px 0 0;
  color: var(--news-muted);
  max-width: 62ch;
  font-size: clamp(1rem, 0.93rem + 0.25vw, 1.14rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 16px;
  color: var(--news-muted);
  font-size: 0.9rem;
}

.news-meta a {
  color: var(--news-accent-dark);
  text-decoration: none;
}

.news-side {
  border: 1px solid var(--news-rule);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
}

.news-popular-list {
  display: grid;
  gap: 16px;
}

.news-popular-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.news-popular-media {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.news-popular-title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.28;
  text-wrap: pretty;
}

.news-main {
  padding: clamp(30px, 5vw, 68px) 0;
}

.news-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.news-card {
  min-width: 0;
}

.news-card-media {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  margin-bottom: 14px;
}

.news-card-title {
  margin: 0;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.35rem);
  line-height: 1.18;
  text-wrap: pretty;
}

.news-card-excerpt {
  margin: 10px 0 0;
  color: var(--news-muted);
  line-height: 1.58;
}

.news-cats {
  position: sticky;
  top: 24px;
}

.news-cat-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.news-cat-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--news-rule);
  color: var(--news-ink);
  text-decoration: none;
}

.news-cat-list span {
  color: var(--news-muted);
}

.news-empty {
  padding: 22px;
  border: 1px solid var(--news-rule);
  border-radius: 8px;
  background: var(--news-soft);
  color: var(--news-muted);
}

@media (max-width: 980px) {
  .news-hero-grid,
  .news-featured,
  .news-content-grid {
    grid-template-columns: 1fr;
  }

  .news-cats {
    position: static;
  }
}

@media (max-width: 560px) {
  .news-wrap {
    width: min(100% - 22px, 1180px);
  }

  .news-hero {
    padding-top: 22px;
  }

  .news-featured-title {
    font-size: clamp(2rem, 1.7rem + 4vw, 3rem);
  }

  .news-popular-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-featured-media img,
  .news-card-media img,
  .news-popular-media img {
    transition: none;
  }

  .news-card:hover img,
  .news-featured:hover img,
  .news-popular-item:hover img {
    transform: none;
  }
}

.news-language-switcher {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--news-rule);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(130%) blur(8px);
}

.news-language-switcher__item {
  min-width: 38px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--news-muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.news-language-switcher__item:hover,
.news-language-switcher__item:focus-visible,
.news-language-switcher__item.is-active {
  color: #fff;
  background: var(--news-accent);
}

@media (max-width: 560px) {
  .news-language-switcher {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

.news-footer {
  margin-top: clamp(34px, 6vw, 72px);
  background: #111923;
  color: #e8edf3;
}

.news-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(38px, 6vw, 72px) 0;
}

.news-footer h2,
.news-footer h3,
.news-footer p,
.news-footer dl,
.news-footer ul {
  margin-top: 0;
}

.news-footer h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.5rem);
  line-height: 1.05;
}

.news-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.news-footer p {
  max-width: 58ch;
  color: #bac7d5;
  line-height: 1.68;
}

.news-footer a {
  color: #e8edf3;
  text-decoration-color: rgba(232, 237, 243, 0.4);
  text-underline-offset: 0.18em;
}

.news-footer a:hover,
.news-footer a:focus-visible {
  color: #fff;
}

.news-footer__links {
  list-style: none;
  display: grid;
  gap: 9px;
  padding: 0;
  margin-bottom: 0;
}

.news-footer__contact {
  display: grid;
  gap: 12px;
  color: #bac7d5;
}

.news-footer__contact div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.news-footer__contact dt {
  color: #fff;
  font-weight: 800;
}

.news-footer__contact dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.news-footer__support-link {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 55, 47, 0.92);
  background: var(--news-accent);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.news-footer__support-link:hover,
.news-footer__support-link:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff !important;
}

.news-footer__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-footer__languages a {
  min-width: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(232, 237, 243, 0.26);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.news-footer__languages a.is-active,
.news-footer__languages a:hover,
.news-footer__languages a:focus-visible {
  border-color: var(--news-accent);
  background: var(--news-accent);
  color: #fff;
}

.news-footer__bottom {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(232, 237, 243, 0.16);
  color: #9eaec0;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .news-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .news-footer__inner {
    width: min(100% - 22px, 1180px);
    grid-template-columns: 1fr;
  }

  .news-footer__bottom {
    width: min(100% - 22px, 1180px);
  }
}

/* Header language switcher polish */
.news-language-switcher {
  position: relative;
  top: auto;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 12px 16px;
  border-top: 1px solid #edf1f5;
  border-bottom: 1px solid #dfe6ee;
  background: #f7f9fc;
  backdrop-filter: none;
}

.news-language-switcher__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid #d2dbe6;
  border-right-width: 0;
  border-radius: 0;
  background: #fff;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
}

.news-language-switcher__item:first-child {
  border-radius: 999px 0 0 999px;
}

.news-language-switcher__item:last-child {
  border-right-width: 1px;
  border-radius: 0 999px 999px 0;
}

.news-language-switcher__item:hover,
.news-language-switcher__item:focus-visible {
  color: #111923;
  background: #eef4ff;
}

.news-language-switcher__item.is-active {
  border-color: #2872fa;
  background: #2872fa;
  color: #fff;
}

.news-language-switcher__item.is-active + .news-language-switcher__item {
  border-left-color: #2872fa;
}

@media (max-width: 560px) {
  .news-language-switcher {
    justify-content: center;
    overflow-x: auto;
    padding: 10px 12px;
  }

  .news-language-switcher__item {
    min-width: 44px;
    min-height: 32px;
  }
}

.news-footer #news-footer-title {
  color: #fff;
  letter-spacing: 0;
}

.news-footer__brand p {
  color: #c8d2de;
}

/* Header logo and front-page alignment pass */
.ct-header [data-row="middle"] .ct-container {
  min-height: clamp(88px, 7vw, 116px);
}

.ct-header [data-id="logo"] .site-logo-container {
  display: inline-flex;
  align-items: center;
  max-width: min(54vw, 430px);
}

.ct-header [data-id="logo"] .site-logo-container img.default-logo {
  width: clamp(300px, 27vw, 420px);
  max-width: 100%;
  max-height: none !important;
  height: auto;
  display: block;
}

.news-language-switcher--in-topbar {
  position: static;
  display: inline-flex;
  justify-content: flex-start;
  gap: 6px;
  width: auto;
  margin-left: 18px;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 1px solid rgba(212, 214, 216, 0.28);
  background: transparent;
}

.news-language-switcher--in-topbar .news-language-switcher__item {
  min-width: 34px;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(212, 214, 216, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #d4d6d8;
  font-size: 0.72rem;
  font-weight: 800;
}

.news-language-switcher--in-topbar .news-language-switcher__item:first-child,
.news-language-switcher--in-topbar .news-language-switcher__item:last-child {
  border-radius: 999px;
}

.news-language-switcher--in-topbar .news-language-switcher__item:hover,
.news-language-switcher--in-topbar .news-language-switcher__item:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.news-language-switcher--in-topbar .news-language-switcher__item.is-active {
  border-color: #2872fa;
  background: #2872fa;
  color: #fff;
}

.news-language-switcher--in-topbar .news-language-switcher__item.is-active + .news-language-switcher__item {
  border-left-color: rgba(212, 214, 216, 0.34);
}

@media (min-width: 690px) {
  .news-language-switcher:not(.news-language-switcher--in-topbar) {
    position: absolute;
    top: 13px;
    right: max(24px, calc((100vw - 1180px) / 2));
    z-index: 120;
    display: inline-flex;
    justify-content: flex-start;
    gap: 6px;
    width: auto;
    margin: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 1px solid rgba(212, 214, 216, 0.28);
    background: transparent;
  }

  .news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item {
    min-width: 34px;
    min-height: 24px;
    padding: 5px 8px;
    border: 1px solid rgba(212, 214, 216, 0.34);
    border-radius: 999px;
    background: transparent;
    color: #d4d6d8;
    font-size: 0.72rem;
    font-weight: 800;
  }

  .news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item:first-child,
  .news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item:last-child {
    border-radius: 999px;
  }

  .news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item:hover,
  .news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item.is-active {
    border-color: #2872fa;
    background: #2872fa;
    color: #fff;
  }
}

.news-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 368px);
  gap: clamp(24px, 3.4vw, 44px);
  align-items: start;
}

.news-featured {
  grid-template-columns: minmax(250px, 0.78fr) minmax(340px, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.news-featured-media {
  margin-top: 42px;
}

.news-featured-title {
  max-width: 480px;
  font-size: clamp(2.35rem, 1.7rem + 1.8vw, 3.08rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.news-featured-excerpt {
  max-width: 48ch;
  margin-top: 20px;
}

.news-side {
  padding: clamp(20px, 2vw, 26px);
}

.news-side .news-section-title {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 1.35rem + 1vw, 2.35rem);
}

.news-popular-list {
  gap: 17px;
}

.news-popular-item {
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.news-popular-title {
  font-size: 0.99rem;
  line-height: 1.26;
}

@media (max-width: 980px) {
  .news-hero-grid,
  .news-featured,
  .news-content-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-media {
    margin-top: 0;
  }

  .news-featured-title {
    max-width: 720px;
    font-size: clamp(2.2rem, 1.65rem + 4vw, 3.1rem);
  }
}

@media (max-width: 689px) {
  .ct-header [data-row="middle"] .ct-container {
    min-height: 74px;
  }

  .ct-header [data-id="logo"] .site-logo-container {
    max-width: min(68vw, 270px);
  }

  .ct-header [data-id="logo"] .site-logo-container img.default-logo {
    width: clamp(205px, 58vw, 270px);
  }
}

@media (max-width: 560px) {
  .news-featured-title {
    max-width: 100%;
    font-size: clamp(2rem, 1.45rem + 6vw, 2.65rem);
  }

  .news-side .news-section-title {
    font-size: 1.65rem;
  }
}

/* Nexus-style news layout pass */
:root {
  --news-ink: #1e1e1d;
  --news-muted: #686862;
  --news-rule: #d7d3ca;
  --news-paper: #fbfbfa;
  --news-surface: #ffffff;
  --news-accent: #d43b30;
  --news-accent-dark: #a72d25;
}

body {
  background: var(--news-paper);
  color: var(--news-ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ct-header [data-row="top"] {
  --theme-link-initial-color: var(--news-ink);
  --theme-link-hover-color: var(--news-accent);
  --theme-text-color: var(--news-ink);
  background: var(--news-surface) !important;
  border-bottom: 1px solid var(--news-ink);
  color: var(--news-ink);
}

.ct-header [data-row="top"] .ct-container {
  min-height: 54px;
}

.ct-header [data-row="top"] a,
.ct-header [data-row="top"] svg {
  color: var(--news-ink) !important;
  fill: currentColor;
}

.ct-header .header-menu-1,
.ct-header .header-menu-2 {
  display: none !important;
}

.ct-header [data-row="middle"] {
  background: var(--news-surface) !important;
}

.ct-header [data-row="middle"] .ct-container {
  min-height: clamp(82px, 7vw, 108px);
  justify-content: center;
}

.ct-header [data-row="middle"] [data-column="start"] {
  flex: 1;
  justify-content: center;
}

@media (min-width: 690px) {
  .ct-header [data-device="desktop"] {
    position: relative;
  }

  .ct-header [data-row="top"] {
    display: none !important;
  }

  .ct-header [data-row="middle"] .ct-container {
    position: relative;
  }

  .news-header-socials {
    position: absolute;
    top: 50%;
    left: max(24px, calc((100% - 1200px) / 2));
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    transform: translateY(-50%);
  }

  .news-header-socials .ct-social-box {
    display: inline-flex;
    align-items: center;
    gap: 18px;
  }

  .news-header-socials .ct-header-search {
    margin-left: 0;
  }

  .news-header-socials,
  .news-header-socials a,
  .news-header-socials svg,
  .news-header-socials .ct-icon {
    color: var(--news-ink) !important;
    fill: currentColor !important;
    opacity: 1 !important;
  }

  .ct-header [data-row="middle"] [data-column="start"] {
    position: absolute;
    top: 50%;
    left: 50%;
    flex: 0 0 auto;
    transform: translate(-50%, -50%);
  }

  .ct-header [data-row="middle"] [data-column="end"] {
    min-width: 230px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .ct-header [data-row="middle"] [data-column="end"] [data-items="primary"] {
    justify-content: flex-end;
  }
}

.ct-header [data-id="logo"] .site-logo-container {
  max-width: min(64vw, 360px);
}

.ct-header [data-id="logo"] .site-logo-container img.default-logo {
  width: clamp(250px, 24vw, 350px);
}

.news-language-switcher--in-topbar,
.news-language-switcher:not(.news-language-switcher--in-topbar) {
  border-left-color: var(--news-rule);
}

.news-language-switcher--in-topbar {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100% - 1200px) / 2));
  gap: 7px;
  margin-left: 0;
  padding: 0;
  border-left: 0;
  transform: translateY(-50%);
}

.news-language-switcher--in-topbar .news-language-switcher__item,
.news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item {
  border-color: var(--news-rule);
  background: transparent;
  color: var(--news-ink);
}

.news-language-switcher--in-topbar .news-language-switcher__item:hover,
.news-language-switcher--in-topbar .news-language-switcher__item:focus-visible,
.news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item:hover,
.news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item:focus-visible {
  border-color: var(--news-accent);
  background: color-mix(in srgb, var(--news-accent) 9%, #fff);
  color: var(--news-accent-dark);
}

.news-language-switcher--in-topbar .news-language-switcher__item.is-active,
.news-language-switcher:not(.news-language-switcher--in-topbar) .news-language-switcher__item.is-active {
  border-color: var(--news-accent);
  background: var(--news-accent);
  color: #fff;
}

.news-section-nav {
  border-bottom: 1px solid var(--news-rule);
  border-top: 1px solid var(--news-rule);
  background: var(--news-paper);
}

.news-section-nav__inner {
  width: min(1200px, calc(100% - 32px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  overflow-x: auto;
  white-space: nowrap;
}

.news-section-nav a {
  color: var(--news-ink);
  font-size: clamp(0.95rem, 0.9rem + 0.18vw, 1.08rem);
  font-weight: 800;
  text-decoration: none;
}

.news-section-nav a:hover,
.news-section-nav a:focus-visible {
  color: var(--news-accent);
}

.news-home {
  background: var(--news-paper);
  color: var(--news-ink);
}

.news-wrap {
  width: min(1200px, calc(100% - 32px));
}

.news-top-stories {
  padding: clamp(26px, 3.6vw, 42px) 0 clamp(22px, 3vw, 36px);
}

.news-top-stories .news-wrap {
  width: min(1200px, calc(100% - 32px));
}

.news-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 590px);
  gap: 20px;
  align-items: start;
  justify-content: center;
}

.news-lead-card {
  position: relative;
  height: 424px;
  min-height: 0;
  overflow: hidden;
  background: #202020;
}

.news-lead-card__media,
.news-top-card__media,
.news-strip-card__media,
.news-section-card__media {
  display: block;
  overflow: hidden;
  background: #eceae5;
}

.news-lead-card__media {
  position: absolute;
  inset: 0;
}

.news-lead-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
}

.news-lead-card__media img,
.news-top-card__media img,
.news-strip-card__media img,
.news-section-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 190ms ease-out;
}

.news-video-preview {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #111820;
  color: inherit;
}

.news-video-preview--interactive,
.news-video-play[data-youtube-id] {
  cursor: pointer;
}

.news-video-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 190ms ease-out;
}

.news-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(46px, 6vw, 68px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16) 54%, rgba(255, 255, 255, 0.08)),
    rgba(26, 34, 45, 0.32);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px) saturate(1.2);
  transition:
    transform 160ms ease-out,
    background-color 160ms ease-out,
    box-shadow 160ms ease-out;
}

.news-video-play::before {
  position: absolute;
  left: 54%;
  top: 50%;
  width: 26%;
  height: 34%;
  content: "";
  transform: translate(-42%, -50%);
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(0 0, 0 100%, 88% 50%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
}

.news-lead-card .news-video-play {
  width: clamp(88px, 9vw, 124px);
}

.news-top-card .news-video-play {
  width: clamp(56px, 5.5vw, 74px);
}

.news-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111820;
}

.news-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hero-section .news-article-video-banner {
  display: block;
  width: 100%;
}

.hero-section .news-article-video-banner .news-video-preview {
  aspect-ratio: 16 / 9;
  min-height: clamp(240px, 48vw, 620px);
}

.hero-section .news-article-video-banner .news-video-play {
  left: auto;
  right: clamp(32px, 7vw, 112px);
  top: auto;
  bottom: clamp(42px, 7vw, 88px);
  width: clamp(56px, 5.5vw, 76px);
  transform: none;
}

.news-video-play[data-youtube-id]:hover,
.news-video-play[data-youtube-id]:focus-visible,
.news-video-preview--interactive:hover .news-video-play,
.news-video-preview--interactive:focus-visible .news-video-play {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24) 56%, rgba(255, 255, 255, 0.12)),
    rgba(36, 46, 60, 0.42);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.16),
    0 0 34px rgba(255, 255, 255, 0.26),
    0 12px 24px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) scale(1.08);
}

.news-video-play[data-youtube-id]:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.hero-section .news-article-video-banner .news-video-preview--lightbox:hover .news-video-play,
.hero-section .news-article-video-banner .news-video-preview--lightbox:focus-visible .news-video-play {
  transform: scale(1.08);
}

.news-video-preview--interactive:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: -8px;
}

.entry-content > .news-video-preview {
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 0 clamp(24px, 4vw, 44px);
}

.news-video-modal[hidden] {
  display: none;
}

.news-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 56px);
  background: rgba(3, 5, 8, 0.9);
}

.news-video-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
}

.news-video-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
}

.news-video-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.news-video-modal__close {
  position: absolute;
  right: 0;
  top: -48px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.news-video-modal__close::before,
.news-video-modal__close::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  content: "";
  background: #fff;
}

.news-video-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-video-modal-open {
  overflow: hidden;
}

@media (max-width: 689px) {
  .news-video-modal {
    padding: 52px 14px 20px;
  }

  .news-video-modal__close {
    right: 0;
    top: -44px;
  }
}

.news-lead-card:hover img,
.news-top-card:hover img,
.news-strip-card:hover img,
.news-section-card:hover img {
  transform: scale(1.025);
}

.news-lead-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(20px, 2.4vw, 30px);
  color: #fff;
}

.news-category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 12px;
  padding: 5px 8px;
  background: var(--news-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.news-category-badge:hover,
.news-category-badge:focus-visible {
  background: var(--news-accent-dark);
  color: #fff;
}

.news-kicker {
  margin: 0 0 8px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.news-lead-card__title {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.52rem, 1.16rem + 1.18vw, 2.18rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.news-lead-card__title a,
.news-top-card__title a,
.news-strip-card__title a,
.news-section-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-lead-card .news-meta {
  color: rgba(255, 255, 255, 0.76);
}

.news-lead-card .news-meta a {
  color: #fff;
}

.news-top-stack {
  display: grid;
  grid-template-rows: repeat(2, 202px);
  gap: 20px;
}

.news-top-card {
  display: grid;
  grid-template-columns: minmax(0, 292px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.news-top-card__media {
  height: 100%;
}

.news-top-card__title {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(1.02rem, 0.94rem + 0.28vw, 1.22rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.news-top-card__body {
  align-self: center;
  min-width: 0;
  overflow: hidden;
}

.news-meta {
  margin-top: 12px;
  color: var(--news-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.news-meta a {
  color: var(--news-accent-dark);
  text-decoration: none;
}

.news-latest-strip,
.news-category-sections {
  padding: clamp(14px, 2.5vw, 28px) 0;
}

.news-section-heading {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.news-section-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: var(--news-ink);
  font-size: clamp(1.05rem, 0.95rem + 0.38vw, 1.32rem);
  font-weight: 800;
  line-height: 1.2;
}

.news-section-heading h2::before {
  position: absolute;
  top: 0.1em;
  bottom: 0.1em;
  left: 0;
  width: 3px;
  content: "";
  background: var(--news-accent);
}

.news-section-heading span {
  height: 1px;
  background: var(--news-rule);
}

.news-section-heading a {
  color: var(--news-accent);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.news-section-heading a::after {
  content: " ->";
}

.news-strip-grid,
.news-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(20px, 2.5vw, 30px);
}

.news-strip-card,
.news-section-card {
  min-width: 0;
}

.news-strip-card__media,
.news-section-card__media {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
}

.news-strip-card__title,
.news-section-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 0.98rem + 0.26vw, 1.22rem);
  line-height: 1.16;
  letter-spacing: -0.008em;
  text-wrap: pretty;
}

.news-section-block {
  padding: clamp(26px, 4vw, 52px) 0;
}

.news-section-block + .news-section-block {
  border-top: 1px solid var(--news-rule);
}

.news-section-card__excerpt {
  max-width: 64ch;
  margin: 10px 0 0;
  color: var(--news-muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.news-empty {
  border: 1px solid var(--news-rule);
  border-radius: 0;
  background: var(--news-surface);
  color: var(--news-muted);
}

.news-archive {
  background: var(--news-paper);
  color: var(--news-ink);
}

.news-archive-hero {
  padding: clamp(30px, 4vw, 56px) 0 14px;
}

.news-archive-eyebrow {
  margin: 0 0 8px;
  color: var(--news-accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-archive-title {
  margin: 0;
  font-size: clamp(2rem, 1.45rem + 1.8vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.news-archive-description {
  max-width: 68ch;
  margin-top: 14px;
  color: var(--news-muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.news-archive-list {
  padding: clamp(22px, 3vw, 34px) 0 clamp(54px, 7vw, 86px);
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.news-archive-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-archive-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  overflow: hidden;
  background: #eceae5;
}

.news-archive-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 190ms ease-out;
}

.news-archive-card:hover .news-archive-card__media img {
  transform: scale(1.025);
}

.news-archive-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.news-archive-card .news-category-badge {
  align-self: flex-start;
}

.news-archive-card__title {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--news-ink);
  font-size: clamp(1.18rem, 1.02rem + 0.48vw, 1.55rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-archive-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-archive-card__excerpt {
  margin: 12px 0 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--news-muted);
  font-size: 0.98rem;
  line-height: 1.58;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-archive-card .news-meta {
  margin-top: auto;
  padding-top: 16px;
}

.news-archive-card .news-meta a {
  color: var(--news-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.news-archive-pagination {
  margin-top: clamp(34px, 4vw, 52px);
}

.news-archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid var(--news-rule);
  color: var(--news-ink);
  font-weight: 800;
  text-decoration: none;
}

.news-archive-pagination .page-numbers.current,
.news-archive-pagination .page-numbers:hover,
.news-archive-pagination .page-numbers:focus-visible {
  border-color: var(--news-accent);
  background: var(--news-accent);
  color: #fff;
}

@media (max-width: 1120px) {
  .news-top-grid {
    grid-template-columns: 1fr;
  }

  .news-top-stack {
    grid-template-rows: none;
  }

  .news-lead-card {
    height: auto;
    min-height: clamp(360px, 62vw, 520px);
  }

  .news-top-card {
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1fr);
    min-height: 202px;
  }

  .news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 689px) {
  .ct-header [data-row="top"] .ct-container {
    min-height: 44px;
  }

  .ct-header [data-row="middle"] .ct-container {
    min-height: 76px;
  }

  .ct-header [data-id="logo"] .site-logo-container {
    max-width: min(72vw, 280px);
  }

  .ct-header [data-id="logo"] .site-logo-container img.default-logo {
    width: clamp(220px, 64vw, 280px);
  }

  .news-language-switcher {
    border-top: 1px solid var(--news-rule);
    border-bottom: 0;
    background: var(--news-surface);
  }

  .news-section-nav__inner {
    width: min(100% - 22px, 1200px);
    min-height: 54px;
    justify-content: flex-start;
    gap: 22px;
  }

  .news-section-nav {
    display: none;
  }

  .news-mobile-sections {
    padding: 22px 24px 28px;
    border-top: 1px solid var(--news-rule);
  }

  .news-mobile-sections__title {
    margin-bottom: 10px;
    color: var(--news-muted);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .news-mobile-sections__links {
    display: grid;
    gap: 2px;
  }

  .news-mobile-sections__links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--news-rule);
    color: var(--news-ink);
    font-size: 1.04rem;
    font-weight: 800;
    text-decoration: none;
  }

  .news-mobile-sections__links a:hover,
  .news-mobile-sections__links a:focus-visible {
    color: var(--news-accent);
  }

  #offcanvas .mobile-menu,
  #offcanvas .ct-header-text {
    display: none !important;
  }

  #offcanvas.ct-panel {
    background: rgba(17, 24, 39, 0.42) !important;
  }

  #offcanvas .ct-panel-inner {
    width: min(88vw, 380px);
    min-height: 100%;
    margin-left: auto;
    background: #fff !important;
    color: var(--news-ink);
    box-shadow: -18px 0 34px rgba(17, 24, 39, 0.18);
  }

  #offcanvas .ct-panel-actions {
    min-height: 58px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--news-rule);
    background: #fff;
  }

  #offcanvas .ct-toggle-close {
    color: var(--news-ink) !important;
    opacity: 1;
  }

  #offcanvas .ct-panel-content[data-device="mobile"],
  #offcanvas .ct-panel-content[data-device="mobile"] .ct-panel-content-inner {
    background: #fff !important;
    color: var(--news-ink);
  }

  #offcanvas .ct-header-socials {
    padding: 20px 24px 12px;
    border-bottom: 1px solid var(--news-rule);
  }

  #offcanvas .ct-social-box {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  #offcanvas .ct-header-socials a,
  #offcanvas .ct-header-socials svg {
    color: var(--news-ink) !important;
    fill: currentColor !important;
    opacity: 1 !important;
  }

  #offcanvas .news-mobile-sections {
    padding: 18px 24px 28px;
    border-top: 0;
    background: #fff;
  }

  #offcanvas .news-mobile-sections__title {
    color: var(--news-muted);
  }

  #offcanvas .news-mobile-sections__links a {
    border-bottom-color: var(--news-rule);
    color: var(--news-ink) !important;
  }

  .news-top-stories {
    padding-top: 24px;
  }

  .news-lead-card__title {
    font-size: clamp(1.8rem, 1.25rem + 5vw, 2.55rem);
  }

  .news-top-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    overflow: visible;
  }

  .news-top-card__media {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .news-top-card__title {
    font-size: clamp(1.08rem, 0.96rem + 1vw, 1.28rem);
    -webkit-line-clamp: 5;
  }

  .news-archive-hero {
    padding-top: 24px;
  }

  .news-archive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-archive-card__title {
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 480px) {
  .news-wrap {
    width: min(100% - 22px, 1200px);
  }

  .news-lead-card {
    min-height: 430px;
  }

  .news-lead-card__content {
    padding: 20px;
  }

  .news-section-heading {
    grid-template-columns: auto 1fr;
  }

  .news-section-heading a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-lead-card__media img,
  .news-top-card__media img,
  .news-strip-card__media img,
  .news-section-card__media img,
  .news-archive-card__media img,
  .news-video-preview img,
  .news-video-play {
    transition: none;
  }

  .news-lead-card:hover img,
  .news-top-card:hover img,
  .news-strip-card:hover img,
  .news-section-card:hover img,
  .news-archive-card:hover .news-archive-card__media img {
    transform: none;
  }
}

.news-article-table {
  width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-article-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border-top: 1px solid var(--news-rule);
  border-bottom: 1px solid var(--news-rule);
  font-size: 0.94rem;
  line-height: 1.45;
}

.news-article-table th,
.news-article-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--news-rule);
  text-align: left;
  vertical-align: top;
}

.news-article-table th {
  color: var(--news-ink);
  font-weight: 800;
}

.news-article-table td {
  color: var(--news-muted);
}

/* Final header composition: languages and socials left, PayPal support right. */
@media (min-width: 690px) {
  .ct-header [data-row="middle"] .ct-container {
    min-height: 82px;
  }

  .news-header-socials {
    left: max(32px, calc((100% - 1200px) / 2)) !important;
    gap: 12px !important;
    height: 44px;
  }

  .news-header-socials .ct-social-box {
    gap: 12px !important;
  }

  .news-header-socials .ct-social-box a,
  .news-header-socials .ct-header-search {
    width: 16px;
    height: 16px;
  }

  .news-header-socials svg,
  .news-header-socials .ct-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .news-header-socials .news-language-switcher.news-language-switcher--in-socialbar {
    position: static !important;
    inset: auto !important;
    z-index: 10;
    display: inline-flex !important;
    width: auto !important;
    margin: 0 2px 0 0 !important;
    padding: 0 !important;
    gap: 6px !important;
    border: 0 !important;
    background: transparent !important;
    transform: none !important;
  }

  .news-header-socials .news-language-switcher--in-socialbar .news-language-switcher__item {
    min-width: 28px !important;
    min-height: 28px !important;
    padding: 0 7px !important;
    border: 1px solid #d9dee5 !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #20242b !important;
    font-size: 0.66rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: none !important;
  }

  .news-header-socials .news-language-switcher--in-socialbar .news-language-switcher__item.is-active {
    border-color: var(--news-accent) !important;
    background: var(--news-accent) !important;
    color: #fff !important;
  }

  .news-header-actions--in-topbar {
    right: max(32px, calc((100% - 1200px) / 2)) !important;
    display: block !important;
    width: auto;
  }

  .news-header-actions--in-topbar .news-language-switcher {
    display: none !important;
  }

  .news-header-actions--in-topbar .news-support-entry--header {
    width: 220px;
    min-width: 220px;
    height: 44px;
    min-height: 44px;
    padding: 0 14px;
    gap: 11px;
    border: 1px solid #052f73;
    border-radius: 7px;
    background: linear-gradient(180deg, #104fa1 0%, #07367f 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 1px 2px rgba(7, 24, 48, 0.22);
  }

  .news-header-actions--in-topbar .news-support-entry--header:hover,
  .news-header-actions--in-topbar .news-support-entry--header:focus-visible {
    border-color: #042761;
    background: linear-gradient(180deg, #0d4691 0%, #062f70 100%);
  }

  .news-header-actions--in-topbar .news-support-entry--header .news-support-entry__paypal {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0;
    line-height: 1;
  }

  .news-header-actions--in-topbar .news-support-entry--header .news-support-entry__paypal::before {
    content: "P";
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 5px;
    background: linear-gradient(135deg, #f6fbff 0%, #b7d8ff 100%);
    color: #1453a3;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: inset -2px -2px 0 rgba(20, 83, 163, 0.12);
  }

  .news-header-actions--in-topbar .news-support-entry--header .news-support-entry__paypal::after {
    content: "PayPal";
    color: #fff;
    font-size: 1.28rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0;
  }

  .news-header-actions--in-topbar .news-support-entry--header > span:last-child {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
  }

  .news-header-actions--in-topbar .news-support-entry--header .news-paypal-logo {
    width: 94px;
  }
}

@media (max-width: 689px) {
  .news-support-entry--mobile .news-support-entry__paypal {
    font-size: 0;
  }

  .news-support-entry--mobile .news-support-entry__paypal::before {
    content: "PayPal";
    font-size: 0.95rem;
    font-weight: 900;
  }

  .news-support-entry--mobile .news-paypal-logo,
  .news-support-cta__button .news-paypal-logo {
    width: 88px;
  }
}

.news-header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.news-header-actions--in-topbar {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100% - 1200px) / 2));
  z-index: 9;
  transform: translateY(-50%);
}

.news-header-actions .news-language-switcher {
  order: 1;
}

.news-header-actions .news-support-entry--header {
  order: 2;
}

.news-header-actions--in-topbar .news-language-switcher--in-topbar {
  position: static;
  top: auto;
  right: auto;
  margin: 0;
  transform: none;
}

.news-support-entry,
.news-support-cta__button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #143f7f;
  background: #143f7f;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
}

.news-support-entry {
  padding: 0 14px;
  border-radius: 5px;
  box-shadow: none;
  white-space: nowrap;
}

.news-support-entry:hover,
.news-support-entry:focus-visible,
.news-support-cta__button:hover,
.news-support-cta__button:focus-visible {
  border-color: #0f3164;
  background: #0f3164;
  color: #fff !important;
}

.news-support-entry__paypal {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.news-paypal-logo-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.news-paypal-logo {
  display: block;
  width: 92px;
  height: auto;
  filter: brightness(0) invert(1);
}

.news-support-cta__button {
  min-width: 220px;
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  gap: 11px;
  border-color: #052f73;
  border-radius: 7px;
  background: linear-gradient(180deg, #104fa1 0%, #07367f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 1px 2px rgba(7, 24, 48, 0.18);
}

.news-support-cta__button:hover,
.news-support-cta__button:focus-visible {
  border-color: #042761;
  background: linear-gradient(180deg, #0d4691 0%, #062f70 100%);
}

.news-support-cta__button .news-support-entry__paypal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0;
  line-height: 1;
}

.news-support-cta__button .news-support-entry__paypal::before {
  content: "P";
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #f6fbff 0%, #b7d8ff 100%);
  color: #1453a3;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset -2px -2px 0 rgba(20, 83, 163, 0.12);
}

.news-support-cta__button .news-support-entry__paypal::after {
  content: "PayPal";
  color: #fff;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.news-support-cta__button > span:last-child {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.news-support-cta__button .news-paypal-logo {
  width: 92px;
}

.news-support-cta {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  border: 1px solid var(--news-rule);
  background: var(--news-surface);
  color: var(--news-ink);
}

.news-support-cta__copy h2,
.news-support-cta__copy p {
  margin: 0;
}

.news-support-cta__copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.16rem, 1.08rem + 0.28vw, 1.34rem);
  line-height: 1.22;
  text-wrap: balance;
}

.news-support-cta__copy p {
  color: var(--news-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.news-support-cta__button {
  min-width: 170px;
  padding: 0 18px;
}

.news-support-cta--article {
  width: 100%;
  margin: 38px 0 8px;
  padding: 24px;
}

.news-support-cta--article .news-support-cta__copy {
  margin-bottom: 18px;
}

.news-support-cta--article .news-support-cta__copy p {
  max-width: 72ch;
}

.news-support-cta--footer-strip {
  display: flex;
  margin-top: 34px;
  margin-bottom: 16px;
  padding: 12px 14px 12px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.news-support-cta--footer-strip .news-support-cta__copy p {
  color: var(--news-ink);
  font-weight: 800;
}

.news-footer__support-link {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 55, 47, 0.92);
  background: var(--news-accent);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.news-footer__support-link:hover,
.news-footer__support-link:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff !important;
}

.news-support-page {
  width: min(1040px, calc(100% - 32px));
  margin: clamp(44px, 6vw, 76px) auto;
  color: var(--news-ink);
}

.news-support-page > * + * {
  margin-top: 28px;
}

.news-support-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding-bottom: clamp(30px, 5vw, 54px);
  border-bottom: 1px solid var(--news-rule);
}

.news-support-page__kicker {
  margin: 0 0 12px;
  color: var(--news-accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.news-support-page h2 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 1.38rem + 2.2vw, 3.75rem);
  line-height: 1.02;
  color: var(--news-ink);
  font-weight: 900;
  text-wrap: balance;
}

.news-support-page h3 {
  margin: 0 0 10px;
  color: var(--news-ink);
  font-weight: 800;
  line-height: 1.18;
  text-wrap: balance;
}

.news-support-page p,
.news-support-page li {
  color: var(--news-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.news-support-page__lead {
  max-width: 680px;
  margin: 0;
  color: var(--news-muted);
  font-size: clamp(1.05rem, 0.98rem + 0.32vw, 1.22rem);
  line-height: 1.6;
}

.news-support-page__summary {
  padding: 20px;
  border: 1px solid var(--news-rule);
  background: var(--news-surface);
}

.news-support-page__summary p {
  margin: 0;
  color: var(--news-ink);
  font-weight: 800;
}

.news-support-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 28px;
}

.news-support-page__details {
  padding: 22px;
  border: 1px solid var(--news-rule);
  background: var(--news-surface);
}

.news-support-page__note {
  padding: 22px;
  border: 1px solid var(--news-rule);
  background: var(--news-soft);
}

.news-support-page__details ul {
  margin: 0;
  padding-left: 20px;
}

.news-support-page__note p:last-child,
.news-support-page__details p:last-child {
  margin-bottom: 0;
}

.news-support-page code {
  padding: 2px 6px;
  background: var(--news-soft);
  color: var(--news-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

@media (max-width: 900px) {
  .news-support-page__hero,
  .news-support-page__grid {
    grid-template-columns: 1fr;
  }

  .news-support-cta--footer-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 689px) {
  .news-header-actions {
    border-top: 1px solid var(--news-rule);
    background: var(--news-surface);
  }

  .news-header-actions .news-support-entry--header {
    display: none;
  }

  .news-header-actions .news-language-switcher {
    width: 100%;
    border-top: 0;
    justify-content: center;
  }

  .news-mobile-support {
    padding-top: 18px;
  }

  .news-mobile-support .news-support-entry {
    width: 100%;
    min-height: 44px;
    border-color: #052f73;
    border-radius: 6px;
    background: linear-gradient(180deg, #104fa1 0%, #07367f 100%);
    font-size: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 1px 2px rgba(7, 24, 48, 0.16);
  }

  .news-mobile-languages {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--news-rule);
  }

  .news-mobile-languages .news-language-switcher {
    display: flex;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    justify-content: flex-start;
    gap: 7px;
  }

  .news-mobile-languages .news-language-switcher__item {
    min-width: 30px;
    min-height: 30px;
    padding: 0 8px;
    border: 1px solid #d9dee5;
    border-radius: 999px;
    background: #fff;
    color: var(--news-ink);
    font-size: 0.68rem;
  }

  .news-mobile-languages .news-language-switcher__item.is-active {
    border-color: var(--news-accent);
    background: var(--news-accent);
    color: #fff;
  }

  .news-support-cta {
    width: min(100% - 22px, 1200px);
  }

  .news-support-cta--article {
    width: 100%;
    padding: 18px;
  }

  .news-support-cta__button {
    width: 100%;
    min-height: 42px;
  }
}

/* Final logo scale after the compact brand mark update. */
.ct-header [data-id="logo"] .site-logo-container {
  max-width: min(54vw, 300px);
}

.ct-header [data-id="logo"] .site-logo-container img.default-logo {
  width: clamp(210px, 19vw, 285px);
}

@media (max-width: 689px) {
  .ct-header [data-id="logo"] .site-logo-container {
    max-width: min(62vw, 220px);
  }

  .ct-header [data-id="logo"] .site-logo-container img.default-logo {
    width: clamp(170px, 48vw, 220px);
  }
}
