:root {
  --white: #ffffff;
  --red: #ff3131;
  --brand-red: #e7452b;

  --text: #1d120f;
  --muted: #705c56;
  --soft: #fff7f5;
  --soft-red: rgba(255, 49, 49, 0.08);
  --brand-soft: rgba(231, 69, 43, 0.1);
  --line: rgba(231, 69, 43, 0.16);

  --shadow-soft: 0 28px 80px rgba(231, 69, 43, 0.08);
  --shadow-card: 0 20px 60px rgba(29, 18, 15, 0.08);

  --max-width: 1180px;
  --header-height: 78px;
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 49, 49, 0.11), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(231, 69, 43, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fff9f7 48%, #ffffff 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

#spaceCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  opacity: 0.95;
}

.cinematic-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
}

.scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(rgba(231, 69, 43, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 69, 43, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(255, 49, 49, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(231, 69, 43, 0.11), transparent 30rem);
  background-size: 64px 64px, 64px 64px, auto, auto;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.7), transparent 94%);
}

.rocket-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 23vw;
  min-width: 240px;
  opacity: 0.18;
}

.rocket-panel-left {
  left: 0;
  background:
    linear-gradient(90deg, rgba(255, 49, 49, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(231, 69, 43, 0.25) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(231, 69, 43, 0.12) 0 1px, transparent 1px 88px);
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
}

.rocket-panel-right {
  right: 0;
  background:
    linear-gradient(270deg, rgba(255, 49, 49, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(231, 69, 43, 0.25) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(231, 69, 43, 0.12) 0 1px, transparent 1px 88px);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.rover-horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -110px;
  height: 260px;
  background:
    radial-gradient(ellipse at center, rgba(255, 49, 49, 0.16), transparent 60%),
    linear-gradient(to top, rgba(231, 69, 43, 0.09), transparent 64%);
  border-top: 1px solid rgba(231, 69, 43, 0.13);
}

.rover-horizon::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 69, 43, 0.28), transparent);
}

.rover-horizon::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 62px;
  right: 13%;
  top: 28px;
  border: 2px solid rgba(231, 69, 43, 0.18);
  border-top: 8px solid rgba(231, 69, 43, 0.13);
  border-radius: 16px 16px 6px 6px;
  box-shadow:
    -35px 62px 0 -22px rgba(231, 69, 43, 0.22),
    35px 62px 0 -22px rgba(231, 69, 43, 0.22),
    0 0 32px rgba(231, 69, 43, 0.16);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 40px rgba(231, 69, 43, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--white), var(--red), var(--brand-red), var(--white));
}

.brand {
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
}

.brand-logo {
  width: 156px;
  height: 48px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  height: var(--header-height);
}

.site-nav a {
  height: var(--header-height);
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--brand-red);
  background: rgba(231, 69, 43, 0.06);
}

.site-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  padding-inline: 24px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(231, 69, 43, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-red);
  border-radius: 999px;
}

/* Layout */

.section {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 112px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 46px;
  padding-top: 150px;
}

.eyebrow {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2,
.guidance-card h2,
.career-panel h2,
.final-card h2 {
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(3rem, 7.4vw, 7.15rem);
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--text), var(--brand-red), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  box-shadow: 0 18px 44px rgba(231, 69, 43, 0.18);
}

.btn-secondary {
  color: var(--brand-red);
  background: var(--white);
  border-color: rgba(231, 69, 43, 0.28);
}

.btn-secondary:hover {
  background: rgba(231, 69, 43, 0.06);
}

/* Weekly briefing: fluid, not blocky */

.briefing-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.briefing-card {
  min-height: 168px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.briefing-card.active {
  border-top-color: var(--brand-red);
}

.briefing-card span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.82rem;
}

.briefing-card h3 {
  margin-top: 22px;
  font-size: 1.18rem;
}

