.page-news {
  background: var(--sand-gray);
}

.page-news .news-hero {
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 76px;
  background: var(--charcoal);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
}

.page-news .news-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.page-news .news-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.46;
  filter: saturate(0.82) contrast(1.06);
}

.page-news .news-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, rgba(43, 43, 43, 0.94) 18%, rgba(43, 43, 43, 0.82) 42%, rgba(193, 91, 61, 0.42) 74%, rgba(242, 122, 36, 0.24) 100%),
    repeating-linear-gradient(-24deg, rgba(245, 240, 230, 0.05) 0 1px, transparent 1px 7px);
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 10px;
}

.page-news .news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}

.page-news .news-breadcrumb a {
  color: var(--vital-orange);
  text-decoration: none;
}

.page-news .news-breadcrumb a:hover {
  text-decoration: underline;
}

.page-news .news-eyebrow {
  color: var(--vital-orange);
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-top: 20px;
}

.page-news .news-hero h1 {
  margin: 14px 0 16px;
  max-width: 880px;
  font-family: var(--font-black);
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.16;
  color: var(--cream);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.page-news .news-hero-desc {
  max-width: 720px;
  color: rgba(245, 240, 230, 0.86);
  font-size: 15px;
  line-height: 1.72;
}

.page-news .news-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-news .hero-stat {
  background: rgba(245, 240, 230, 0.1);
  border-left: 4px solid var(--vital-orange);
  padding: 12px 18px;
  backdrop-filter: blur(4px);
}

.page-news .hero-stat strong {
  display: block;
  font-family: var(--font-black);
  color: var(--cream);
  font-size: 28px;
  line-height: 1.1;
}

.page-news .hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.74);
  letter-spacing: 0.1em;
}

.page-news .news-pulse-strip {
  height: 10px;
  background: repeating-linear-gradient(-24deg, var(--vital-orange) 0 14px, var(--electric-blue) 14px 28px, var(--terracotta) 28px 42px, var(--moss-green) 42px 56px);
}

.page-news .updates-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-top: 52px;
  padding-bottom: 32px;
}

.page-news .updates-main {
  min-width: 0;
}

.page-news .filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 6px 0 24px;
}

.page-news .filter-chip {
  appearance: none;
  border: 1px solid rgba(43, 43, 43, 0.24);
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 18px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.page-news .filter-chip:hover {
  transform: translateY(-2px);
  border-color: var(--vital-orange);
}

.page-news .filter-chip.is-active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.page-news .filter-story {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.page-news .timeline-silhouette {
  display: none;
}

.page-news .filter-panels {
  flex: 1;
  min-width: 0;
}

.page-news .filter-panel {
  display: none;
}

.page-news .filter-panel.is-active {
  display: block;
}

.page-news .timeline-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--vital-orange) rgba(43, 43, 43, 0.14);
  scrollbar-width: thin;
}

.page-news .timeline-scroll::-webkit-scrollbar {
  height: 6px;
}

.page-news .timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--vital-orange);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-news .timeline-scroll::-webkit-scrollbar-track {
  background: rgba(43, 43, 43, 0.1);
}

.page-news .timeline-card {
  position: relative;
  flex: 0 0 min(300px, 82vw);
  width: min(300px, 82vw);
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid rgba(43, 43, 43, 0.06);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.page-news .timeline-card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: 0 16px 40px rgba(43, 43, 43, 0.22);
}

.page-news .timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  transform: skewY(-18deg);
  transform-origin: top left;
}

.page-news .timeline-card[data-category~="results"]::before {
  background: var(--vital-orange);
}

.page-news .timeline-card[data-category~="subscribe"]::before {
  background: var(--electric-blue);
}

.page-news .timeline-card[data-category~="tags"]::before {
  background: var(--moss-green);
}

.page-news .timeline-card[data-category~="fix"]::before {
  background: var(--terracotta);
}

.page-news .timeline-card[data-category~="sync"]::before {
  background: var(--light-sand);
}

.page-news .timeline-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.page-news .timeline-stage {
  display: inline-block;
  transform: skewX(-10deg);
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-black);
  font-size: 13px;
  line-height: 1;
  padding: 8px 12px;
  letter-spacing: 0.04em;
}

.page-news .timeline-stage span {
  display: inline-block;
  transform: skewX(10deg);
}

.page-news .timeline-card[data-category~="results"] .timeline-stage {
  background: var(--vital-orange);
  color: var(--charcoal);
}

.page-news .timeline-card[data-category~="subscribe"] .timeline-stage {
  background: var(--electric-blue);
  color: #fff;
}

.page-news .timeline-card[data-category~="tags"] .timeline-stage {
  background: var(--moss-green);
  color: #fff;
}

.page-news .timeline-card[data-category~="fix"] .timeline-stage {
  background: var(--terracotta);
  color: #fff;
}

