:root {
  --blue: #075ca8;
  --deep-blue: #073b73;
  --green: #9bd84f;
  --light-green: #eaf7d8;
  --gold: #d6a642;
  --purple: #6b35b8;
  --text: #1f2933;
  --muted: #64748b;
  --white: #ffffff;
  --bg: #f7fafc;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(7, 59, 115, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 92, 168, 0.1);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--deep-blue);
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 210px;
}

.brand-text span:first-child {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.brand-text span:last-child {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 16px;
  font-size: 0.94rem;
  font-weight: 650;
  color: #334155;
}

nav a {
  transition: color 0.2s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 92, 168, 0.24);
}

.nav-cta:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language switcher (繁 / 简 / EN) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(7, 92, 168, 0.08);
  border: 1px solid rgba(7, 92, 168, 0.12);
  flex: 0 0 auto;
}

.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1;
  transition: 0.18s ease;
}

.lang-opt:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
}

.lang-opt.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 6px 16px rgba(7, 92, 168, 0.28);
}

.lang-opt.active:hover {
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--deep-blue);
  transition: 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, rgba(155, 216, 79, 0.35), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(214, 166, 66, 0.28), transparent 30%),
    linear-gradient(135deg, #eef9db 0%, #d6efc2 25%, #3b91ba 70%, #075ca8 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  right: -180px;
  top: -160px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 82px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.17);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 166, 66, 0.22);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.hero h1 .zh {
  display: block;
  font-weight: 900;
}

.hero h1 .en {
  display: block;
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  color: #f6ffe9;
  font-weight: 750;
  margin-top: 8px;
}

.hero p {
  max-width: 680px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.42);
  color: white;
  background: rgba(255,255,255,0.12);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.globe {
  height: 330px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 52% 50%, rgba(255,255,255,0.22) 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.04));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.globe-logo {
  max-width: 82%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.28));
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stat {
  background: rgba(255,255,255,0.88);
  color: var(--deep-blue);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--blue);
  line-height: 1.1;
}

.stat span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

/* Sections */
section {
  padding: 92px 0;
}

.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 52px;
}

.section-kicker {
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
  color: var(--deep-blue);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.about-text {
  background: linear-gradient(180deg, #ffffff, #f4faef);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 92, 168, 0.08);
}

.about-text h3 {
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about-text p + p {
  margin-top: 16px;
}

.map-card {
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 30%, rgba(214,166,66,0.4), transparent 18%),
    radial-gradient(circle at 72% 55%, rgba(155,216,79,0.44), transparent 22%),
    linear-gradient(135deg, #dff5ce, #eaf5ff);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 92, 168, 0.08);
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 220px;
  border: 3px dashed rgba(7, 92, 168, 0.24);
  border-radius: 50%;
  left: -70px;
  top: 110px;
  transform: rotate(-12deg);
}

.map-card h3 {
  color: var(--deep-blue);
  font-size: 1.55rem;
  position: relative;
  z-index: 1;
}

.map-card p {
  position: relative;
  z-index: 1;
  color: #475569;
  max-width: 470px;
  margin-top: 14px;
}

.route-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.74);
  border-radius: 14px;
  font-weight: 700;
  color: var(--deep-blue);
}

.route-pin {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 166, 66, 0.18);
  flex: 0 0 auto;
}

/* Organization chart */
.org-chart {
  margin-top: 54px;
  text-align: center;
}

.org-chart .section-head {
  margin-bottom: 26px;
}

.org-chart-heading {
  color: var(--blue);
  font-size: 1.9rem;
  margin-top: 6px;
}

.org-chart-panel {
  margin: 0;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 92, 168, 0.08);
  padding: 28px;
  overflow-x: auto;
}

.org-chart-panel img {
  display: block;
  width: 100%;
  max-width: 1040px;
  min-width: 640px;
  height: auto;
  margin: 0 auto;
}

/* Vision & Mission */
.mission {
  background:
    linear-gradient(180deg, #f7fafc 0%, #eef8e4 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--blue);
  min-height: 255px;
}

.mission-card:nth-child(2) {
  border-top-color: var(--gold);
}

.mission-card:nth-child(3) {
  border-top-color: var(--green);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(7,92,168,0.12), rgba(155,216,79,0.18));
  margin-bottom: 20px;
}

.mission-card h3 {
  color: var(--deep-blue);
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.mission-card p {
  color: var(--muted);
}

/* Development */
.development {
  background: white;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.dev-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(7, 92, 168, 0.08);
  box-shadow: 0 12px 30px rgba(7, 59, 115, 0.08);
  transition: 0.22s ease;
}

.dev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(7, 59, 115, 0.16);
}