.briefing-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Orbital visual */

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbital-system {
  position: relative;
  width: min(92vw, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(231, 69, 43, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 0 50px rgba(231, 69, 43, 0.04),
    0 0 28px rgba(231, 69, 43, 0.08);
}

.orbit-one {
  width: 94%;
  height: 94%;
  animation: rotate 24s linear infinite;
}

.orbit-two {
  width: 72%;
  height: 72%;
  border-color: rgba(255, 49, 49, 0.3);
  animation: rotateReverse 19s linear infinite;
}

.orbit-three {
  width: 50%;
  height: 50%;
  border-color: rgba(231, 69, 43, 0.18);
  animation: rotate 14s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 24px rgba(231, 69, 43, 0.5);
}

.planet.core {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.75), transparent 18px),
    linear-gradient(135deg, var(--white), #fff2ee, var(--white));
  border: 1px solid rgba(231, 69, 43, 0.2);
  box-shadow:
    0 28px 90px rgba(231, 69, 43, 0.18),
    inset 0 0 42px rgba(231, 69, 43, 0.08);
  overflow: hidden;
}

.planet.core img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 50%;
}

.satellite {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(231, 69, 43, 0.24);
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(231, 69, 43, 0.12);
  border-radius: 999px;
  transition: 0.25s ease;
}

.satellite:hover {
  transform: translateY(-4px) scale(1.04);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
}

.satellite-one {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.satellite-one:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.04);
}

.satellite-two {
  right: 0;
  top: 48%;
}

.satellite-three {
  bottom: 12%;
  left: 18%;
}

.satellite-four {
  left: 0;
  top: 42%;
}

/* Editorial sections */

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.guidance-card h2,
.career-panel h2,
.final-card h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  margin-bottom: 20px;
}

.section-heading p,
.guidance-card p,
.career-panel p,
.final-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.value-grid,
.pathway-grid,
.article-grid {
  display: grid;
  gap: 28px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.glass-card,
.pathway-card,
.article-card {
  min-height: 230px;
  padding: 8px 0 26px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.card-number {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.85rem;
}

.glass-card h3,
.pathway-card h3,
.article-card h3 {
  margin-top: 24px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.glass-card p,
.pathway-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.pathway-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pathway-card {
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.pathway-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-red);
}

.pathway-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand-red);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.guidance-card,
.career-panel,
.final-card {
  border: 1px solid rgba(231, 69, 43, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-soft);
}

.guidance-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px;
  border-radius: var(--radius);
}

.guidance-list {
  display: grid;
  gap: 14px;
}

.guidance-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guidance-list span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 18px rgba(231, 69, 43, 0.35);
  flex: 0 0 auto;
}

.guidance-list p {
  color: var(--text);
  font-weight: 850;
  line-height: 1.4;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-card p {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 950;
}

.article-card h3 {
  line-height: 1.2;
}

.article-card span {
  display: inline-flex;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.career-panel {
  padding: 44px;
  border-radius: var(--radius);
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.career-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}

.final-cta {
  padding-top: 70px;
}

.final-card {
  padding: 62px 34px;
  border-radius: 36px;
  text-align: center;
}

.final-card p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.center-actions {
  justify-content: center;
}

.site-footer {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 110px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--brand-red);
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* Responsive */

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    height: 58px;
    padding: 0 24px;
    border-top: 1px solid rgba(231, 69, 43, 0.1);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .value-grid,
  .pathway-grid,
  .article-grid,
  .guidance-card,
  .briefing-board {
    grid-template-columns: 1fr;
  }

  .guidance-card {
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .section {
    width: min(calc(100% - 22px), var(--max-width));
    padding: 78px 0;
  }

  .site-header {
    padding: 0 12px;
  }

  .brand-logo {
  width: 128px;
  height: 44px;
}

  .hero {
    padding-top: 110px;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.7rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .planet.core {
    width: 128px;
    height: 128px;
  }

  .satellite {
    font-size: 0.66rem;
    padding: 9px 11px;
  }

  .satellite-two {
    right: -4px;
  }

  .satellite-four {
    left: -4px;
  }

  .guidance-card,
  .career-panel,
  .final-card {
    padding: 28px;
    border-radius: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Insights page */

.page-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.page-hero-content {
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--text), var(--brand-red), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  max-width: 780px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
}

.weekly-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.featured-brief {
  padding: 8px 0 32px;
  border-top: 1px solid var(--brand-red);
}

.featured-brief h3 {
  max-width: 850px;
  margin-top: 24px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.featured-brief p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.04rem;
}

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.brief-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
}

.brief-list {
  display: grid;
  gap: 24px;
}

.brief-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.brief-list span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.9rem;
}

.brief-list h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.brief-list p {
  color: var(--muted);
  line-height: 1.65;
}

.category-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.category-flow a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  box-shadow: 0 14px 40px rgba(231, 69, 43, 0.07);
  transition: 0.25s ease;
}

.category-flow a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .weekly-layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-top: 140px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding-top: 118px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  .featured-brief h3 {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }
}

