.page-news {
  --news-card-shadow: 0 8px 30px rgba(10, 31, 68, 0.06);
  --news-card-shadow-hover: 0 14px 40px rgba(10, 31, 68, 0.12);
  --news-orange-soft: rgba(255, 107, 53, 0.12);
  --news-gold-soft: rgba(255, 215, 0, 0.14);
  background: var(--light);
  color: var(--text);
}

.page-news .news-breadcrumb-wrap {
  padding-top: calc(var(--header-h) + 16px);
}

.page-news .news-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 48px 0 56px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -12%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.28) 0%, rgba(255, 107, 53, 0) 70%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.page-news .news-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.16;
  margin: 10px 0 16px;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.page-news .news-hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 24px;
}

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

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.page-news .news-hero-tags .news-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.page-news .news-hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.page-news .news-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.12) 0%, rgba(255, 107, 53, 0.08) 100%);
  pointer-events: none;
}

.page-news .news-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.page-news .news-sidebar-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--news-card-shadow);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.page-news .news-sidebar-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.page-news .news-sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 42px;
  height: 2px;
  background: var(--orange);
}

.page-news .news-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.page-news .news-sidebar-link {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.page-news .news-sidebar-link:hover {
  background: var(--news-orange-soft);
  color: var(--orange);
  padding-left: 18px;
}

.page-news .news-sidebar-note {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
}

.page-news .news-sidebar-note-title {
  font-size: 0.95rem;
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--gold);
}

.page-news .news-sidebar-note p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.page-news .news-stream {
  min-width: 0;
}

.page-news .news-anchor {
  display: block;
  position: relative;
  top: calc(var(--header-h) * -1 - 24px);
  visibility: hidden;
  height: 1px;
  margin-top: -1px;
}

.page-news .news-anchor--offset {
  top: calc(var(--header-h) * -1 - 30px);
}

.page-news .news-section {
  margin-bottom: 64px;
}

.page-news .news-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.page-news .news-section-head .section-index {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}

.page-news .news-section-head .news-section-title {
  font-family: var(--font-headline);
  font-size: 1.55rem;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.page-news .news-section-label {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--news-orange-soft);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--pill);
  padding: 4px 12px;
  white-space: nowrap;
}

.page-news .news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--news-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--news-card-shadow-hover);
}

.page-news .news-card--feature {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

.page-news .news-card-media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-news .news-card-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.page-news .news-card:hover .news-card-media img {
  transform: scale(1.03);
}

.page-news .news-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-news .news-card--plain .news-card-body {
  padding: 28px;
}

.page-news .news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.page-news .news-card-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--pill);
  background: var(--news-orange-soft);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-news .news-card-num {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--border);
}

.page-news .news-card-title {
  font-size: 1.12rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--navy);
  font-weight: 600;
}

.page-news .news-card-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}

.page-news .news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: auto;
}

.page-news .news-card-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.page-news .news-card-link:hover::after {
  transform: translateX(4px);
}

.page-news .news-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--news-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news .news-list-item:hover {
  transform: translateX(6px);
  box-shadow: var(--news-card-shadow-hover);
}

.page-news .news-list-num {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--news-gold-soft);
  border-radius: 14px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.page-news .news-list-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--navy);
}

.page-news .news-list-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 10px;
}

.page-news .news-list-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--orange);
  background: var(--news-orange-soft);
  border-radius: var(--pill);
  padding: 2px 12px;
  font-weight: 600;
}

.page-news .news-platform {
  background: var(--navy-deep);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.page-news .news-platform::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.page-news .news-platform::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-news .news-section-head--light .section-index {
  color: var(--orange);
}

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

.page-news .news-section-head--light .news-section-label {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.28);
}

.page-news .news-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-news .news-timeline-list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 50%, rgba(255, 107, 53, 0.25) 100%);
  opacity: 0.6;
}

.page-news .news-timeline-item {
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
}

.page-news .news-timeline-item:last-child {
  margin-bottom: 0;
}

.page-news .news-timeline-marker {
  position: absolute;
  left: 4px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.page-news .news-timeline-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.page-news .news-timeline-item:hover .news-timeline-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 53, 0.35);
  transform: translateX(4px);
}

.page-news .news-timeline-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.12);
  border-radius: var(--pill);
  padding: 3px 12px;
  margin-bottom: 10px;
}

.page-news .news-timeline-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.page-news .news-timeline-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-news .news-more-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  pointer-events: none;
}

.page-news .news-more-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.page-news .news-more-core {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

.page-news .news-connect {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.page-news .news-connect-inner {
  display: grid;
  gap: 28px;
  text-align: center;
  justify-items: center;
}

.page-news .news-connect-title {
  font-family: var(--font-headline);
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.3;
  text-wrap: balance;
}

.page-news .news-connect-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.page-news .news-connect-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-news [data-reveal]:not(.is-inview) {
  opacity: 0;
  transform: translateY(16px);
}

.page-news [data-reveal].is-inview {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

@media (min-width: 640px) {
  .page-news .news-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .news-card--feature {
    grid-template-columns: 5fr 7fr;
  }

  .page-news .news-card--feature .news-card-media {
    min-height: 100%;
  }

  .page-news .news-card--feature .news-card-media img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-timeline-list::before {
    left: 18px;
  }

  .page-news .news-timeline-item {
    padding-left: 56px;
  }

  .page-news .news-timeline-marker {
    left: 10px;
  }

  .page-news .news-connect-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    justify-items: start;
    align-items: center;
  }

  .page-news .news-connect-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 992px) {
  .page-news .news-breadcrumb-wrap {
    padding-top: calc(var(--header-h-desktop) + 16px);
  }

  .page-news .news-hero {
    padding: 64px 0 72px;
  }

  .page-news .news-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }

  .page-news .news-layout {
    grid-template-columns: 280px 1fr;
    gap: 44px;
    align-items: start;
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .page-news .news-sidebar-inner {
    top: calc(var(--header-h-desktop) + 24px);
  }

  .page-news .news-anchor {
    top: calc(var(--header-h-desktop) * -1 - 28px);
  }

  .page-news .news-anchor--offset {
    top: calc(var(--header-h-desktop) * -1 - 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-card,
  .page-news .news-list-item,
  .page-news .news-timeline-card,
  .page-news .news-timeline-item,
  .page-news .news-hero-tags .news-tag,
  .page-news .news-sidebar-link,
  .page-news .news-card-link::after {
    transition: none;
    transform: none;
  }

  .page-news [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.page-news {
  --reveal-delay: 0.3s;
}
