﻿:root {
  --ink: #17312b;
  --muted: #63736d;
  --leaf: #2f6f5e;
  --leaf-dark: #174f43;
  --gold: #c8943f;
  --sequoia-red: #960000;
  --sequoia-red-dark: #740000;
  --cream: #fbf7ef;
  --paper: #ffffff;
  --line: #dfe9e3;
  --sky: #eaf4f0;
  --shadow: 0 18px 50px rgba(23, 49, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 233, 227, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1720px;
  min-height: 124px;
  margin: 0 auto;
  padding: 0 56px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 20px;
  width: max-content;
  text-decoration: none;
}

.brand-lockup img {
  width: 112px;
  height: 112px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

.brand-lockup span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links-main {
  align-items: center;
}

.nav-links a,
.nav-dropdown-trigger {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  cursor: default;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  background: var(--sky);
  color: var(--leaf-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  border-radius: 6px;
  padding: 10px 12px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  flex: 0 0 auto;
  min-width: 142px;
  min-height: 40px;
  border: 1px solid rgba(47, 111, 94, 0.32);
  border-radius: 999px;
  background: rgba(47, 111, 94, 0.08);
  color: var(--muted);
  padding: 3px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(47, 111, 94, 0.72);
  background: var(--sky);
  box-shadow: 0 8px 24px rgba(23, 49, 43, 0.12);
  outline: none;
}

.language-toggle-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 10px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

body[data-language="en"] .language-toggle-option[data-language-option="en"],
body[data-language="zh"] .language-toggle-option[data-language-option="zh"] {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 3px 10px rgba(23, 49, 43, 0.15);
}

.language-toggle:hover .language-toggle-option {
  color: var(--leaf-dark);
}

body[data-language="en"] .language-toggle:hover .language-toggle-option[data-language-option="en"],
body[data-language="zh"] .language-toggle:hover .language-toggle-option[data-language-option="zh"] {
  color: #fff;
}

body[data-language="en"] [data-lang-content="zh"],
body[data-language="zh"] [data-lang-content="en"] {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 43, 31, 0.86) 0%, rgba(37, 77, 60, 0.74) 42%, rgba(21, 42, 29, 0.88) 100%),
    url("images/sequoia-green-forest-hero.jpg") center / cover no-repeat;
  background-color: #152a1d;
  color: #fff;
}

.hero-inner,
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px;
}

.hero-inner {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  gap: 44px;
  align-items: end;
  min-height: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.08;
}

h3 {
  font-size: 22px;
}

p {
  line-height: 1.7;
}

.lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.page-lede {
  max-width: 850px;
  color: var(--muted);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--leaf-dark);
}

.hero-card,
.card,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  color: var(--ink);
}

.hero-card img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  margin-bottom: 18px;
}

.stats-grid,
.card-grid,
.program-grid,
.timeline,
.link-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0;
  padding-top: 34px;
}