/* Editorial carousel */

/* .editorial-carousel-section {
  padding-top: 70px;
}

.editorial-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 49, 49, 0.1), transparent 28rem),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease;
}

.editorial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
}

.slide-image {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.18), rgba(231, 69, 43, 0.08)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 24rem);
  border: 1px solid rgba(231, 69, 43, 0.14);
  position: relative;
}

.slide-image::after {
  content: "UCO AERO";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(231, 69, 43, 0.34);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
}

.slide-copy h3 {
  max-width: 650px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 22px;
}

.slide-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.story-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 30px;
  color: var(--brand-red);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 7px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(231, 69, 43, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-red);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(231, 69, 43, 0.13);
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
}

.carousel-prev {
  left: -18px;
}

.carousel-next {
  right: -18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(231, 69, 43, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dot.active {
  width: 28px;
  background: var(--brand-red);
}

@media (max-width: 980px) {
  .editorial-slide {
    grid-template-columns: 1fr;
  }

  .slide-image {
    min-height: 320px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }
}

@media (max-width: 680px) {
  .editorial-slide {
    padding: 16px;
    gap: 18px;
  }

  .slide-image {
    min-height: 240px;
    border-radius: 22px;
  }

  .slide-copy {
    padding: 12px 6px 20px;
  }

  .slide-copy h3 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }
}
/* Editorial carousel */

/* .editorial-carousel-section {
  padding-top: 70px;
}

.editorial-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 49, 49, 0.1), transparent 28rem),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease;
}

.editorial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
}

.slide-image {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.18), rgba(231, 69, 43, 0.08)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 24rem);
  border: 1px solid rgba(231, 69, 43, 0.14);
  position: relative;
}

.slide-image::after {
  content: "UCO AERO";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(231, 69, 43, 0.34);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
}

.slide-copy h3 {
  max-width: 650px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 22px;
}

.slide-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.story-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 30px;
  color: var(--brand-red);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 7px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(231, 69, 43, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-red);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(231, 69, 43, 0.13);
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
}

.carousel-prev {
  left: -18px;
}

.carousel-next {
  right: -18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(231, 69, 43, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dot.active {
  width: 28px;
  background: var(--brand-red);
}

@media (max-width: 980px) {
  .editorial-slide {
    grid-template-columns: 1fr;
  }

  .slide-image {
    min-height: 320px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }
}

@media (max-width: 680px) {
  .editorial-slide {
    padding: 16px;
    gap: 18px;
  }

  .slide-image {
    min-height: 240px;
    border-radius: 22px;
  }

  .slide-copy {
    padding: 12px 6px 20px;
  }

  .slide-copy h3 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }
}*/

/* Editorial carousel - full width hero style */

.editorial-carousel-section {
  width: 100%;
  max-width: none;
  padding: var(--header-height) 0 0;
  margin: 0;
}

