    :root {
      color-scheme: dark;
      --night: #020711;
      --night-soft: #071525;
      --cyan: #6cddff;
      --ice: #eafaff;
      --paper: #eef5f8;
      --paper-bright: #f9fcfd;
      --line-dark: rgba(102, 210, 255, .18);
      --line-light: rgba(28, 111, 151, .16);
      --shell: min(100% - 64px, 1480px);
    }

    * { box-sizing: border-box; }

    html {
      min-width: 320px;
      scroll-behavior: smooth;
      background: var(--night);
    }

    body {
      min-width: 320px;
      margin: 0;
      overflow-x: hidden;
      color: #eaf4ff;
      background: var(--night);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    button, input, a { font: inherit; }
    img { max-width: 100%; }
    a { color: inherit; }
    main { overflow: clip; }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 1000;
      padding: 10px 14px;
      color: #06111d;
      border-radius: 8px;
      background: #dff9ff;
      transform: translateY(-150%);
      transition: transform .2s ease;
    }

    .skip-link:focus { transform: translateY(0); }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 90px;
      padding: 28px clamp(28px, 3vw, 48px) 0;
      display: flex;
      align-items: flex-start;
      isolation: isolate;
      opacity: 0;
      transform: translateY(-10px);
      animation: headerIn .9s ease .15s forwards;
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0;
      background: linear-gradient(180deg, rgba(248, 252, 255, .97) 0%, rgba(243, 249, 253, .88) 72%, rgba(243, 249, 253, 0) 100%);
      box-shadow: 0 12px 36px rgba(43, 83, 117, .08);
      -webkit-backdrop-filter: blur(18px) saturate(130%);
      backdrop-filter: blur(18px) saturate(130%);
      transition: opacity .55s ease;
    }

    .site-header.is-light::before { opacity: 1; }

    .mini-logo {
      margin: 9px 58px 0 0;
      flex: 0 0 auto;
      color: #bfeeff;
      background: linear-gradient(105deg, #68cfff 0%, #bfefff 17%, #fff 29%, #68cfff 46%, #e9fbff 64%, #70d6ff 82%, #d6f7ff 100%);
      background-size: 240% 100%;
      background-position: 0% 50%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 15px;
      font-weight: 500;
      line-height: 18px;
      letter-spacing: .08em;
      text-decoration: none;
      white-space: nowrap;
      opacity: .9;
      filter: drop-shadow(0 0 8px rgba(73, 190, 255, .34));
      transition: opacity .25s ease, filter .35s ease;
      animation: miniLogoShimmer 9s ease-in-out infinite alternate;
    }

    .mini-logo:hover,
    .mini-logo:focus-visible {
      opacity: 1;
      filter: drop-shadow(0 0 11px rgba(82, 203, 255, .62));
    }

    .site-header.is-light .mini-logo {
      filter: brightness(.56) saturate(1.5) drop-shadow(0 2px 7px rgba(18, 99, 160, .16));
    }

    .main-nav {
      min-height: 38px;
      display: flex;
      align-items: center;
      gap: clamp(28px, 3.25vw, 54px);
    }

    .main-nav a,
    .header-actions a {
      color: rgba(220, 233, 247, .72);
      text-decoration: none;
      font-size: 12px;
      transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible { color: #eef8ff; }
    .site-header.is-light .main-nav a { color: rgba(24, 47, 70, .7); }
    .site-header.is-light .main-nav a:hover,
    .site-header.is-light .main-nav a:focus-visible { color: #0869b5; }

    .header-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 27px;
    }

    .header-actions a {
      min-width: 142px;
      height: 36px;
      padding-inline: 16px;
      border: 1px solid rgba(44, 147, 255, .38);
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #e9f8ff;
      background: linear-gradient(180deg, rgba(26, 113, 201, .82), rgba(9, 62, 119, .92));
      box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 0 22px rgba(17, 119, 233, .14);
      white-space: nowrap;
    }

    .header-actions a:hover,
    .header-actions a:focus-visible {
      color: #fff;
      border-color: rgba(76, 177, 255, .66);
      box-shadow: 0 0 24px rgba(20, 127, 255, .2);
    }

    .site-header.is-light .header-actions a {
      color: #f8fcff;
      border-color: rgba(18, 110, 181, .28);
      background: linear-gradient(180deg, #1782d1, #0d65aa);
      box-shadow: 0 8px 24px rgba(18, 105, 171, .2), inset 0 1px rgba(255, 255, 255, .2);
    }

    .menu-toggle {
      position: relative;
      width: 40px;
      height: 40px;
      margin: -2px 0 0 10px;
      padding: 0;
      flex: 0 0 40px;
      display: none;
      border: 1px solid rgba(91, 193, 238, .34);
      border-radius: 11px;
      color: #8edfff;
      background: rgba(4, 15, 29, .68);
      box-shadow: inset 0 0 18px rgba(39, 151, 217, .08), 0 8px 24px rgba(0, 0, 0, .14);
      -webkit-backdrop-filter: blur(12px) saturate(130%);
      backdrop-filter: blur(12px) saturate(130%);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: color .35s ease, border-color .35s ease, background .55s ease, box-shadow .35s ease;
    }

    .menu-toggle span {
      position: absolute;
      left: 10px;
      width: 18px;
      height: 1px;
      border-radius: 2px;
      background: currentColor;
      box-shadow: 0 0 7px currentColor;
      transform-origin: center;
      transition: top .32s ease, opacity .24s ease, transform .32s cubic-bezier(.2, .72, .2, 1);
    }

    .menu-toggle span:nth-child(1) { top: 12px; }
    .menu-toggle span:nth-child(2) { top: 19px; }
    .menu-toggle span:nth-child(3) { top: 26px; }
    .site-header.is-menu-open .menu-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
    .site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
    .site-header.is-menu-open .menu-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

    .menu-toggle:hover,
    .menu-toggle:focus-visible,
    .site-header.is-menu-open .menu-toggle {
      color: #e4faff;
      border-color: rgba(112, 221, 255, .7);
      box-shadow: inset 0 0 20px rgba(52, 171, 232, .14), 0 0 20px rgba(36, 168, 235, .18);
    }

    .site-header.is-light .menu-toggle {
      color: #166d95;
      border-color: rgba(32, 115, 153, .28);
      background: rgba(248, 252, 253, .84);
    }

    .menu-toggle:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }

    .news-hero {
      position: relative;
      min-height: 760px;
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(circle at 76% 34%, rgba(7, 112, 214, .25), transparent 30%),
        radial-gradient(circle at 19% 77%, rgba(33, 153, 206, .12), transparent 27%),
        linear-gradient(145deg, #020711 0%, #071525 56%, #020912 100%);
    }

    .news-hero::before {
      content: "NEWSROOM";
      position: absolute;
      left: -2vw;
      bottom: -3.5vw;
      z-index: -2;
      color: transparent;
      -webkit-text-stroke: 1px rgba(116, 215, 250, .05);
      font-size: clamp(120px, 18vw, 310px);
      font-weight: 650;
      line-height: .75;
      letter-spacing: -.085em;
      white-space: nowrap;
    }

    .hero-circuit {
      position: absolute;
      inset: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: .66;
    }

    .hero-circuit path {
      fill: none;
      stroke: rgba(74, 172, 231, .18);
      stroke-width: 1;
      vector-effect: non-scaling-stroke;
    }

    .hero-circuit .current {
      stroke: #adf0ff;
      stroke-width: 1.5;
      stroke-dasharray: 1.5 98.5;
      filter: drop-shadow(0 0 5px rgba(92, 220, 255, .9));
      animation: currentRun 5.8s linear infinite;
    }

    .hero-circuit circle {
      fill: #bdf2ff;
      filter: drop-shadow(0 0 6px rgba(98, 221, 255, .85));
      animation: nodePulse 3.2s ease-in-out infinite;
    }

    .hero-shell {
      width: var(--shell);
      min-height: 760px;
      margin: 0 auto;
      padding: 178px 0 32px;
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
      align-items: center;
      gap: clamp(52px, 7vw, 112px);
    }

    .breadcrumbs {
      margin-bottom: 56px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(170, 207, 228, .48);
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .breadcrumbs a { text-decoration: none; transition: color .25s ease; }
    .breadcrumbs a:hover { color: #d9f6ff; }
    .breadcrumbs i { width: 24px; height: 1px; background: linear-gradient(90deg, rgba(100, 204, 244, .6), transparent); }

    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 13px;
      color: rgba(114, 215, 252, .64);
      font-size: 9px;
      letter-spacing: .23em;
      text-transform: uppercase;
    }

    .hero-kicker::before {
      content: "";
      width: 31px;
      height: 1px;
      background: linear-gradient(90deg, #61d7ff, transparent);
      box-shadow: 0 0 8px rgba(80, 210, 255, .4);
    }

    .hero-title {
      max-width: 710px;
      margin: 23px 0 0;
      color: #effaff;
      font-size: clamp(62px, 8vw, 126px);
      font-weight: 300;
      line-height: .88;
      letter-spacing: -.075em;
    }

    .hero-title em { display: block; color: #74d9f8; font-style: normal; }

    .hero-lead {
      max-width: 580px;
      margin: 34px 0 0;
      color: rgba(188, 215, 231, .66);
      font-size: clamp(14px, 1.1vw, 17px);
      line-height: 1.75;
    }

    .hero-statline {
      margin-top: 38px;
      padding-top: 21px;
      display: flex;
      align-items: center;
      gap: 18px;
      color: rgba(139, 194, 220, .48);
      border-top: 1px solid rgba(91, 190, 235, .15);
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .hero-statline strong { color: #8ce8ff; font-size: 13px; font-weight: 500; }

    .hero-feature {
      position: relative;
      min-height: 530px;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(96, 197, 240, .22);
      border-radius: 20px;
      background: #0b1d2b;
      box-shadow: 0 36px 100px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .04);
      text-decoration: none;
      transform: translateZ(0);
    }

    .hero-feature::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(2, 8, 16, .02) 20%, rgba(2, 9, 17, .18) 48%, rgba(2, 8, 15, .94) 100%),
        linear-gradient(90deg, rgba(3, 12, 22, .18), transparent 66%);
    }

    .hero-feature::after {
      content: "";
      position: absolute;
      inset: 15px;
      z-index: 3;
      pointer-events: none;
      border: 1px solid rgba(208, 246, 255, .16);
      border-radius: 13px;
      opacity: .72;
      transition: opacity .4s ease, transform .5s ease;
    }

    .hero-feature img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 38%;
      filter: saturate(.8) contrast(1.04);
      transition: transform 1.2s cubic-bezier(.2, .72, .2, 1), filter .7s ease;
    }

    .hero-feature:hover img,
    .hero-feature:focus-visible img { transform: scale(1.045); filter: saturate(.98) contrast(1.03); }
    .hero-feature:hover::after,
    .hero-feature:focus-visible::after { opacity: 1; transform: scale(.99); }
    .hero-feature:focus-visible { outline: 1px solid #8de8ff; outline-offset: 5px; }

    .hero-feature-index {
      position: absolute;
      top: 34px;
      left: 34px;
      z-index: 4;
      min-height: 28px;
      padding: 0 11px;
      display: inline-flex;
      align-items: center;
      color: #dff8ff;
      border: 1px solid rgba(126, 220, 250, .28);
      border-radius: 999px;
      background: rgba(3, 15, 25, .5);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      font-size: 8px;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .hero-feature-copy {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 4;
      padding: clamp(30px, 3.2vw, 50px);
    }

    .hero-feature-meta {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(200, 233, 245, .64);
      font-size: 8px;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .hero-feature-meta::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #83e6ff;
      box-shadow: 0 0 12px rgba(87, 216, 255, .8);
    }

    .hero-feature h2 {
      max-width: 720px;
      margin: 0;
      color: #f1fbff;
      font-size: clamp(28px, 3vw, 49px);
      font-weight: 300;
      line-height: 1.02;
      letter-spacing: -.05em;
    }

    .hero-feature-more {
      margin-top: 21px;
      display: flex;
      align-items: center;
      gap: 13px;
      color: rgba(221, 246, 255, .72);
      font-size: 9px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .hero-feature-more::after {
      content: "";
      width: 42px;
      height: 1px;
      background: linear-gradient(90deg, currentColor, transparent);
      transition: width .35s ease;
    }

    .hero-feature:hover .hero-feature-more::after { width: 66px; }

    .theme-bridge {
      position: relative;
      height: 145px;
      overflow: hidden;
      background: linear-gradient(180deg, #020912 0%, #263c49 21%, #a8bdc6 55%, #eef5f8 100%);
    }

    .theme-bridge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
    .theme-bridge path { fill: none; stroke: rgba(187, 239, 252, .38); stroke-width: 1; vector-effect: non-scaling-stroke; }
    .theme-bridge .bridge-current { stroke: #eaffff; stroke-width: 1.5; stroke-dasharray: 2 98; filter: drop-shadow(0 0 5px rgba(103, 221, 255, .72)); animation: currentRun 4.8s linear infinite; }

    .news-feed {
      position: relative;
      padding: clamp(82px, 9vw, 132px) 0 clamp(120px, 13vw, 190px);
      color-scheme: light;
      color: #153247;
      background:
        radial-gradient(circle at 87% 9%, rgba(21, 130, 181, .1), transparent 25%),
        radial-gradient(circle at 11% 65%, rgba(47, 122, 164, .07), transparent 30%),
        linear-gradient(180deg, #eef5f8 0%, #fbfcfd 38%, #edf4f7 100%);
    }

    .news-feed::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .44;
      background-image:
        linear-gradient(rgba(26, 104, 143, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 104, 143, .05) 1px, transparent 1px);
      background-size: 52px 52px;
      -webkit-mask-image: radial-gradient(ellipse 78% 65% at 50% 39%, #000, transparent);
      mask-image: radial-gradient(ellipse 78% 65% at 50% 39%, #000, transparent);
    }

    .section-shell { position: relative; z-index: 2; width: var(--shell); margin: 0 auto; }

    .feed-heading {
      margin-bottom: clamp(46px, 6vw, 82px);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr);
      align-items: end;
      gap: clamp(40px, 7vw, 110px);
    }

    .section-kicker {
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(23, 101, 137, .62);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 29px;
      height: 1px;
      background: linear-gradient(90deg, #1683b3, transparent);
    }

    .feed-title {
      margin: 0;
      color: #153247;
      font-size: clamp(48px, 6.2vw, 94px);
      font-weight: 300;
      line-height: .94;
      letter-spacing: -.067em;
    }

    .feed-title em { color: #1076a4; font-style: normal; }

    .feed-intro {
      margin: 0;
      color: rgba(38, 72, 91, .68);
      font-size: clamp(14px, 1.1vw, 17px);
      line-height: 1.72;
    }

    .news-toolbar {
      position: sticky;
      top: 82px;
      z-index: 20;
      margin-bottom: 34px;
      padding: 14px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 18px;
      border: 1px solid rgba(26, 106, 143, .14);
      border-radius: 16px;
      background: rgba(245, 250, 252, .84);
      box-shadow: 0 18px 48px rgba(44, 88, 109, .09), inset 0 1px rgba(255, 255, 255, .8);
      -webkit-backdrop-filter: blur(18px) saturate(130%);
      backdrop-filter: blur(18px) saturate(130%);
    }

    .news-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }

    .news-filter {
      min-height: 36px;
      padding: 0 14px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: rgba(30, 75, 97, .56);
      background: transparent;
      font-size: 8px;
      letter-spacing: .13em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    }

    .news-filter:hover,
    .news-filter:focus-visible,
    .news-filter.is-active {
      color: #0a638b;
      border-color: rgba(19, 115, 156, .2);
      background: rgba(255, 255, 255, .76);
      box-shadow: 0 7px 20px rgba(39, 102, 132, .08);
    }

    .news-filter:focus-visible { outline: 1px solid #1684af; outline-offset: 2px; }

    .news-search {
      position: relative;
      width: min(280px, 25vw);
      min-width: 210px;
    }

    .news-search::before {
      content: "";
      position: absolute;
      left: 15px;
      top: 50%;
      width: 10px;
      height: 10px;
      border: 1px solid rgba(27, 101, 135, .46);
      border-radius: 50%;
      transform: translateY(-60%);
      pointer-events: none;
    }

    .news-search::after {
      content: "";
      position: absolute;
      left: 25px;
      top: 23px;
      width: 6px;
      height: 1px;
      background: rgba(27, 101, 135, .46);
      transform: rotate(45deg);
      transform-origin: left center;
      pointer-events: none;
    }

    .news-search input {
      width: 100%;
      height: 42px;
      padding: 0 15px 0 38px;
      color: #163d52;
      border: 1px solid rgba(27, 105, 141, .15);
      border-radius: 11px;
      outline: 0;
      background: rgba(255, 255, 255, .58);
      font-size: 11px;
      transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
    }

    .news-search input::placeholder { color: rgba(41, 81, 101, .43); }
    .news-search input:focus { border-color: rgba(20, 117, 158, .34); background: rgba(255, 255, 255, .9); box-shadow: 0 0 0 3px rgba(28, 129, 170, .07); }

    .feed-status {
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: rgba(37, 76, 95, .48);
      font-size: 8px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .feed-status::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, rgba(26, 106, 143, .14), transparent); }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-flow: dense;
      gap: 18px;
    }

    .news-card {
      position: relative;
      min-height: 440px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      color: #17364a;
      border: 1px solid rgba(24, 102, 139, .13);
      border-radius: 15px;
      background: rgba(255, 255, 255, .6);
      box-shadow: 0 19px 56px rgba(40, 82, 103, .07);
      text-decoration: none;
      transition: transform .42s cubic-bezier(.2, .75, .2, 1), border-color .3s ease, box-shadow .4s ease;
      content-visibility: auto;
      contain-intrinsic-size: auto 440px;
    }

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

    .news-card::before {
      content: "";
      position: absolute;
      left: 24px;
      top: 0;
      z-index: 5;
      width: 42px;
      height: 2px;
      background: #1a82ad;
      box-shadow: 0 0 9px rgba(26, 130, 173, .3);
      transition: width .4s ease;
    }

    .news-card:hover,
    .news-card:focus-visible {
      z-index: 3;
      border-color: rgba(23, 119, 160, .3);
      box-shadow: 0 28px 74px rgba(30, 89, 117, .14);
      transform: translateY(-7px);
    }

    .news-card:hover::before { width: 92px; }
    .news-card:focus-visible { outline: 1px solid #1684af; outline-offset: 4px; }

    .news-card-media {
      position: relative;
      height: 205px;
      margin: 0;
      overflow: hidden;
      flex: 0 0 auto;
      background: #d9e6eb;
    }

    .news-card-media::before,
    .news-card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .news-card-media::before {
      opacity: .19;
      background-image:
        linear-gradient(rgba(226, 247, 255, .5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 247, 255, .5) 1px, transparent 1px);
      background-size: 18px 18px;
      -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
      mask-image: linear-gradient(180deg, #000, transparent 78%);
    }

    .news-card-media::after { background: linear-gradient(180deg, transparent 52%, rgba(6, 30, 45, .2)); }

    .news-card-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: saturate(.78) contrast(1.03);
      transition: transform .9s cubic-bezier(.2, .72, .2, 1), filter .55s ease;
    }

    .news-card--portrait .news-card-media img { object-position: center 35%; }
    .news-card:hover .news-card-media img,
    .news-card:focus-visible .news-card-media img { transform: scale(1.055); filter: saturate(.98) contrast(1.03); }

    .news-card-copy {
      min-height: 235px;
      padding: 25px 27px 27px;
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .news-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(34, 80, 102, .48);
      font-size: 8px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .news-card-category { color: #1379a3; font-weight: 600; }

    .news-card h3 {
      margin: 24px 0 0;
      color: #16384d;
      font-size: clamp(20px, 1.65vw, 27px);
      font-weight: 400;
      line-height: 1.17;
      letter-spacing: -.04em;
    }

    .news-card p {
      margin: 16px 0 0;
      color: rgba(43, 78, 96, .63);
      font-size: 12px;
      line-height: 1.62;
    }

    .news-card-more {
      margin-top: auto;
      padding-top: 22px;
      display: flex;
      align-items: center;
      gap: 11px;
      color: rgba(35, 81, 103, .55);
      font-size: 8px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .news-card-more::after {
      content: "";
      width: 30px;
      height: 1px;
      background: linear-gradient(90deg, currentColor, transparent);
      transition: width .35s ease;
    }

    .news-card:hover .news-card-more::after { width: 52px; }

    .news-card--wide {
      grid-column: span 2;
      min-height: 365px;
      display: grid;
      grid-template-columns: minmax(250px, .88fr) minmax(0, 1.12fr);
      contain-intrinsic-size: auto 365px;
    }

    .news-card--wide .news-card-media { height: 100%; min-height: 365px; }
    .news-card--wide .news-card-copy { min-height: 365px; padding: clamp(29px, 3vw, 46px); }
    .news-card--wide h3 { max-width: 650px; font-size: clamp(27px, 2.7vw, 43px); }
    .news-card--wide p { max-width: 610px; font-size: 13px; }

    .feed-empty {
      margin: 38px 0 0;
      padding: 44px;
      color: rgba(31, 72, 92, .62);
      border: 1px dashed rgba(24, 105, 143, .2);
      border-radius: 14px;
      text-align: center;
      font-size: 14px;
    }

    .feed-empty[hidden] { display: none; }

    .feed-more-row {
      margin-top: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feed-more {
      min-width: 190px;
      min-height: 50px;
      padding: 0 22px;
      border: 1px solid rgba(21, 112, 152, .22);
      border-radius: 12px;
      color: #135f82;
      background: rgba(255, 255, 255, .68);
      box-shadow: 0 16px 40px rgba(40, 91, 115, .08);
      font-size: 9px;
      letter-spacing: .13em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
    }

    .feed-more:hover,
    .feed-more:focus-visible { transform: translateY(-3px); border-color: rgba(20, 118, 160, .42); background: #fff; box-shadow: 0 20px 48px rgba(32, 92, 119, .13); }
    .feed-more:focus-visible { outline: 1px solid #1684af; outline-offset: 3px; }
    .feed-more[hidden] { display: none; }

    .news-cta {
      position: relative;
      min-height: 560px;
      overflow: hidden;
      isolation: isolate;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 42%, rgba(12, 109, 199, .2), transparent 36%),
        linear-gradient(145deg, #020711 0%, #071525 58%, #030a12 100%);
    }

    .news-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .5;
      background-image:
        linear-gradient(rgba(73, 175, 226, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 175, 226, .055) 1px, transparent 1px);
      background-size: 44px 44px;
      -webkit-mask-image: radial-gradient(circle at 50% 48%, #000, transparent 70%);
      mask-image: radial-gradient(circle at 50% 48%, #000, transparent 70%);
    }

    .cta-inner {
      width: min(100% - 48px, 1060px);
      padding: 90px 0;
      text-align: center;
    }

    .cta-kicker { color: rgba(120, 218, 255, .66); font-size: 9px; letter-spacing: .23em; text-transform: uppercase; }

    .cta-title {
      max-width: 980px;
      margin: 22px auto 0;
      color: #effaff;
      font-size: clamp(48px, 6.8vw, 100px);
      font-weight: 300;
      line-height: .94;
      letter-spacing: -.07em;
    }

    .cta-title em { display: block; color: #75d8f7; font-style: normal; }

    .cta-text { max-width: 620px; margin: 28px auto 0; color: rgba(196, 220, 235, .62); font-size: 15px; line-height: 1.72; }

    .cta-actions { margin-top: 36px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 13px; }

    .cta-button {
      min-height: 50px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      gap: 24px;
      color: #effaff;
      border: 1px solid rgba(83, 197, 242, .35);
      border-radius: 11px;
      background: linear-gradient(180deg, rgba(20, 111, 192, .76), rgba(7, 55, 105, .9));
      box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
      font-size: 10px;
      letter-spacing: .07em;
      text-decoration: none;
      transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .cta-button::after { content: "↗"; color: #a9efff; font-size: 16px; }
    .cta-button--quiet { color: rgba(212, 235, 246, .66); border-color: transparent; background: transparent; box-shadow: none; }
    .cta-button:hover,
    .cta-button:focus-visible { transform: translateY(-3px); border-color: rgba(109, 225, 255, .68); box-shadow: 0 22px 52px rgba(3, 85, 151, .24); }

    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .75s ease, transform .85s cubic-bezier(.2, .75, .2, 1);
    }

    [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

    .site-footer {
      --footer-steel: #236f8b;
      --footer-ice: #173f54;
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      isolation: isolate;
      color-scheme: light;
      color: #18384b;
      background:
        linear-gradient(180deg, #718b98 0, rgba(151, 176, 187, .96) 30px, rgba(214, 230, 236, .92) 72px, rgba(239, 247, 249, .58) 112px, transparent 156px),
        radial-gradient(circle at 17% 31%, rgba(25, 135, 178, .13), transparent 31%),
        radial-gradient(circle at 84% 68%, rgba(55, 113, 147, .1), transparent 34%),
        linear-gradient(146deg, #f5fafb 0%, #e7f1f5 48%, #f0f7f9 100%);
      border-top: 1px solid rgba(166, 225, 241, .34);
      box-shadow: inset 0 1px rgba(240, 253, 255, .5);
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: .62;
      background-image:
        linear-gradient(rgba(28, 106, 141, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 106, 141, .07) 1px, transparent 1px),
        repeating-linear-gradient(135deg, transparent 0 38px, rgba(29, 103, 138, .022) 38px 39px);
      background-size: 44px 44px, 44px 44px, auto;
      -webkit-mask-image: linear-gradient(180deg, #000 0, rgba(0, 0, 0, .82) 60%, transparent 100%);
      mask-image: linear-gradient(180deg, #000 0, rgba(0, 0, 0, .82) 60%, transparent 100%);
    }

    .site-footer::after {
      content: "FLEXCORE";
      position: absolute;
      right: clamp(18px, 3vw, 52px);
      bottom: clamp(20px, 3.5vh, 42px);
      z-index: -1;
      pointer-events: none;
      color: transparent;
      -webkit-text-stroke: 1px rgba(32, 100, 130, .065);
      font-size: clamp(88px, 11.5vw, 190px);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -.085em;
      white-space: nowrap;
    }

    .footer-signal { position: absolute; top: 0; left: 5.2vw; right: 5.2vw; z-index: 3; height: 92px; overflow: hidden; pointer-events: none; }
    .footer-signal::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 53px; background: linear-gradient(180deg, rgba(196, 239, 249, .92), rgba(30, 131, 169, .32)); box-shadow: 0 0 13px rgba(72, 187, 219, .34); }
    .footer-signal-rail { position: absolute; top: 53px; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(28, 121, 158, .2) 11%, rgba(51, 145, 178, .54) 50%, rgba(28, 121, 158, .2) 89%, transparent); }
    .footer-signal-rail::before,
    .footer-signal-rail::after { content: ""; position: absolute; top: 0; width: clamp(70px, 10vw, 150px); height: 1px; opacity: .92; background: linear-gradient(90deg, transparent, #effcff 50%, transparent); filter: drop-shadow(0 0 6px rgba(59, 169, 202, .7)); animation: footerSignalRun 7.5s linear infinite; }
    .footer-signal-rail::after { animation-delay: -3.75s; }
    .footer-signal-node { position: absolute; top: 47px; left: 50%; width: 13px; height: 13px; border: 1px solid rgba(42, 133, 166, .72); border-radius: 50%; background: #eff8fa; box-shadow: 0 0 0 6px rgba(42, 130, 163, .055), 0 0 18px rgba(47, 149, 181, .3); transform: translateX(-50%); }
    .footer-signal-node::after { content: ""; position: absolute; inset: 3px; border-radius: inherit; background: #247c9c; box-shadow: 0 0 8px rgba(42, 145, 179, .55); animation: footerNodePulse 2.8s ease-in-out infinite; }

    .footer-inner {
      position: relative;
      z-index: 2;
      width: min(100%, 1600px);
      min-height: 100vh;
      margin: 0 auto;
      padding: clamp(116px, 14vh, 158px) clamp(30px, 5.2vw, 82px) clamp(34px, 4.5vh, 56px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(46px, 6vh, 74px);
    }

    .footer-main { display: grid; grid-template-columns: minmax(340px, .82fr) minmax(560px, 1.18fr); gap: clamp(64px, 8vw, 132px); align-items: start; }
    .footer-brand { min-width: 0; overflow: visible; }
    .footer-kicker { margin: 0 0 16px; display: flex; align-items: center; gap: 11px; color: rgba(48, 91, 109, .58); font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
    .footer-kicker::before { content: ""; width: 24px; height: 1px; background: linear-gradient(90deg, var(--footer-steel), transparent); box-shadow: 0 0 7px rgba(48, 141, 174, .2); }

    .footer-wordmark {
      width: fit-content;
      padding: .08em .035em .14em 0;
      display: inline-block;
      overflow: visible;
      color: var(--footer-ice);
      background: linear-gradient(108deg, #173f54 0%, #6f9bab 34%, #245f78 58%, #89afbc 78%, #173f54 100%);
      background-size: 230% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 12px 30px rgba(49, 108, 130, .1));
      font-size: clamp(48px, 5.1vw, 84px);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -.075em;
      white-space: nowrap;
      text-decoration: none;
      animation: footerWordmarkFlow 10s ease-in-out infinite alternate;
    }

    .footer-tagline { max-width: 470px; margin: 30px 0 0; color: rgba(48, 78, 92, .75); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.7; }
    .footer-accreditation { width: fit-content; max-width: 100%; margin-top: 24px; padding: 10px 13px 10px 11px; display: inline-flex; align-items: center; gap: 9px; color: rgba(42, 84, 102, .75); border: 1px solid rgba(34, 111, 141, .18); border-radius: 999px; background: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .09em; line-height: 1.35; text-decoration: none; text-transform: uppercase; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
    .footer-accreditation::before { content: ""; width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: #277f9f; box-shadow: 0 0 10px rgba(43, 141, 174, .42); animation: footerNodePulse 2.8s ease-in-out infinite; }

    .footer-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(26px, 3.3vw, 54px); }
    .footer-column { position: relative; min-width: 0; padding-top: 19px; border-top: 1px solid rgba(29, 104, 134, .18); }
    .footer-column::before { content: ""; position: absolute; top: -1px; left: 0; width: 34px; height: 1px; background: #277c9c; box-shadow: 0 0 8px rgba(41, 137, 170, .3); transition: width .45s ease; }
    .footer-column:hover::before { width: min(100%, 88px); }
    .footer-column-title { margin: 0 0 21px; color: rgba(47, 86, 102, .58); font-size: 9px; font-weight: 500; letter-spacing: .19em; text-transform: uppercase; }
    .footer-links { margin: 0; padding: 0; display: grid; gap: 13px; list-style: none; }
    .footer-links a,
    .footer-links span { width: fit-content; max-width: 100%; display: inline-flex; align-items: center; gap: 8px; color: rgba(38, 70, 84, .78); font-size: 12px; line-height: 1.45; text-decoration: none; }
    .footer-links a { transition: color .28s ease, transform .28s ease; }
    .footer-links a::after { content: ""; width: 13px; height: 1px; opacity: 0; background: currentColor; transform: translateX(-8px); transition: opacity .28s ease, transform .28s ease; }
    .footer-links a:hover,
    .footer-links a:focus-visible { color: #0a4865; transform: translateX(3px); }
    .footer-links a:hover::after,
    .footer-links a:focus-visible::after { opacity: .58; transform: translateX(0); }
    .footer-links .footer-contact-primary { color: #153f54; font-size: 14px; letter-spacing: -.015em; }
    .footer-links .footer-hours { color: rgba(61, 91, 103, .58); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

    .footer-meta { margin-top: auto; display: grid; gap: 25px; }
    .footer-location { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(29, 104, 134, .15); border-bottom: 1px solid rgba(29, 104, 134, .15); }
    .footer-address { display: flex; align-items: center; gap: 13px; color: rgba(35, 73, 90, .78); font-size: clamp(13px, 1.05vw, 16px); line-height: 1.45; text-decoration: none; }
    .footer-address::before { content: ""; width: 9px; height: 9px; flex: 0 0 9px; border: 1px solid #337e99; border-radius: 50%; box-shadow: 0 0 0 5px rgba(48, 132, 162, .05), 0 0 10px rgba(51, 139, 169, .18); }
    .footer-location-meta { display: flex; align-items: center; gap: 15px; color: rgba(55, 83, 95, .54); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
    .footer-location-meta::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, rgba(35, 112, 141, .4)); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(59, 85, 96, .52); font-size: 9px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
    .footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px; }
    .footer-to-top { display: inline-flex; align-items: center; gap: 12px; color: rgba(39, 77, 94, .7); text-decoration: none; }
    .footer-to-top::after { content: ""; width: 8px; height: 8px; border-top: 1px solid currentColor; border-left: 1px solid currentColor; transform: translateY(2px) rotate(45deg); transition: transform .3s ease; }
    .footer-to-top:hover::after { transform: translateY(-3px) rotate(45deg); }

    @keyframes headerIn { to { opacity: 1; transform: translateY(0); } }
    @keyframes miniLogoShimmer { to { background-position: 100% 50%; } }
    @keyframes currentRun { to { stroke-dashoffset: -100; } }
    @keyframes nodePulse { 50% { opacity: .35; } }
    @keyframes footerSignalRun { from { left: -14%; } to { left: 100%; } }
    @keyframes footerNodePulse { 50% { opacity: .36; transform: scale(.65); } }
    @keyframes footerWordmarkFlow { to { background-position: 100% 50%; } }

    @media (max-width: 1180px) {
      :root { --shell: min(100% - 48px, 1480px); }
      .mini-logo { margin-right: 34px; }
      .main-nav { gap: 24px; }
      .hero-shell { grid-template-columns: minmax(0, .74fr) minmax(420px, 1fr); gap: 46px; }
      .hero-title { font-size: clamp(58px, 8vw, 96px); }
      .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-main { grid-template-columns: minmax(280px, .7fr) minmax(540px, 1.3fr); gap: 58px; }
    }

    @media (max-width: 960px) {
      .hero-shell { padding: 180px 0 32px; grid-template-columns: 1fr; gap: 58px; }
      .hero-copy { max-width: 760px; }
      .hero-feature { min-height: 560px; }
      .feed-heading { grid-template-columns: 1fr; gap: 24px; }
      .feed-intro { max-width: 690px; }
      .news-toolbar { position: relative; top: auto; grid-template-columns: 1fr; }
      .news-search { width: 100%; min-width: 0; }
      .news-card--wide { grid-column: span 2; }
      .footer-main { grid-template-columns: 1fr; }
      .footer-brand { max-width: 650px; }
    }

    @media (max-width: 860px) {
      .main-nav {
        position: absolute;
        top: 76px;
        left: 18px;
        right: 18px;
        z-index: 2;
        min-height: 0;
        padding: 9px;
        display: grid;
        gap: 0;
        overflow: hidden;
        border: 1px solid rgba(83, 184, 232, .25);
        border-radius: 18px;
        background:
          linear-gradient(rgba(62, 166, 222, .045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(62, 166, 222, .045) 1px, transparent 1px),
          rgba(3, 12, 24, .95);
        background-size: 24px 24px, 24px 24px, auto;
        box-shadow: 0 22px 60px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .04);
        -webkit-backdrop-filter: blur(22px) saturate(135%);
        backdrop-filter: blur(22px) saturate(135%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(.985);
        transform-origin: 80% 0;
        transition: opacity .28s ease, transform .38s cubic-bezier(.2, .78, .2, 1), visibility 0s linear .38s, background .7s ease, border-color .7s ease;
      }

      .main-nav::before { content: ""; position: absolute; top: 0; left: 18px; right: 18px; height: 1px; background: linear-gradient(90deg, transparent, rgba(119, 226, 255, .8), transparent); box-shadow: 0 0 12px rgba(85, 211, 255, .42); }
      .site-header.is-menu-open .main-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); transition-delay: 0s; }
      .main-nav a { min-height: 48px; padding: 0 14px; display: flex; align-items: center; border-bottom: 1px solid rgba(102, 178, 218, .12); font-size: 12px; letter-spacing: .045em; }
      .main-nav a:last-child { border-bottom: 0; }
      .site-header.is-light .main-nav { border-color: rgba(25, 111, 158, .2); background: linear-gradient(rgba(21, 112, 160, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 112, 160, .045) 1px, transparent 1px), rgba(245, 250, 252, .96); background-size: 24px 24px, 24px 24px, auto; box-shadow: 0 22px 60px rgba(25, 71, 99, .16), inset 0 1px rgba(255, 255, 255, .7); }
      .menu-toggle { display: block; }
      .mini-logo { margin-right: 0; }
      .header-actions { gap: 10px; }
    }

    @media (max-width: 700px) {
      :root { --shell: min(100% - 32px, 1480px); }
      .news-hero { min-height: auto; }
      .hero-shell { min-height: auto; padding: 158px 0 34px; gap: 46px; }
      .breadcrumbs { margin-bottom: 38px; }
      .hero-title { font-size: clamp(54px, 17vw, 78px); }
      .hero-lead { margin-top: 26px; font-size: 14px; }
      .hero-statline { align-items: flex-start; flex-direction: column; gap: 8px; }
      .hero-feature { min-height: 470px; border-radius: 16px; }
      .hero-feature-index { top: 24px; left: 24px; }
      .hero-feature-copy { padding: 28px 25px; }
      .hero-feature h2 { font-size: 29px; }
      .theme-bridge { height: 120px; }
      .news-feed { padding-block: 82px 115px; }
      .feed-heading { margin-bottom: 38px; }
      .feed-title { font-size: clamp(46px, 14vw, 66px); }
      .news-toolbar { margin-inline: -2px; padding: 11px; }
      .news-filters { gap: 5px; }
      .news-filter { min-height: 34px; padding-inline: 11px; font-size: 7px; }
      .news-grid { grid-template-columns: 1fr; gap: 14px; }
      .news-card,
      .news-card--wide { grid-column: auto; min-height: 410px; display: flex; contain-intrinsic-size: auto 410px; }
      .news-card--wide .news-card-media,
      .news-card-media { width: 100%; height: 190px; min-height: 190px; }
      .news-card--wide .news-card-copy,
      .news-card-copy { min-height: 220px; padding: 23px 22px 24px; }
      .news-card--wide h3,
      .news-card h3 { margin-top: 20px; font-size: 24px; }
      .news-card--wide p,
      .news-card p { font-size: 12px; }
      .news-cta { min-height: 520px; }
      .cta-inner { width: min(100% - 32px, 1060px); padding-block: 78px; }
      .cta-title { font-size: clamp(46px, 14vw, 68px); }
      .footer-inner { padding-inline: 20px; }
      .footer-columns { grid-template-columns: 1fr; gap: 32px; }
      .footer-location { align-items: flex-start; flex-direction: column; gap: 15px; }
      .footer-location-meta { white-space: normal; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .site-footer::after { right: 16px; bottom: 18px; font-size: 17vw; }
    }

    @media (max-width: 620px) {
      .site-header { height: 74px; padding: 19px 18px 0; }
      .header-actions .primary { min-width: 124px; height: 34px; padding-inline: 12px; font-size: 11px; }
      .main-nav { top: 66px; left: 10px; right: 10px; }
    }

    @media (max-width: 450px) {
      .header-actions .primary { min-width: 112px; padding-inline: 9px; font-size: 10px; }
      .hero-feature { min-height: 440px; }
      .hero-feature h2 { font-size: 26px; }
      .news-filter { padding-inline: 9px; }
      .feed-empty { padding: 32px 20px; }
      .footer-wordmark { font-size: clamp(46px, 15vw, 60px); }
      .footer-accreditation { align-items: flex-start; border-radius: 16px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; }
      [data-reveal] { opacity: 1; transform: none; transition: none; }
      .hero-feature img,
      .news-card,
      .news-card-media img { transition: none; }
    }

    /* Dynamic Flexcore CMS news templates. */
    .news-runtime { min-height: 100vh; }

    .news-card-media > img,
    .news-card-media > a,
    .news-card-media > a > img {
      width: 100% !important;
      height: 100% !important;
      display: block;
    }

    .news-card-media > img,
    .news-card-media > a > img { object-fit: cover; }

    .news-card-media:empty::after {
      content: "FLEXCORE";
      z-index: 1;
      display: grid;
      place-items: center;
      color: rgba(21, 94, 127, .28);
      background:
        linear-gradient(rgba(33, 113, 151, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 113, 151, .07) 1px, transparent 1px),
        linear-gradient(145deg, #e4eef2, #d3e3e9);
      background-size: 22px 22px, 22px 22px, auto;
      font-size: 12px;
      letter-spacing: .32em;
    }

    .news-card-summary {
      margin: 16px 0 0;
      overflow: hidden;
      display: -webkit-box;
      color: rgba(43, 78, 96, .63);
      font-size: 12px;
      line-height: 1.62;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

    .news-card-summary:empty { display: none; }
    .news-card-summary > :first-child { margin-top: 0; }
    .news-card-summary > :last-child { margin-bottom: 0; }
    .news-card-summary img,
    .news-card-summary iframe,
    .news-card-summary script,
    .news-card-summary style { display: none !important; }

    #news-grid > .news-card:first-child {
      grid-column: span 2;
      min-height: 365px;
      display: grid;
      grid-template-columns: minmax(250px, .88fr) minmax(0, 1.12fr);
      contain-intrinsic-size: auto 365px;
    }

    #news-grid > .news-card:first-child .news-card-media { height: 100%; min-height: 365px; }
    #news-grid > .news-card:first-child .news-card-copy { min-height: 365px; padding: clamp(29px, 3vw, 46px); }
    #news-grid > .news-card:first-child h3 { max-width: 650px; font-size: clamp(27px, 2.7vw, 43px); }
    #news-grid > .news-card:first-child .news-card-summary { max-width: 610px; font-size: 13px; }

    .news-pagination {
      margin-top: 48px;
      min-height: 48px;
      display: flex;
      justify-content: center;
    }

    .news-pagination:empty { display: none; }
    .news-pagination .pages { margin: 0; }
    .news-pagination .pages > div {
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
      border: 1px solid rgba(26, 106, 143, .14);
      border-radius: 14px;
      background: rgba(255, 255, 255, .58);
      box-shadow: 0 16px 42px rgba(40, 91, 115, .08);
    }

    .news-pagination .pages a,
    .news-pagination .pages b,
    .news-pagination .pages span {
      min-width: 36px;
      min-height: 34px;
      padding: 0 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(29, 76, 98, .58);
      border: 1px solid transparent;
      border-radius: 9px;
      font-size: 10px;
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
      transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
    }

    .news-pagination .pages a:hover,
    .news-pagination .pages a:focus-visible {
      color: #0c668e;
      border-color: rgba(21, 113, 153, .2);
      background: #fff;
      transform: translateY(-2px);
    }

    .news-pagination .pages b {
      color: #f4fbff;
      border-color: rgba(13, 104, 146, .28);
      background: linear-gradient(180deg, #1986b5, #0c678f);
      box-shadow: 0 8px 20px rgba(20, 104, 141, .2);
    }

    .news-pagination .pages .prev,
    .news-pagination .pages .next,
    .news-pagination .pages .prevAll,
    .news-pagination .pages .nextAll { min-width: auto; padding-inline: 13px; }

    .news-detail-hero {
      position: relative;
      min-height: min(620px, 72vh);
      overflow: hidden;
      isolation: isolate;
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 77% 30%, rgba(8, 117, 218, .23), transparent 31%),
        radial-gradient(circle at 18% 82%, rgba(36, 155, 207, .12), transparent 28%),
        linear-gradient(145deg, #020711 0%, #071525 58%, #020912 100%);
    }

    .news-detail-hero::before {
      content: "ARTICLE";
      position: absolute;
      right: -2vw;
      bottom: -3vw;
      z-index: -2;
      color: transparent;
      -webkit-text-stroke: 1px rgba(116, 215, 250, .05);
      font-size: clamp(118px, 18vw, 300px);
      font-weight: 650;
      line-height: .75;
      letter-spacing: -.085em;
      white-space: nowrap;
    }

    .news-detail-shell {
      position: relative;
      z-index: 2;
      width: min(100% - 64px, 1220px);
      margin: 0 auto;
      padding: 176px 0 0;
    }

    .news-detail-shell .breadcrumbs { margin-bottom: clamp(42px, 5vh, 58px); }

    .news-detail-shell h1 {
      max-width: 1120px;
      margin: 24px 0 0;
      color: #effaff;
      font-size: clamp(48px, 6.6vw, 96px);
      font-weight: 300;
      line-height: .96;
      letter-spacing: -.065em;
      overflow-wrap: anywhere;
    }

    .news-detail-shell > p {
      max-width: 680px;
      margin: 24px 0 0;
      color: rgba(188, 215, 231, .64);
      font-size: clamp(14px, 1.1vw, 17px);
      line-height: 1.75;
    }

    .theme-bridge--detail { height: 68px; }

    .news-article-section {
      position: relative;
      padding: clamp(38px, 4vw, 58px) 0 clamp(110px, 12vw, 180px);
      color-scheme: light;
      color: #17384b;
      background:
        radial-gradient(circle at 92% 10%, rgba(27, 133, 178, .09), transparent 27%),
        radial-gradient(circle at 8% 62%, rgba(51, 126, 165, .07), transparent 30%),
        linear-gradient(180deg, #eef5f8 0%, #fafcfd 32%, #edf4f7 100%);
    }

    .news-article-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .42;
      background-image:
        linear-gradient(rgba(26, 104, 143, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 104, 143, .045) 1px, transparent 1px);
      background-size: 52px 52px;
      -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 36%, #000, transparent);
      mask-image: radial-gradient(ellipse 78% 68% at 50% 36%, #000, transparent);
    }

    .news-article {
      position: relative;
      z-index: 2;
      width: min(100% - 64px, 1240px);
      margin: 0 auto;
    }

    .news-article-cover {
      position: relative;
      width: 100%;
      min-height: 280px;
      max-height: 720px;
      margin: 0 0 clamp(48px, 7vw, 88px);
      overflow: hidden;
      border: 1px solid rgba(25, 106, 143, .16);
      border-radius: 20px;
      background: #dce9ee;
      box-shadow: 0 34px 90px rgba(38, 83, 104, .13), inset 0 1px rgba(255, 255, 255, .7);
    }

    .news-article-cover::before,
    .news-article-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .news-article-cover::before {
      opacity: .17;
      background-image:
        linear-gradient(rgba(226, 247, 255, .54) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 247, 255, .54) 1px, transparent 1px);
      background-size: 22px 22px;
      -webkit-mask-image: linear-gradient(180deg, #000, transparent 82%);
      mask-image: linear-gradient(180deg, #000, transparent 82%);
    }

    .news-article-cover::after { background: linear-gradient(180deg, transparent 62%, rgba(7, 35, 49, .17)); }

    .news-article-cover > img,
    .news-article-cover > a,
    .news-article-cover > a > img {
      width: 100% !important;
      height: min(66vw, 720px) !important;
      min-height: 280px;
      max-height: 720px;
      display: block;
    }

    .news-article-cover > img,
    .news-article-cover > a > img {
      object-fit: cover;
      filter: saturate(.82) contrast(1.035);
    }

    .news-article-body {
      width: min(100%, 920px);
      margin: 0 auto;
      color: rgba(25, 55, 72, .82);
      font-size: clamp(15px, 1.18vw, 18px);
      line-height: 1.82;
      overflow-wrap: anywhere;
    }

    .news-article-body > :first-child { margin-top: 0; }
    .news-article-body > :last-child { margin-bottom: 0; }
    .news-article-body p,
    .news-article-body ul,
    .news-article-body ol { margin: 0 0 1.45em; }
    .news-article-body ul,
    .news-article-body ol { padding-left: 1.3em; }
    .news-article-body li + li { margin-top: .48em; }

    .news-article-body h2,
    .news-article-body h3,
    .news-article-body h4 {
      color: #15364a;
      font-weight: 400;
      line-height: 1.16;
      letter-spacing: -.035em;
    }

    .news-article-body h2 { margin: 2em 0 .72em; font-size: clamp(29px, 3.4vw, 48px); }
    .news-article-body h3 { margin: 1.8em 0 .7em; font-size: clamp(23px, 2.3vw, 34px); }
    .news-article-body h4 { margin: 1.6em 0 .65em; font-size: clamp(19px, 1.7vw, 25px); }

    .news-article-body a {
      color: #0879aa;
      text-decoration-color: rgba(8, 121, 170, .28);
      text-underline-offset: .18em;
    }

    .news-article-body a:hover { color: #055f87; text-decoration-color: currentColor; }
    .news-article-body img {
      max-width: 100% !important;
      height: auto !important;
      border-radius: 12px;
      filter: saturate(.88) contrast(1.02);
      box-shadow: 0 16px 42px rgba(35, 80, 101, .1);
    }

    .news-article-body .news-auto-gallery {
      width: 100% !important;
      max-width: none !important;
      margin: clamp(34px, 5vw, 58px) 0 !important;
      padding: 0 !important;
      display: grid !important;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: clamp(9px, 1.3vw, 14px) !important;
      text-align: left;
    }

    .news-article-body .news-auto-gallery > .news-gallery-item {
      --gallery-span: 6;
      --gallery-height: 320px;
      position: relative !important;
      grid-column: span var(--gallery-span);
      width: auto !important;
      min-width: 0;
      max-width: none !important;
      height: var(--gallery-height) !important;
      min-height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      overflow: hidden;
      display: block !important;
      float: none !important;
      border: 1px solid rgba(24, 94, 126, .14);
      border-radius: 15px;
      background: #dce8ed;
      box-shadow: 0 16px 40px rgba(35, 80, 101, .1), inset 0 1px rgba(255, 255, 255, .55);
      contain: paint;
    }

    .news-article-body .news-gallery-item::before,
    .news-article-body .news-gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .news-article-body .news-gallery-item::before {
      inset: -24px;
      z-index: 0;
      opacity: .42;
      background: var(--gallery-image) center / cover no-repeat;
      filter: blur(20px) saturate(.76) contrast(.94);
      transform: scale(1.08);
    }

    .news-article-body .news-gallery-item::after {
      z-index: 2;
      border-radius: inherit;
      background:
        linear-gradient(180deg, rgba(229, 244, 249, .09), rgba(5, 42, 59, .12)),
        linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 22%, transparent 78%, rgba(3, 35, 50, .08));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    }

    .news-article-body .news-gallery-item > a,
    .news-article-body .news-gallery-item > picture,
    .news-article-body .news-gallery-item > figure {
      position: relative;
      z-index: 1;
      width: 100% !important;
      height: 100% !important;
      margin: 0 !important;
      display: block !important;
    }

    .news-article-body .news-auto-gallery > .news-gallery-item img {
      position: relative;
      z-index: 1;
      width: 100% !important;
      max-width: none !important;
      height: 100% !important;
      min-height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      display: block !important;
      object-fit: contain !important;
      object-position: center !important;
      border: 0 !important;
      border-radius: 0 !important;
      filter: saturate(.86) contrast(1.025) !important;
      box-shadow: none !important;
      transition: transform .45s cubic-bezier(.2, .72, .22, 1), filter .45s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .news-article-body .news-gallery-item:hover img {
        transform: scale(1.018);
        filter: saturate(.96) contrast(1.02) !important;
      }
    }

    .news-article-body iframe,
    .news-article-body video {
      width: 100% !important;
      max-width: 100%;
      border: 0;
      border-radius: 14px;
      box-shadow: 0 18px 50px rgba(31, 76, 98, .12);
    }

    .news-article-body table {
      width: 100% !important;
      max-width: 100%;
      border-collapse: collapse;
      display: block;
      overflow-x: auto;
    }

    .news-article-body blockquote {
      margin: 2em 0;
      padding: 1.35em 1.5em;
      color: #17445c;
      border-left: 2px solid #1982ae;
      background: rgba(219, 237, 244, .52);
    }

    .news-article-body > section,
    .news-article-body > div { max-width: 100%; }

    /* Compatibility for utility classes stored inside older news_text records. */
    .news-article-body .d_i { display: inline-block; vertical-align: top; }
    .news-article-body .p_r { position: relative; }
    .news-article-body .t_a_c { text-align: center; }
    .news-article-body .w_100 { width: 100% !important; }
    .news-article-body .w_92 { width: min(100%, 92%); }
    .news-article-body .w_50,
    .news-article-body .w_49 { width: min(100%, 49%); }
    .news-article-body .w_32 { width: min(100%, 32%); }
    .news-article-body .wrapper_content,
    .news-article-body .wrapper_all,
    .news-article-body .inner_content {
      width: 100%;
      max-width: 100%;
      margin-inline: auto;
      position: relative;
      top: auto;
    }

    .news-article-body .b2_left { width: min(100%, 45%); padding: 15px; }
    .news-article-body .b2_left_50 { width: min(100%, 50%); margin-right: 24px; }
    .news-article-body .grey_section {
      margin-block: 22px;
      padding: 24px;
      border: 1px solid rgba(26, 105, 142, .12);
      border-radius: 12px;
      background: rgba(226, 239, 245, .58);
    }
    .news-article-body .white_back { background: rgba(255, 255, 255, .7); }
    .news-article-body .m_b_0 { margin-bottom: 0 !important; }
    .news-article-body .m_b_20 { margin-bottom: 20px !important; }
    .news-article-body .p_10 { padding: 10px; }

    .news-article-footer {
      position: relative;
      width: min(100%, 1080px);
      margin: clamp(64px, 8vw, 104px) auto 0;
      padding: clamp(24px, 3vw, 38px);
      overflow: hidden;
      border: 1px solid rgba(24, 105, 143, .14);
      border-radius: 24px;
      background:
        radial-gradient(circle at 92% 8%, rgba(51, 162, 207, .12), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(226, 240, 246, .72));
      box-shadow: 0 28px 70px rgba(40, 86, 108, .1), inset 0 1px rgba(255, 255, 255, .84);
    }

    .news-article-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .34;
      background-image:
        linear-gradient(rgba(25, 111, 151, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 111, 151, .05) 1px, transparent 1px);
      background-size: 28px 28px;
      -webkit-mask-image: linear-gradient(110deg, transparent 8%, #000 78%, transparent);
      mask-image: linear-gradient(110deg, transparent 8%, #000 78%, transparent);
    }

    .news-article-footer-head,
    .news-article-footer-links {
      position: relative;
      z-index: 1;
    }

    .news-article-footer-head {
      margin-bottom: clamp(20px, 2.5vw, 28px);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
    }

    .news-article-footer-head > span {
      color: rgba(23, 101, 132, .57);
      font-size: 9px;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .news-article-footer-head > strong {
      color: #163f54;
      font-size: clamp(24px, 2.8vw, 38px);
      font-weight: 350;
      line-height: 1;
      letter-spacing: -.045em;
    }

    .news-article-footer-links {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: 14px;
    }

    .news-back-link,
    .news-next-link {
      position: relative;
      min-width: 0;
      min-height: 154px;
      padding: 22px 23px;
      overflow: hidden;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: end;
      gap: 18px;
      border: 1px solid rgba(22, 103, 139, .14);
      border-radius: 16px;
      text-decoration: none;
      transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .news-back-link {
      color: #174e67;
      background: rgba(255, 255, 255, .72);
    }

    .news-next-link {
      color: #edfaff;
      border-color: rgba(117, 214, 249, .16);
      background:
        radial-gradient(circle at 88% 12%, rgba(77, 197, 239, .25), transparent 34%),
        linear-gradient(135deg, #0b4867, #082f47 72%);
      box-shadow: inset 0 1px rgba(255, 255, 255, .09);
    }

    .news-next-link::before {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -54px;
      width: 150px;
      height: 150px;
      border: 1px solid rgba(144, 226, 255, .13);
      border-radius: 50%;
      box-shadow: 0 0 0 24px rgba(144, 226, 255, .035), 0 0 0 48px rgba(144, 226, 255, .025);
    }

    .news-footer-link-index {
      align-self: start;
      color: rgba(23, 101, 132, .42);
      font-size: 9px;
      letter-spacing: .16em;
    }

    .news-next-link .news-footer-link-index { color: rgba(196, 237, 252, .44); }

    .news-footer-link-copy {
      min-width: 0;
      display: grid;
      gap: 9px;
    }

    .news-footer-link-copy small {
      color: rgba(23, 78, 103, .54);
      font-size: 9px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .news-next-link .news-footer-link-copy small { color: rgba(207, 240, 252, .58); }

    .news-footer-link-copy strong {
      max-width: 310px;
      font-size: clamp(18px, 2vw, 25px);
      font-weight: 420;
      line-height: 1.12;
      letter-spacing: -.035em;
    }

    .news-footer-link-arrow {
      position: relative;
      z-index: 1;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: #176584;
      border: 1px solid rgba(22, 103, 139, .18);
      border-radius: 50%;
      background: rgba(255, 255, 255, .58);
      font-size: 17px;
      transition: transform .3s ease, background .3s ease;
    }

    .news-next-link .news-footer-link-arrow {
      color: #dff7ff;
      border-color: rgba(178, 231, 251, .22);
      background: rgba(213, 244, 255, .08);
    }

    .news-back-link:hover,
    .news-next-link:hover {
      transform: translateY(-3px);
      border-color: rgba(22, 103, 139, .3);
      box-shadow: 0 18px 38px rgba(33, 89, 114, .14);
    }

    .news-next-link:hover { border-color: rgba(151, 225, 252, .3); box-shadow: 0 20px 44px rgba(5, 47, 69, .2); }
    .news-back-link:hover .news-footer-link-arrow { transform: translateX(-4px); background: #fff; }
    .news-next-link:hover .news-footer-link-arrow { transform: translateX(4px); background: rgba(213, 244, 255, .14); }

    .news-back-link:focus-visible,
    .news-next-link:focus-visible { outline: 2px solid #2385ad; outline-offset: 3px; }

    .news-empty-page {
      min-height: 78vh;
      padding: 140px 32px 90px;
      display: grid;
      place-items: center;
      text-align: center;
      background: radial-gradient(circle at 50% 42%, rgba(12, 109, 199, .2), transparent 36%), linear-gradient(145deg, #020711, #071525 58%, #030a12);
    }

    .news-empty-page > div { max-width: 720px; }
    .news-empty-page .hero-kicker { justify-content: center; }
    .news-empty-page h1 { margin: 26px 0 0; color: #effaff; font-size: clamp(48px, 7vw, 92px); font-weight: 300; line-height: .96; letter-spacing: -.065em; }
    .news-empty-page p { margin: 24px auto 32px; color: rgba(188, 215, 231, .64); font-size: 16px; }

    @media (max-width: 960px) {
      #news-grid > .news-card:first-child { grid-column: span 2; }
      .news-detail-hero { min-height: 590px; }
    }

    @media (max-width: 860px) {
      #news-grid > .news-card:first-child {
        grid-column: auto;
        min-height: 410px;
        display: flex;
        contain-intrinsic-size: auto 410px;
      }

      #news-grid > .news-card:first-child .news-card-media { width: 100%; height: 190px; min-height: 190px; }
      #news-grid > .news-card:first-child .news-card-copy { min-height: 220px; padding: 23px 22px 24px; }
      #news-grid > .news-card:first-child h3 { margin-top: 20px; font-size: 24px; }
      #news-grid > .news-card:first-child .news-card-summary { font-size: 12px; }
      .news-detail-shell { width: min(100% - 36px, 1220px); padding: 164px 0 0; }
      .news-detail-shell h1 { font-size: clamp(44px, 11vw, 72px); }
      .news-article { width: min(100% - 36px, 1240px); }
      .news-article-cover { border-radius: 15px; }
    }

    @media (max-width: 620px) {
      .news-detail-hero { min-height: 540px; }
      .news-detail-shell { width: min(100% - 32px, 1220px); padding: 142px 0 0; }
      .news-detail-shell .breadcrumbs { margin-bottom: 36px; }
      .news-detail-shell h1 { font-size: clamp(40px, 12.5vw, 62px); }
      .news-detail-shell > p { margin-top: 20px; font-size: 14px; }
      .theme-bridge--detail { height: 54px; }
      .news-article-section { padding-block: 32px 110px; }
      .news-article { width: min(100% - 28px, 1240px); }
      .news-article-cover { min-height: 210px; margin-bottom: 48px; border-radius: 13px; }
      .news-article-cover > img,
      .news-article-cover > a,
      .news-article-cover > a > img { height: 62vw !important; min-height: 210px; }
      .news-article-body { font-size: 15px; line-height: 1.72; }
      .news-article-body .news-auto-gallery { grid-template-columns: 1fr; gap: 10px !important; margin-block: 34px !important; }
      .news-article-body .news-auto-gallery > .news-gallery-item {
        grid-column: 1 / -1 !important;
        height: clamp(220px, 66vw, 330px) !important;
        border-radius: 12px;
      }
      .news-article-body .news-auto-gallery > .news-gallery-item.is-square { height: clamp(270px, 86vw, 410px) !important; }
      .news-article-body .news-auto-gallery > .news-gallery-item.is-portrait { height: clamp(340px, 108vw, 520px) !important; }
      .news-article-footer { margin-top: 56px; padding: 20px; border-radius: 18px; }
      .news-article-footer-head { align-items: flex-start; flex-direction: column; gap: 9px; }
      .news-article-footer-links { grid-template-columns: 1fr; }
      .news-back-link,
      .news-next-link { min-height: 136px; padding: 20px; gap: 14px; }
      .news-footer-link-arrow { width: 38px; height: 38px; }
      .news-pagination .pages > div { gap: 4px; }
      .news-pagination .pages a,
      .news-pagination .pages b,
      .news-pagination .pages span { min-width: 32px; padding-inline: 8px; }
      .news-pagination .pages .prevAll,
      .news-pagination .pages .nextAll { display: none; }
      .news-article-body .w_50,
      .news-article-body .w_49,
      .news-article-body .w_32,
      .news-article-body .b2_left,
      .news-article-body .b2_left_50 { width: 100%; margin-right: 0; }
      .news-article-body .grey_section { padding: 18px; }
    }

    /* Small transparent news previews must not reserve a full cinematic cover. */
    .news-article-cover--compact {
      width: min(100%, var(--news-compact-cover-width, 500px));
      min-height: 0;
      max-height: none;
      margin: 0 auto clamp(44px, 6vw, 72px);
      padding: clamp(14px, 2vw, 20px);
      display: grid;
      place-items: center;
      border-radius: 16px;
      background:
        radial-gradient(circle at 50% 45%, rgba(65, 161, 193, .1), transparent 62%),
        rgba(255, 255, 255, .68);
      box-shadow: 0 20px 48px rgba(38, 83, 104, .1), inset 0 1px rgba(255, 255, 255, .82);
    }

    .news-article-cover--compact::before {
      opacity: .11;
      background-size: 18px 18px;
    }

    .news-article-cover--compact::after {
      background: linear-gradient(180deg, transparent 74%, rgba(7, 35, 49, .08));
    }

    .news-article-cover--compact > img,
    .news-article-cover--compact > a {
      width: min(100%, 400px) !important;
      height: auto !important;
      min-height: 0;
      max-height: none;
    }

    .news-article-cover--compact > img,
    .news-article-cover--compact > a > img {
      object-fit: contain;
      border-radius: 10px;
      filter: saturate(.9) contrast(1.025);
    }

    .news-article-cover--compact > a > img {
      width: 100% !important;
      height: auto !important;
      min-height: 0;
      max-height: none;
      display: block;
    }

    .news-article-cover--auto-compact > img,
    .news-article-cover--auto-compact > a {
      width: 100% !important;
    }

    @media (max-width: 620px) {
      .news-article-cover--compact {
        min-height: 0;
        margin-bottom: 40px;
        padding: 11px;
        border-radius: 13px;
      }

      .news-article-cover--compact > img,
      .news-article-cover--compact > a,
      .news-article-cover--compact > a > img {
        height: auto !important;
        min-height: 0;
      }
    }