.dev-card .dev-icon {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.dev-card h3 {
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.32;
  margin-bottom: 10px;
}

.dev-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Network */
.network {
  background:
    radial-gradient(circle at 10% 20%, rgba(155,216,79,0.18), transparent 22%),
    radial-gradient(circle at 90% 30%, rgba(7,92,168,0.12), transparent 26%),
    #f8fafc;
}

.network-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.network-intro {
  background: var(--deep-blue);
  color: white;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.network-intro h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.network-intro p {
  color: rgba(255,255,255,0.86);
}

.country-groups {
  display: grid;
  gap: 16px;
}

.country-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(7, 59, 115, 0.08);
  border-left: 5px solid var(--gold);
}

.country-card h4 {
  color: var(--blue);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.country-card p {
  color: #475569;
  font-size: 0.96rem;
}

/* Timeline */
.timeline {
  background: white;
}

.timeline-wrap {
  position: relative;
  display: grid;
  gap: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}

.year {
  position: sticky;
  top: 96px;
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  color: white;
  padding: 16px 20px;
  border-radius: 18px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(7, 92, 168, 0.2);
}

.exchange-card {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(7, 92, 168, 0.08);
}

.exchange-card h3 {
  color: var(--deep-blue);
  margin-bottom: 14px;
}

.exchange-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.exchange-list li {
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  color: #475569;
  border-left: 4px solid var(--green);
}

/* New Belt Windows */
.windows {
  background:
    linear-gradient(135deg, #f5fbe9, #eef7ff);
  position: relative;
  overflow: hidden;
}

.windows::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(214, 166, 66, 0.12);
  right: -190px;
  bottom: -220px;
}

.windows-box {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 32px;
  padding: 46px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.window-logo {
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(7,92,168,0.12), rgba(155,216,79,0.28)),
    #ffffff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 92, 168, 0.08);
}

.window-logo::before,
.window-logo::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 70%;
  border: 9px solid var(--deep-blue);
  opacity: 0.28;
}

.window-logo::before {
  transform: translate(-20px, -16px);
}

.window-logo::after {
  border-color: var(--gold);
  transform: translate(24px, 20px);
}

.window-logo span {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 900;
  color: var(--deep-blue);
  text-align: center;
  line-height: 1.1;
}

.window-logo.has-image {
  background: #ffffff;
}

.window-logo.has-image::before,
.window-logo.has-image::after {
  display: none;
}

.window-logo.has-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
}

.windows-content h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--deep-blue);
  line-height: 1.1;
  margin-bottom: 12px;
}

.windows-content h3 {
  color: var(--purple);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.windows-content p {
  color: #475569;
}

.windows-content p + p {
  margin-top: 14px;
}

.windows-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.windows-points div {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px;
  font-weight: 700;
  color: var(--deep-blue);
}

/* CTA */
.cta {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(7, 92, 168, 0.96), rgba(7, 59, 115, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(155,216,79,0.5), transparent 30%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
}

footer {
  background: #031b33;
  color: rgba(255,255,255,0.78);
  padding: 34px 0;
  text-align: center;
  font-size: 0.92rem;
}

footer strong {
  color: white;
}

/* Responsive — nav collapses to the hamburger early enough that the longer
   English labels never have to wrap or overflow the header row. */
@media (max-width: 1180px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(7, 92, 168, 0.1);
    padding: 12px 0;
  }

  nav.main-nav.open {
    display: block;
  }

  nav.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: min(1180px, 92%);
    margin: 0 auto;
  }

  nav.main-nav li a {
    display: block;
    padding: 12px 8px;
    border-radius: 12px;
  }

  nav.main-nav li a:hover {
    background: rgba(7, 92, 168, 0.06);
  }

  .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Responsive — content grids */
@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .network-panel,
  .windows-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0;
  }

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

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .exchange-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 68px 0;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-text span:first-child {
    font-size: 0.9rem;
  }

  .brand-text span:last-child {
    display: none;
  }

  .hero-card {
    padding: 18px;
  }

  .globe {
    height: 240px;
  }

  .dev-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .year {
    position: static;
    text-align: left;
  }

  .windows-box,
  .about-text,
  .map-card {
    padding: 26px;
  }

  .windows-points {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 68px;
  }
}

/* ─────────────────────────── Articles ─────────────────────────── */
.article-section {
  background: var(--bg);
  min-height: 60vh;
}

.article-empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-size: 1.05rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(7, 59, 115, 0.18);
}

.article-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  overflow: hidden;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}

.article-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-date {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.article-card-title {
  font-size: 1.24rem;
  line-height: 1.32;
  color: var(--deep-blue);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
}

.article-card-title a:hover {
  color: var(--blue);
}

.article-card-excerpt {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.article-card-more {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.article-card-more:hover {
  color: var(--deep-blue);
}

/* Single article — Medium-style reading column */
.article-single {
  padding: 64px 0 92px;
}

.article-single-inner {
  width: min(760px, 92%);
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.back-link:hover {
  color: var(--deep-blue);
}

.article-title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.18;
  color: var(--deep-blue);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.article-date {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.article-cover {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 36px;
  display: block;
}

.article-body {
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 26px;
}

.article-figure {
  margin: 0 0 30px;
}

.article-figure img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.article-video {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 0 30px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.article-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-link {
  margin: 0 0 26px;
}

.article-link a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.article-link a:hover {
  color: var(--deep-blue);
}