.editorial-carousel-section .section-heading {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto 42px;
}

.editorial-carousel {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #111;
  box-shadow: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.65s ease;
}

.editorial-slide {
  position: relative;
  min-width: 100%;
  min-height: calc(100vh - var(--header-height));
  display: block;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.editorial-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(12, 6, 4, 0.82) 0%,
      rgba(12, 6, 4, 0.66) 28%,
      rgba(12, 6, 4, 0.26) 58%,
      rgba(12, 6, 4, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 6, 4, 0.28) 0%,
      rgba(12, 6, 4, 0.04) 42%,
      rgba(12, 6, 4, 0.5) 100%
    );
  pointer-events: none;
}

.slide-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.34), rgba(231, 69, 43, 0.18)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.7), transparent 26rem);
}

.slide-image::after {
  display: none;
}

.slide-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-copy {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - var(--header-height));
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 0 110px;
  color: var(--white);
}

.slide-copy .eyebrow {
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.slide-copy h3 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.58);
}

.slide-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.story-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 32px;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
}

.carousel-prev {
  left: 26px;
}

.carousel-next {
  right: 26px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 9;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dot.active {
  width: 34px;
  background: var(--white);
}

@media (max-width: 980px) {
  .editorial-slide {
    min-height: 680px;
  }

  .slide-copy {
    min-height: 680px;
    padding: 110px 0 100px;
  }

  .slide-copy h3 {
    max-width: 680px;
  }

  .carousel-prev {
    left: 16px;
  }

  .carousel-next {
    right: 16px;
  }
}

@media (max-width: 680px) {
  .editorial-carousel-section {
    padding-top: 54px;
  }

  .editorial-carousel-section .section-heading {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .editorial-slide {
    min-height: 620px;
  }

  .editorial-slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(12, 6, 4, 0.62) 0%,
        rgba(12, 6, 4, 0.42) 34%,
        rgba(12, 6, 4, 0.82) 100%
      );
  }

  .slide-copy {
    width: min(calc(100% - 28px), var(--max-width));
    min-height: 620px;
    justify-content: flex-end;
    padding: 120px 0 82px;
  }

  .slide-copy h3 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-dots {
    bottom: 18px;
  }
}


/* Career pathways page */

.pathway-map-section {
  padding-top: 70px;
}

.pathway-roadmap {
  display: grid;
  gap: 24px;
}

.pathway-route {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.pathway-route:last-child {
  border-bottom: 1px solid var(--line);
}

.pathway-route > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(231, 69, 43, 0.16);
}

.pathway-route h3 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.pathway-route p {
  max-width: 850px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.route-tags small {
  padding: 9px 13px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

@media (max-width: 680px) {
  .pathway-route {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pathway-route > span {
    width: 46px;
    height: 46px;
  }
} */

/* Guidance page */

.guidance-overview-section {
  padding-top: 70px;
}

.guidance-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guidance-feature,
.rule-item,
.timeline-step {
  padding: 8px 0 26px;
  border-top: 1px solid var(--line);
}

.guidance-feature span,
.rule-item span,
.timeline-step span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.85rem;
}

.guidance-feature h3,
.rule-item h3,
.timeline-step h3 {
  margin-top: 24px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.guidance-feature p,
.rule-item p,
.timeline-step p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.question-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.question-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 850;
  box-shadow: 0 14px 40px rgba(231, 69, 43, 0.07);
}

.session-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.booking-section {
  padding-top: 70px;
}

.booking-frame-wrap {
  width: 100%;
  height: 900px;
  min-height: 720px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.booking-frame-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #ffffff;
}

.booking-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.booking-fallback p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .guidance-feature-grid,
  .rules-grid,
  .session-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .booking-frame-wrap {
    height: 760px;
    min-height: 640px;
  }
}

@media (max-width: 680px) {
  .guidance-feature-grid,
  .rules-grid,
  .session-timeline {
    grid-template-columns: 1fr;
  }

  .booking-frame-wrap {
    height: 720px;
    min-height: 620px;
    border-radius: 22px;
  }

  .booking-fallback {
    flex-direction: column;
    align-items: stretch;
  }
}

.booking-direct-card {
  max-width: 860px;
  padding: 42px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.booking-direct-card h3 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.booking-direct-card p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

@media (max-width: 680px) {
  .booking-direct-card {
    padding: 28px;
    border-radius: 22px;
  }
}

/* UCO Aero internal careers banner and page */

.career-top-banner-section {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 26px);
  padding-bottom: 0;
}

.career-top-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.08), rgba(231, 69, 43, 0.05)),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 64px rgba(231, 69, 43, 0.1);
  transition: 0.25s ease;
}

