.page-news {
  --news-line: rgba(10, 46, 92, 0.14);
  --news-num: rgba(10, 46, 92, 0.16);
  --news-text-dim: rgba(6, 29, 58, 0.72);
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 107, 0, 0.92) 0 10px, rgba(255, 107, 0, 0) 10px),
    linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: #fff;
  padding: 72px 0 64px;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 340px;
  height: 260px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 14px);
  transform: rotate(-8deg);
  opacity: 0.55;
  pointer-events: none;
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 1;
}

.page-news .news-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-hero .breadcrumb a {
  color: var(--highlight-yellow);
  text-decoration: none;
}

.page-news .news-hero .breadcrumb a:hover {
  color: #fff;
}

.page-news .news-hero-kicker {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight-yellow);
  margin-bottom: 14px;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  max-width: 11em;
}

.page-news .news-hero-desc {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.page-news .news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-hero-meta .chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.page-news .news-hero-meta .chip.is-yellow {
  background: rgba(255, 215, 0, 0.16);
  border-color: rgba(255, 215, 0, 0.55);
  color: var(--highlight-yellow);
}

.page-news .news-feed {
  padding: 64px 0 48px;
  background: var(--off-white);
}

.page-news .news-feed .section-head,
.page-news .topics-section .section-head {
  margin-bottom: 28px;
}

.page-news .filter-area {
  position: relative;
}

.page-news .filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-news .filter-bar::-webkit-scrollbar {
  display: none;
}

.page-news .filter-title {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--rock-gray);
  white-space: nowrap;
  padding-right: 4px;
  text-transform: uppercase;
}

.page-news .filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  min-height: 38px;
  border: 1px solid rgba(10, 46, 92, 0.18);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.page-news .filter-chip:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.page-news .filter-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .filter-area:has(#news-cat-all:checked) label[for="news-cat-all"],
.page-news .filter-area:has(#news-cat-brief:checked) label[for="news-cat-brief"],
.page-news .filter-area:has(#news-cat-replay:checked) label[for="news-cat-replay"],
.page-news .filter-area:has(#news-cat-data:checked) label[for="news-cat-data"],
.page-news .filter-area:has(#news-cat-tool:checked) label[for="news-cat-tool"] {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  box-shadow: var(--shadow-colored);
}

.page-news .news-list {
  display: grid;
  gap: 18px;
}

.page-news .news-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--news-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-news .news-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: var(--accent-orange);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.92;
  pointer-events: none;
}

.page-news .filter-area:has(#news-cat-brief:checked) .news-item:not([data-cat="brief"]),
.page-news .filter-area:has(#news-cat-replay:checked) .news-item:not([data-cat="replay"]),
.page-news .filter-area:has(#news-cat-data:checked) .news-item:not([data-cat="data"]),
.page-news .filter-area:has(#news-cat-tool:checked) .news-item:not([data-cat="tool"]) {
  display: none;
}

.page-news .news-item-num {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--news-num);
}

.page-news .news-item-content {
  min-width: 0;
}

.page-news .news-item-media {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(10, 46, 92, 0.08);
  margin-bottom: 14px;
}

.page-news .news-item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .news-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 10px;
}

.page-news .news-item-meta-text {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--rock-gray);
}

.page-news .news-item-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-news .news-item-duration i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(192, 112, 64, 0.5);
  animation: news-pulse 2.2s infinite;
}

@keyframes news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 112, 64, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(192, 112, 64, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 112, 64, 0);
  }
}

.page-news .news-item-content h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--primary-blue);
}

.page-news .news-item-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--news-text-dim);
  margin: 0 0 8px;
}

.page-news .hover-reveal {
  display: none;
  padding: 10px 12px;
  margin: 4px 0 8px;
  border-left: 2px solid var(--accent-orange);
  background: rgba(255, 107, 0, 0.06);
  font-size: 13px;
  line-height: 1.7;
  color: var(--primary-blue);
}

@media (hover: hover) {
  .page-news .news-item:hover .hover-reveal {
    display: block;
  }
}

.page-news .news-item-more {
  margin-top: 10px;
}

.page-news .news-item-more summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-orange);
  list-style: none;
}

.page-news .news-item-more summary::-webkit-details-marker {
  display: none;
}

.page-news .news-item-more summary::before {
  content: "+";
  font-size: 16px;
  line-height: 1;
}

.page-news .news-item-more[open] summary::before {
  content: "–";
}