.page-news .timeline-card[data-category~="sync"] .timeline-stage {
  background: var(--light-sand);
  color: var(--charcoal);
}

.page-news .timeline-time {
  font-size: 12px;
  color: rgba(43, 43, 43, 0.55);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 2px;
}

.page-news .timeline-title {
  font-family: var(--font-black);
  font-size: 19px;
  line-height: 1.38;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.page-news .timeline-title::first-letter {
  font-size: 1.55em;
  float: left;
  line-height: 0.85;
  margin: 2px 6px 0 0;
  color: var(--terracotta);
}

.page-news .timeline-desc {
  font-size: 14px;
  line-height: 1.74;
  color: rgba(43, 43, 43, 0.72);
  margin-bottom: 14px;
}

.page-news .timeline-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px dashed rgba(43, 43, 43, 0.16);
  padding-top: 12px;
}

.page-news .tag-chip--index {
  background: rgba(242, 122, 36, 0.14);
  color: #b3510f;
}

.page-news .tag-chip--subscribe {
  background: rgba(29, 111, 242, 0.12);
  color: #0d4db0;
}

.page-news .tag-chip--tags {
  background: rgba(107, 142, 78, 0.14);
  color: #42672c;
}

.page-news .tag-chip--fix {
  background: rgba(193, 91, 61, 0.14);
  color: #9c4027;
}

.page-news .tag-chip--sync {
  background: rgba(214, 196, 163, 0.36);
  color: #6b5b3d;
}

.page-news .updates-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news .subscribe-card {
  background: var(--charcoal);
  color: var(--cream);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  padding: 18px;
}

.page-news .subscribe-media {
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.page-news .subscribe-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-news .subscribe-body {
  padding: 18px 4px 6px;
}

.page-news .subscribe-body .eyebrow {
  color: var(--vital-orange);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.page-news .subscribe-body h3 {
  font-family: var(--font-black);
  font-size: 22px;
  line-height: 1.3;
  margin: 10px 0 12px;
}

.page-news .subscribe-body p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(245, 240, 230, 0.72);
}

.page-news .subscribe-btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.page-news .hot-reports {
  background: var(--cream);
  border: 1px solid rgba(43, 43, 43, 0.08);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  padding: 22px 20px;
}

.page-news .hot-reports-head {
  margin-bottom: 16px;
}

.page-news .hot-reports-head .eyebrow {
  color: var(--terracotta);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.page-news .hot-reports-head h3 {
  font-family: var(--font-black);
  font-size: 22px;
  line-height: 1.3;
  margin: 4px 0 0;
}

.page-news .hot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .hot-item {
  display: flex;
  gap: 14px;
  padding: 14px 12px;
  background: rgba(214, 196, 163, 0.22);
  color: var(--charcoal);
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.page-news .hot-item:hover {
  border-left-color: var(--vital-orange);
  background: rgba(245, 240, 230, 0.72);
  transform: translateX(4px);
}

.page-news .hot-rank {
  font-family: var(--font-black);
  font-size: 24px;
  color: var(--electric-blue);
  line-height: 1;
}

.page-news .hot-item-body {
  flex: 1;
  min-width: 0;
}

.page-news .hot-cat {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.page-news .hot-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.page-news .news-metrics {
  margin-top: 56px;
  background: var(--cream);
  position: relative;
  padding: 48px 0;
}

.page-news .news-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(110deg, var(--vital-orange) 0%, var(--electric-blue) 55%, var(--moss-green) 100%);
}

.page-news .news-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-news .news-metrics-copy .eyebrow {
  color: var(--electric-blue);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.page-news .news-metrics-copy h2 {
  font-family: var(--font-black);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  margin: 10px 0 14px;
}

.page-news .news-metrics-copy p {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(43, 43, 43, 0.7);
  max-width: 560px;
}

.page-news .metrics-btn {
  margin-top: 14px;
}

.page-news .news-metrics-figure {
  margin: 0;
  position: relative;
  background: var(--charcoal);
  padding: 12px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.page-news .news-metrics-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 3;
  object-fit: cover;
  max-height: 320px;
}

.page-news .news-metrics-figure figcaption {
  display: block;
  padding: 10px 4px 2px;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.58);
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: calc(var(--header-h) + 64px) 0 96px;
  }

  .page-news .hero-stat {
    padding: 14px 22px;
  }

  .page-news .timeline-card {
    flex: 0 0 320px;
    width: 320px;
  }
}

@media (min-width: 1024px) {
  .page-news .updates-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    padding-top: 68px;
    padding-bottom: 48px;
    align-items: start;
  }

  .page-news .updates-side {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .page-news .news-metrics-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
}

@media (min-width: 1200px) {
  .page-news .timeline-silhouette {
    display: block;
    flex: 0 0 224px;
    min-width: 0;
    min-height: 380px;
    align-self: stretch;
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
    background: var(--charcoal);
    margin: 0;
  }

  .page-news .timeline-silhouette img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center top;
  }
}