.career-top-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 84px rgba(231, 69, 43, 0.16);
}

.career-top-banner span {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.career-top-banner strong {
  color: var(--text);
  font-size: 0.98rem;
}

.career-top-banner em {
  color: var(--brand-red);
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.careers-page-hero {
  padding-top: 90px;
}

.internal-job-card {
  border-color: rgba(231, 69, 43, 0.2);
}

.live-status {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--brand-red));
}

.internal-process-section {
  padding-top: 80px;
}

@media (max-width: 860px) {
  .career-top-banner {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .career-top-banner span,
  .career-top-banner em {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .career-top-banner-section {
    width: min(calc(100% - 22px), var(--max-width));
    padding-top: calc(var(--header-height) + 18px);
  }

  .career-top-banner {
    padding: 16px;
  }

  .careers-page-hero {
    padding-top: 70px;
  }
}

/* Careers page */

.careers-intro-section {
  padding-top: 70px;
}

.career-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.career-signal {
  padding: 8px 0 26px;
  border-top: 1px solid var(--line);
}

.career-signal span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.85rem;
}

.career-signal h3 {
  margin-top: 24px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.career-signal p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.job-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.job-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 24rem),
    rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(231, 69, 43, 0.075);
  transition: 0.25s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(231, 69, 43, 0.12);
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.job-type {
  color: var(--brand-red);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.job-status {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
}

.job-card h3 {
  max-width: 620px;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.job-card > p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.job-meta span {
  padding: 9px 13px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 850;
}

.opportunity-categories-section {
  padding-top: 80px;
}

.profile-submit-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.profile-submit-card h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.profile-submit-card p {
  color: var(--muted);
  line-height: 1.8;
}

.profile-checklist {
  display: grid;
  gap: 14px;
}

.profile-checklist div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-checklist span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 18px rgba(231, 69, 43, 0.35);
  flex: 0 0 auto;
}

.profile-checklist p {
  color: var(--text);
  font-weight: 850;
  line-height: 1.4;
}

.profile-submit-card .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

@media (max-width: 980px) {
  .career-signal-grid,
  .job-board,
  .profile-submit-card {
    grid-template-columns: 1fr;
  }

  .profile-submit-card .hero-actions {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .job-card,
  .profile-submit-card {
    padding: 28px;
    border-radius: 22px;
  }

  .job-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* About page */

.about-mission-section {
  padding-top: 70px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: start;
}

.about-mission-grid .section-heading {
  margin-bottom: 0;
}

.about-mission-grid .section-heading p + p {
  margin-top: 18px;
}

.mission-panel,
.principles-card {
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.mission-panel {
  padding: 34px;
}

.mission-panel h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}

.mission-list,
.principles-list {
  display: grid;
  gap: 14px;
}

.mission-list div,
.principles-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-list span,
.principles-list span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 18px rgba(231, 69, 43, 0.35);
  flex: 0 0 auto;
}

.mission-list p,
.principles-list p {
  color: var(--text);
  font-weight: 850;
  line-height: 1.45;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-value {
  padding: 8px 0 26px;
  border-top: 1px solid var(--line);
}

.about-value span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.85rem;
}

.about-value h3 {
  margin-top: 24px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-value p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.about-fields-section,
.about-roadmap-section {
  padding-top: 80px;
}

.principles-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
}

.principles-card h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.principles-card p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .about-mission-grid,
  .about-value-grid,
  .principles-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mission-panel,
  .principles-card {
    padding: 28px;
    border-radius: 22px;
  }
}
/* Contact page */

.contact-routes-section {
  padding-top: 70px;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.contact-route-card {
  min-height: 300px;
  padding: 8px 0 26px;
  border-top: 1px solid var(--line);
}

.contact-route-card > span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.85rem;
}

.contact-route-card h3 {
  margin-top: 24px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.contact-route-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-details-section,
.contact-actions-section,
.contact-note-section {
  padding-top: 80px;
}

.contact-details-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
}

.contact-details-card h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.contact-details-card p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-checklist {
  display: grid;
  gap: 14px;
}

.contact-checklist div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-checklist span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 18px rgba(231, 69, 43, 0.35);
  flex: 0 0 auto;
}

.contact-checklist p {
  color: var(--text);
  font-weight: 850;
  line-height: 1.4;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-action {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 24rem),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(231, 69, 43, 0.075);
  transition: 0.25s ease;
}

.contact-action:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(231, 69, 43, 0.12);
}

