.news-hero {
  border-bottom: 1px solid var(--border);
}

.news-hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

.news-hero-copy {
  max-width: 620px;
}

.news-hero h1 {
  margin-top: 0;
}

.news-hero .hero-lead {
  color: #000;
  max-width: 560px;
}

.news-hero-motion {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.news-hero-motion__scene {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3.4;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-hero-motion__plane {
  position: absolute;
  border-radius: 18px;
  transform-origin: center center;
  will-change: transform, opacity;
}

.news-hero-motion__plane--fill {
  width: 58%;
  height: 72%;
  left: 10%;
  top: 14%;
  background: var(--orange-500);
  transform: rotate(-14deg) translate3d(-6%, 4%, 0);
  animation: news-hero-plane-fill 6.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.news-hero-motion__plane--line {
  width: 54%;
  height: 68%;
  right: 8%;
  bottom: 10%;
  left: auto;
  top: auto;
  background: transparent;
  border: 2px solid #000;
  transform: rotate(10deg) translate3d(5%, -3%, 0);
  animation: news-hero-plane-line 5.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.news-hero-motion__scan {
  position: absolute;
  left: 8%;
  top: 18%;
  width: 7px;
  height: 64%;
  border-radius: 999px;
  background: var(--orange-500);
  opacity: 0.9;
  transform: translate3d(0, 0, 0) rotate(-8deg);
  animation: news-hero-scan 5.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, opacity;
  z-index: 1;
}

.news-hero-motion__product {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92%, 420px);
  height: auto;
  transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
  animation: news-hero-product 6.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.12));
}

@keyframes news-hero-product {
  0%,
  100% {
    transform: translate3d(-2%, 2%, 0) rotate(-5deg) scale(1);
  }
  50% {
    transform: translate3d(3%, -3%, 0) rotate(-1.5deg) scale(1.035);
  }
}

@keyframes news-hero-plane-fill {
  0%,
  100% {
    transform: rotate(-14deg) translate3d(-6%, 4%, 0);
    opacity: 0.96;
  }
  50% {
    transform: rotate(-10deg) translate3d(4%, -5%, 0);
    opacity: 1;
  }
}

@keyframes news-hero-plane-line {
  0%,
  100% {
    transform: rotate(10deg) translate3d(5%, -3%, 0);
    opacity: 1;
  }
  50% {
    transform: rotate(7deg) translate3d(-4%, 5%, 0);
    opacity: 0.92;
  }
}

@keyframes news-hero-scan {
  0% {
    transform: translate3d(0, 4%, 0) rotate(-8deg);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  50% {
    transform: translate3d(520%, -2%, 0) rotate(-8deg);
    opacity: 0.85;
  }
  88% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(760%, 2%, 0) rotate(-8deg);
    opacity: 0;
  }
}

.news-latest .report-section-head .lead {
  color: #000;
}

.news-story-card.feat-card p {
  color: #000;
}

.news-featured {
  background: #fff;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.news-featured .report-section-head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.news-featured-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: #000;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--neutral-300);
}

.news-featured-card:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 3px;
}

.news-featured-card__media {
  display: block;
  min-height: 100%;
  background: #f4f4f4;
  overflow: hidden;
}

.news-featured-card__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.news-featured-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 3.2vw, 44px);
  justify-content: center;
}

.news-featured-card__body h3 {
  margin: 0;
  font: 500 clamp(28px, 3vw, 40px)/1.04 var(--font-sans);
  letter-spacing: -0.035em;
  color: #000;
}

.news-featured-card__body p {
  margin: 0;
  font: 500 clamp(15px, 1.1vw, 17px)/1.5 var(--font-sans);
  letter-spacing: -0.01em;
  color: #000;
}

.news-featured-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
}

.news-featured-card__stats span {
  font: 500 14px/1.3 var(--font-sans);
  letter-spacing: -0.01em;
  color: #000;
}

.news-featured-card .feat-card-go {
  margin-top: 8px;
}

.news-cat {
  font: 500 13px/1 var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-500);
}

.news-topics {
  background: var(--neutral-50);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.news-topics .report-section-head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.news-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

.news-topic-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.6vw, 34px);
  min-height: 240px;
  color: #000;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-topic-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--neutral-300);
}

.news-topic-box:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 3px;
}

.news-topic-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--orange-tint);
  color: var(--orange-500);
  flex: none;
}

.news-topic-box__icon svg {
  width: 26px;
  height: 26px;
}

.news-topic-box__brands {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 50px;
}

.news-topic-box__ss {
  height: 20px;
  width: auto;
  display: block;
}

.news-topic-box__vs {
  font: 500 14px/1 var(--font-sans);
  letter-spacing: -0.01em;
  color: #000;
}

.news-topic-box__eql {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: #000;
}

.news-topic-box__eql img {
  height: 15px;
  width: auto;
  display: block;
}

.news-topic-box__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-topic-box__body h3 {
  margin: 0;
  font: 500 clamp(22px, 2vw, 28px)/1.08 var(--font-sans);
  letter-spacing: -0.03em;
  color: #000;
}

.news-topic-box__body p {
  margin: 0;
  font: 500 15px/1.5 var(--font-sans);
  letter-spacing: -0.01em;
  color: #000;
}

.news-topic-box .feat-card-go {
  margin-top: auto;
}

.news-latest {
  background: #fff;
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.news-latest .report-section-head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.news-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

.news-story-card .news-cat {
  margin-bottom: 2px;
}

.news-story-card .feat-card-body {
  gap: 10px;
}

.news-story-card:not(.cs-index-card) p {
  color: #000;
}

@media (max-width: 1000px) {
  .news-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .news-hero-motion {
    max-width: 480px;
    margin-left: 0;
  }

  .news-featured-card {
    grid-template-columns: 1fr;
  }

  .news-featured-card__media img {
    min-height: 280px;
    max-height: 420px;
  }

  .news-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-hero-motion {
    max-width: 100%;
  }

  .news-hero-motion__scene {
    aspect-ratio: 5 / 3.2;
    min-height: 200px;
  }

  .news-hero-motion__product {
    width: min(90%, 340px);
  }

  .news-story-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-card__body {
    padding: 24px;
  }

  .news-topic-box {
    min-height: 0;
  }
}

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

  .news-featured-card:hover,
  .news-topic-box:hover {
    transform: none;
  }

  .news-hero-motion__product,
  .news-hero-motion__plane--fill,
  .news-hero-motion__plane--line,
  .news-hero-motion__scan {
    animation: none !important;
  }

  .news-hero-motion__product {
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }

  .news-hero-motion__plane--fill {
    transform: rotate(-12deg) translate3d(-2%, 2%, 0);
    opacity: 1;
  }

  .news-hero-motion__plane--line {
    transform: rotate(8deg) translate3d(2%, -1%, 0);
    opacity: 1;
  }

  .news-hero-motion__scan {
    opacity: 0;
  }
}