.stat {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 25px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section.alt {
  max-width: none;
  background: #fff;
}

.section.alt > .section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head > div {
  width: 100%;
  min-width: 0;
}

.section-head h2 {
  white-space: nowrap;
}

.section-head p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-head .about-snapshot-title {
  max-width: none;
  font-size: clamp(34px, 3.25vw, 42px);
  white-space: nowrap;
}

.section-head .about-snapshot-zh-title {
  max-width: none;
  color: var(--leaf-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.95fr;
  gap: 18px;
}

.partnership-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.partnership-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 11px 12px;
}

.partnership-form textarea {
  resize: vertical;
}

.partnership-form .button {
  margin-top: 4px;
}

.program-card {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.program-card[role] {
  cursor: pointer;
}

.program-card[role]:hover,
.program-card[role]:focus {
  border-color: rgba(47, 111, 94, 0.42);
  box-shadow: 0 20px 54px rgba(23, 49, 43, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.program-entity-panel {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.program-entity-panel[hidden] {
  display: none;
}

.program-entity-note {
  margin: 0 0 12px;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 800;
}

.program-entity-grid {
  display: grid;
  gap: 12px;
}

.program-entity-logo-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 136px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  place-items: center;
  text-align: center;
  text-decoration: none;
}

.program-entity-logo-card img {
  max-width: 86%;
  max-height: 68px;
  object-fit: contain;
}

.program-entity-logo-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

.program-entity-summary {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  overflow: auto;
  background: rgba(23, 49, 43, 0.94);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  padding: 14px;
  transition: opacity 160ms ease;
}

.program-entity-logo-card:hover .program-entity-summary,
.program-entity-logo-card:focus .program-entity-summary {
  opacity: 1;
}

.brand-detail-block {
  margin-top: 22px;
}

.brand-detail-block h3 {
  margin-bottom: 10px;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.link-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.feature-panel {
  overflow: hidden;
}

.card {
  padding: 22px;
}

.card-logo {
  display: grid;
  place-items: center;
  min-height: 128px;
  margin: -22px -22px 18px;
  background: #f7f3ec;
}

.card-logo img {
  max-width: 82%;
  max-height: 96px;
  object-fit: contain;
}

.brand-card-agentech-education h3 {
  font-size: clamp(18px, 1.35vw, 20px);
  white-space: nowrap;
}

.card .meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-card .meta {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.card p,
.feature-panel p,
li {
  color: var(--muted);
}

.card a:not(.button) {
  color: var(--leaf-dark);
  font-weight: 800;
}

.about-roll {
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.about-roll-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: about-roll 46s linear infinite;
}

.about-roll:hover .about-roll-track {
  animation-play-state: paused;
}

.about-video-track {
  animation-duration: 58s;
}

.about-video-slide {
  width: 340px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-video-slide video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 540px;
  background: #111;
  object-fit: contain;
}

.about-video-slide p {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.about-slide {
  width: 360px;
  min-height: 520px;
  flex: 0 0 auto;
}

.about-slide-media {
  display: grid;
  min-height: 170px;
  margin: -22px -22px 20px;
  place-items: center;
  background: linear-gradient(135deg, rgba(150, 0, 0, 0.12), rgba(47, 111, 94, 0.14));
  color: rgba(23, 49, 43, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes about-roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 640px) {
  .about-video-slide {
    width: min(82vw, 320px);
  }
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  background: #fff;
}

.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-logo-panel {
  display: grid;
  min-height: 320px;
  place-items: center;
  background: #fff;
  padding: 36px;
}

.feature-logo-panel img {
  width: min(420px, 86%);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.feature-content {
  padding: 34px;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 16px;
}

.timeline-item strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  background: #fff8eb;
  color: #5d4520;
}

.site-footer {
  background: var(--ink);
  color: #dce8e2;
}

.page-hero-section {
  max-width: none;
  padding-top: 112px;
  padding-bottom: 104px;
  background:
    linear-gradient(90deg, rgba(116, 0, 0, 0.96), rgba(150, 0, 0, 0.9)),
    url("images/sequoia-education-group-red-logo.jpg") center / cover;
  color: #fff;
}

.page-hero-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-section h1,
.page-hero-section .page-lede {
  color: #fff;
}

.page-hero-section h1 {
  max-width: 1040px;
  font-size: clamp(56px, 6vw, 92px);
}

.page-hero-section .page-lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
}

.schools-surface {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(150, 0, 0, 0.95), rgba(150, 0, 0, 0.78)),
    url("images/sequoia-education-group-red-logo.jpg") center / cover;
}

.schools-surface .section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.schools-surface .card {
  border-color: rgba(255, 255, 255, 0.38);
}

.agentech-logo {
  width: min(420px, 100%);
  height: auto;
  min-height: 0;
  object-fit: contain;
  margin-bottom: 20px;
}

.inline-logo-panel {
  display: grid;
  place-items: center;
  max-width: 460px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.inline-logo-panel .agentech-logo {
  display: block;
  width: min(420px, 100%);
  height: auto;
  min-height: 0;
  max-height: 180px;
  margin-bottom: 0;
  object-fit: contain;
}

.feature-panel .inline-logo-panel img {
  width: min(420px, 100%);
  height: auto;
  min-height: 0;
  max-height: 180px;
  object-fit: contain;
}

.club-image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.brand-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
  padding: 22px;
  background: #f7f3ec;
}

.brand-gallery img {
  width: 100%;
  min-height: 0;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.brand-gallery-logo {
  max-height: 210px;
  padding: 18px;
}

.brand-logo-panel {
  display: grid;
  min-height: 420px;
  place-items: center;
  background: #f7f3ec;
  padding: 18px;
}

.brand-logo-panel img {
  width: 94%;
  height: auto;
  min-height: 0;
  max-height: 390px;
  object-fit: contain;
}

.brand-awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.brand-awards img {
  height: 300px;
  padding: 12px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-gallery-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-gallery-item figcaption {
  padding: 14px 16px 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px;
}

.footer-inner a {
  color: #fff;
}

.footer-utility-links {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.footer-utility-links span {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 16px 22px 14px;
  }

  .brand-lockup img {
    width: 82px;
    height: 82px;
  }

  .brand-lockup {
    gap: 12px;
    max-width: 100%;
    width: 100%;
  }

  .brand-lockup span {
    min-width: 0;
    font-size: 14px;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-panel {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .nav-links-main {
    flex-wrap: wrap;
  }

  .nav-links a,
  .nav-dropdown-trigger {
    font-size: 14px;
    padding: 10px 12px;
  }

  .hero-inner,
  .feature-panel,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .card-grid,
  .partnership-grid,
  .timeline,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .program-card {
    min-width: 0;
    padding: 14px;
  }

  .program-card .meta,
  .program-card h3 {
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.25;
  }

  .program-card p {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.5;
  }

  .program-entity-grid,
  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    min-height: auto;
    padding-top: 54px;
  }

  .page-hero-section {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .page-hero-section h1 {
    font-size: 44px;
  }

  .page-hero-section .page-lede {
    font-size: 18px;
  }

  .section-head .about-snapshot-title,
  .section-head .about-snapshot-zh-title {
    white-space: normal;
  }

  .section-head h2 {
    white-space: normal;
  }

  .section-head .about-snapshot-title {
    font-size: 34px;
  }

  .section-head .about-snapshot-zh-title {
    font-size: 21px;
  }
}


.news-list-hero {
  border-bottom: 1px solid #d8dde5;
  background: #eeeeee;
}

.news-list-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 54px 22px 64px;
}

.news-list-inner h1 {
  margin-bottom: 34px;
  color: #0b1220;
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34%;
  gap: 32px;
  min-height: 180px;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.news-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.news-list-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: 5px;
  object-fit: cover;
}

.news-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #a3aab5;
  font-size: 14px;
  font-weight: 700;
}

.news-list-meta span:first-child {
  color: #4666a1;
}

.news-list-card h2 {
  margin-top: 14px;
  color: #111827;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.news-list-card p {
  max-width: 680px;
  color: #4b5563;
}

.news-read-more {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 800;
}

.news-article {
  background: #0b1220;
  color: #fff;
}

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

.news-slideshow {
  border-bottom: 1px solid rgba(216, 221, 229, 0.18);
  background: #05070d;
}

.news-slideshow-main {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
}

.news-slideshow-main img {
  width: 100%;
  height: min(68vw, 660px);
  min-height: 360px;
  object-fit: contain;
}

.news-slide-dots {
  position: absolute;
  left: 40px;
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.news-slide-dots button {
  width: 40px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.news-slide-dots button.active {
  background: #fff;
}

.news-slide-caption {
  position: absolute;
  right: 40px;
  bottom: 58px;
  width: min(620px, calc(100% - 80px));
  border-left: 4px solid var(--gold);
  background: rgba(5, 7, 13, 0.78);
  padding: 18px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.news-slide-caption p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.news-filmstrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.news-filmstrip button {
  position: relative;
  border: 0;
  padding: 0;
  background: #05070d;
  cursor: pointer;
}

.news-filmstrip button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  transition: border-color 140ms ease, background 140ms ease;
}

.news-filmstrip button.active::after {
  border-color: #fff;
}

.news-filmstrip button:not(.active)::after {
  background: rgba(5, 7, 13, 0.18);
}

.news-filmstrip img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 22px 76px;
}

.news-back-link {
  color: #9aa8bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.news-language-bar {
  display: inline-flex;
  float: right;
  margin: -10px 0 24px 24px;
  border: 1px solid #d9e1ea;
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
}

.news-language-bar button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0b1220;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.news-language-bar button.active {
  background: #0b1220;
  color: #fff;
}

.news-article-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: start;
  clear: both;
}

.news-article-title-row h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.news-article-meta {
  display: grid;
  gap: 6px;
  color: #d8e1ef;
  font-size: 14px;
  text-align: right;
}

.news-article-meta span {
  color: #9aa8bd;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-article-deck {
  max-width: 840px;
  margin: 28px 0 38px;
  color: #d8e1ef;
  font-size: 20px;
  font-weight: 700;
}

.news-story-section {
  margin-top: 34px;
}

.news-story-section h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 28px;
}

.news-story-section p,
.news-story-section li {
  color: #d8e1ef;
  font-size: 18px;
  line-height: 1.78;
}

.news-story-section blockquote {
  margin: 24px 0;
  border-left: 4px solid #c8943f;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
}

.news-article-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 20px;
  padding-left: 22px;
}

.news-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.news-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.news-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.news-gallery-item figcaption {
  padding: 14px 16px 18px;
  color: #d8e1ef;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .news-list-card,
  .news-article-title-row,
  .news-gallery {
    grid-template-columns: 1fr;
  }

  .news-list-card img {
    order: -1;
    aspect-ratio: 4 / 3;
  }

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

  .news-filmstrip img {
    height: 120px;
  }

  .news-slide-caption {
    right: 16px;
    bottom: 48px;
    width: calc(100% - 32px);
    padding: 14px 16px;
  }

  .news-slide-caption p {
    font-size: 14px;
  }

  .news-slide-dots {
    left: 16px;
    bottom: 22px;
  }

  .news-language-bar {
    float: none;
    margin: 18px 0 26px;
  }

  .news-article-meta {
    text-align: left;
  }
}