.contact-action span {
  width: fit-content;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-action strong {
  max-width: 680px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.contact-action em {
  color: var(--brand-red);
  font-style: normal;
  font-weight: 950;
}

@media (max-width: 980px) {
  .contact-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-details-card,
  .contact-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-card,
  .contact-action {
    padding: 28px;
    border-radius: 22px;
  }
}

/* Privacy page */

.privacy-hero {
  min-height: 72vh;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.privacy-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  font-size: 0.88rem;
}

.privacy-layout-section {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 54px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.08), transparent 20rem),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 64px rgba(231, 69, 43, 0.08);
}

.privacy-toc .eyebrow {
  margin-bottom: 8px;
}

.privacy-toc a {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  transition: 0.2s ease;
}

.privacy-toc a:hover {
  color: var(--brand-red);
  transform: translateX(4px);
}

.privacy-content {
  display: grid;
  gap: 34px;
}

.privacy-section {
  padding: 8px 0 34px;
  border-top: 1px solid var(--line);
}

.privacy-section > span {
  color: var(--brand-red);
  font-weight: 950;
  font-size: 0.85rem;
}

.privacy-section h2 {
  max-width: 860px;
  margin-top: 20px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.privacy-section p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.02rem;
  margin-top: 14px;
}

.privacy-section ul {
  max-width: 900px;
  margin-top: 18px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.82;
}

.privacy-section li {
  margin-bottom: 8px;
}

.privacy-contact-card {
  max-width: 520px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 20rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(231, 69, 43, 0.07);
}

.privacy-contact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.1rem;
}

.privacy-contact-card a {
  color: var(--brand-red);
  font-weight: 950;
}

@media (max-width: 980px) {
  .privacy-layout-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-toc {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .privacy-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-toc,
  .privacy-contact-card {
    border-radius: 22px;
  }

  .privacy-section h2 {
    font-size: clamp(1.8rem, 11vw, 3.2rem);
  }
}

/* Cookie and analytics consent */

.uco-cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 90px rgba(29, 18, 15, 0.18);
}

.uco-cookie-kicker {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 950;
  margin-bottom: 8px;
}

.uco-cookie-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 8px;
}

.uco-cookie-copy p:not(.uco-cookie-kicker) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.uco-cookie-copy a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand-red);
  font-weight: 900;
  border-bottom: 1px solid var(--brand-red);
}

.uco-cookie-actions,
.uco-cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.uco-cookie-primary,
.uco-cookie-secondary {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(231, 69, 43, 0.2);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.uco-cookie-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  box-shadow: 0 16px 38px rgba(231, 69, 43, 0.16);
}