.page-news .news-item-more p {
  margin: 10px 0 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-text-dim);
  background: rgba(10, 46, 92, 0.04);
  border: 1px solid var(--news-line);
  border-radius: 2px;
}

.page-news .chip-brief {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--accent-orange);
}

.page-news .chip-replay {
  background: rgba(10, 46, 92, 0.08);
  border-color: rgba(10, 46, 92, 0.16);
  color: var(--primary-blue);
}

.page-news .chip-data {
  background: rgba(74, 107, 58, 0.12);
  border-color: rgba(74, 107, 58, 0.24);
  color: var(--moss-green);
}

.page-news .chip-tool {
  background: rgba(255, 215, 0, 0.22);
  border-color: rgba(200, 160, 0, 0.32);
  color: #6b5500;
}

.page-news .news-item-featured {
  background:
    linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
  border-color: var(--primary-blue);
}

.page-news .news-item-featured .news-item-num {
  color: rgba(255, 215, 0, 0.5);
}

.page-news .news-item-featured .news-item-content h3 {
  color: #fff;
}

.page-news .news-item-featured .news-item-desc {
  color: rgba(255, 255, 255, 0.82);
}

.page-news .news-item-featured .news-item-meta-text {
  color: rgba(255, 255, 255, 0.68);
}

.page-news .news-item-featured .hover-reveal {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--highlight-yellow);
  color: rgba(255, 255, 255, 0.9);
}

.page-news .news-item-featured .news-item-more summary {
  color: var(--highlight-yellow);
}

.page-news .news-item-featured .news-item-more p {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.page-news .topics-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.14), transparent 36%),
    linear-gradient(180deg, var(--deep-blue), var(--primary-blue));
  color: #fff;
  padding: 64px 0 72px;
}

.page-news .topics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(135deg, var(--accent-orange) 0 18px, transparent 18px 36px);
  opacity: 0.7;
}

.page-news .topics-section .section-kicker {
  color: var(--highlight-yellow);
}

.page-news .topics-section .section-title {
  color: #fff;
}

.page-news .topics-section .section-note {
  color: rgba(255, 255, 255, 0.7);
}

.page-news .topics-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.page-news .topic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.page-news .topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: var(--shadow-raised);
}

.page-news .topic-media {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: rgba(10, 46, 92, 0.4);
}

.page-news .topic-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .topic-content {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-news .topic-index {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: var(--highlight-yellow);
  margin-bottom: 8px;
  opacity: 0.9;
}

.page-news .topic-content h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #fff;
}

.page-news .topic-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}

.page-news .topic-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.page-news .topics-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.page-news .topics-section .btn-outline:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}

.page-news .updates-cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(6, 29, 58, 0.1) 0 12px, transparent 12px),
    linear-gradient(105deg, var(--accent-orange) 0 55%, #FF8A3C 100%);
  padding: 64px 0;
}

.page-news .updates-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-18deg, rgba(6, 29, 58, 0.05) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.page-news .updates-cta-inner {
  position: relative;
  display: grid;
  gap: 30px;
}

.page-news .updates-cta .section-kicker {
  color: rgba(6, 29, 58, 0.72);
}

.page-news .updates-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
  color: var(--deep-blue);
  margin: 0 0 12px;
}

.page-news .updates-cta p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(6, 29, 58, 0.85);
  max-width: 660px;
  margin: 0;
}

.page-news .updates-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-news .contact-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(6, 29, 58, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-blue);
}

.page-news .contact-line strong {
  font-family: var(--font-data);
  font-size: 14px;
}

.page-news .updates-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.page-news .updates-actions .btn-primary {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: #fff;
}

.page-news .updates-actions .btn-primary:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.page-news .updates-actions .btn-outline {
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}

.page-news .updates-actions .btn-outline:hover {
  background: var(--deep-blue);
  color: #fff;
}

@media (min-width: 760px) {
  .page-news .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .page-news .news-item-featured {
    grid-column: 1 / -1;
  }

  .page-news .updates-cta-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: center;
    gap: 40px;
  }

  .page-news .updates-actions {
    flex-direction: column;
    margin-top: 0;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 96px 0 88px;
  }

  .page-news .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .topic-card-wide {
    grid-column: 1 / -1;
  }

  .page-news .topic-card-wide .topic-media {
    aspect-ratio: 21 / 8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item-duration i {
    animation: none;
  }

  .page-news .topic-card,
  .page-news .news-item,
  .page-news .filter-chip {
    transition: none;
  }
}