.uco-cookie-secondary {
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.82);
}

.uco-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(29, 18, 15, 0.26);
  backdrop-filter: blur(8px);
}

.uco-cookie-modal-card {
  width: min(100%, 820px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(231, 69, 43, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.1), transparent 24rem),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 100px rgba(29, 18, 15, 0.22);
}

.uco-cookie-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}

.uco-cookie-modal-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.uco-cookie-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(231, 69, 43, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-red);
  font-size: 1.8rem;
  cursor: pointer;
}

.uco-cookie-modal-intro {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.uco-cookie-options {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.uco-cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(231, 69, 43, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.uco-cookie-option strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.uco-cookie-option p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.uco-cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--brand-red);
}

.uco-cookie-option.disabled {
  opacity: 0.78;
}

.uco-privacy-choice-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 160;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(29, 18, 15, 0.12);
  cursor: pointer;
  font-weight: 850;
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .uco-cookie-consent {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .uco-cookie-actions,
  .uco-cookie-modal-actions {
    justify-content: stretch;
  }

  .uco-cookie-primary,
  .uco-cookie-secondary {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .uco-cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .uco-cookie-actions,
  .uco-cookie-modal-actions {
    flex-direction: column;
  }

  .uco-cookie-primary,
  .uco-cookie-secondary {
    width: 100%;
  }

  .uco-cookie-modal-card {
    padding: 20px;
    border-radius: 22px;
  }

  .uco-cookie-option {
    grid-template-columns: 1fr;
  }

  .uco-privacy-choice-button {
    left: 10px;
    bottom: 10px;
  }
}

.insights-page-after-carousel {
  min-height: auto;
  padding-top: 90px;
}

.carousel-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--brand-red));
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

/* BBC-style article cards for Insights page */

.article-desk-section {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding-top: 95px;
}

.article-desk-section .section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.article-desk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Make all cards equal like BBC tiles */
.news-card,
.news-card-large {
  display: block;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  transition: 0.25s ease;
}

/* Override previous large-card behaviour */
.news-card-large {
  grid-row: auto;
  grid-column: auto;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: rgba(231, 69, 43, 0.06);
  border: 0;
  box-shadow: none;
}

/* Remove UCO AERO watermark from article thumbnails */
.news-card-image::after {
  display: none;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-card-copy {
  padding-top: 14px;
}

.news-category {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 950;
  margin-bottom: 8px;
}

.news-card h3,
.news-card-large h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0;
}

.news-card-copy p:not(.news-category) {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.news-card-copy span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

/* Optional: make first article span wider only on desktop */
.news-card-large:first-child {
  grid-column: span 1;
}

/* Add BBC-like lower separator */
.news-card::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 100%;
  height: 1px;
  background: var(--line);
}

@media (max-width: 1080px) {
  .article-desk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card-large {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .article-desk-section {
    width: min(calc(100% - 22px), var(--max-width));
    padding-top: 72px;
  }

  .article-desk-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-card-image {
    aspect-ratio: 16 / 9;
  }

  .news-card h3,
  .news-card-large h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
}

/* Individual article pages */

.article-page {
  padding-top: 150px;
}

.article-header {
  max-width: 980px;
  margin: 0 auto;
}

.article-header h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.article-header > p {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.article-meta-row span {
  padding: 10px 14px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  font-size: 0.86rem;
}

.article-cover {
  max-width: 1180px;
  margin: 54px auto 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(231, 69, 43, 0.16);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
}

.article-body {
  max-width: 820px;
  margin: 62px auto 0;
}

.article-body p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.95;
  margin-bottom: 24px;
}

.article-body h2 {
  margin: 46px 0 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.article-body h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-body ul {
  margin: 18px 0 28px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.04rem;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body figure {
  margin: 42px 0;
}

.article-body figure img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  box-shadow: 0 20px 60px rgba(231, 69, 43, 0.08);
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-callout {
  margin: 42px 0;
  padding: 26px;
  border-left: 4px solid var(--brand-red);
  background:
    radial-gradient(circle at top left, rgba(255, 49, 49, 0.09), transparent 22rem),
    rgba(255, 255, 255, 0.76);
  border-radius: 0 22px 22px 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.08rem;
}

.article-sources {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin-top: 0;
}

.article-sources a {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-red);
  font-weight: 850;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 680px) {
  .article-page {
    padding-top: 118px;
  }

  .article-cover {
    border-radius: 22px;
  }

  .article-cover img {
    aspect-ratio: 16 / 10;
  }

  .article-body {
    margin-top: 44px;
  }

  .article-body figure img {
    border-radius: 20px;
  }

  .article-callout {
    padding: 22px;
    border-radius: 0 18px 18px 0;
  }
}

/* Article pages inside /articles folder */

.article-page {
  padding-top: 150px;
}

.article-header {
  max-width: 980px;
  margin: 0 auto;
}

.article-header h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.article-header > p {
  max-width: 780px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.article-meta-row span {
  padding: 10px 14px;
  border: 1px solid rgba(231, 69, 43, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  font-size: 0.86rem;
}

.article-cover {
  max-width: 1180px;
  margin: 54px auto 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(231, 69, 43, 0.16);
  box-shadow: 0 28px 80px rgba(231, 69, 43, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
}

.article-body {
  max-width: 820px;
  margin: 62px auto 0;
}

.article-body p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.95;
  margin-bottom: 24px;
}

.article-body h2 {
  margin: 46px 0 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.article-body ul {
  margin: 12px 0 28px 22px;
  color: var(--muted);
  line-height: 1.85;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body figure {
  margin: 42px 0;
}

.article-body figure img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(231, 69, 43, 0.16);
  box-shadow: 0 20px 60px rgba(231, 69, 43, 0.08);
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-source-list {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-source-list a {
  color: var(--brand-red);
  font-weight: 850;
  border-bottom: 1px solid rgba(231, 69, 43, 0.35);
}

@media (max-width: 680px) {
  .article-page {
    padding-top: 118px;
  }

  .article-cover {
    border-radius: 22px;
  }

  .article-cover img {
    aspect-ratio: 16 / 10;
  }

  .article-body {
    margin-top: 44px;
  }

  .article-body figure img {
    border-radius: 20px;
  }
}
.article-author-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.article-author-meta img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(231, 69, 43, 0.22);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(231, 69, 43, 0.12);
}

.article-author-meta strong {
  font: inherit;
  color: var(--brand-red);
}

.article-deck {
  max-width: 820px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(35, 20, 18, 0.78);
  margin: 1rem 0 1.4rem;
}

.article-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.article-byline-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.article-author-card,
.article-meta-badge {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: #e7452b;
  color: #fff8f4;
  border: 1px solid #e7452b;
  padding: 0.7rem 1rem;
  box-sizing: border-box;
}

.article-author-card {
  gap: 0.8rem;
  padding-right: 1.1rem;
}

.article-author-card img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.article-author-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.article-author-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 244, 0.82);
  margin-bottom: 0.2rem;
}

.article-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.article-meta-badge {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.article-share-group {
  display: flex;
  align-items: center;
}

.article-share-btn {
  min-height: 52px;
  padding: 0.7rem 1.15rem;
  border-radius: 6px;
  border: 1px solid #e7452b;
  background: transparent;
  color: #e7452b;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-share-btn:hover {
  background: #e7452b;
  color: #ffffff;
}

.article-share-btn.copied {
  background: #e7452b;
  color: #ffffff;
}

@media (max-width: 768px) {
  .article-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .article-byline-group {
    width: 100%;
  }

  .article-author-card,
  .article-meta-badge,
  .article-share-btn {
    width: auto;
  }
}