.page-news {
  background-color: var(--c-cream);
}

.page-news .container {
  padding-top: 32px;
  padding-bottom: 72px;
}

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

/* ---------- Breadcrumbs ---------- */
.page-news .breadcrumbs {
  margin-bottom: 26px;
}

.page-news .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-slate);
}

.page-news .breadcrumbs a {
  color: var(--c-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .breadcrumbs a:hover {
  color: var(--c-red);
  border-bottom-color: var(--c-red);
}

/* ---------- Hero ---------- */
.page-news .news-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px 28px 28px;
  margin-bottom: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 210, 31, 0.12) 0%, rgba(255, 210, 31, 0) 46%),
    linear-gradient(135deg, var(--c-deep) 0%, var(--c-darkblue) 100%);
  box-shadow: var(--shadow-raised);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -20px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.3) 0%, rgba(255, 210, 31, 0) 70%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--c-yellow) 0%, var(--c-red) 55%, transparent 100%);
}

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

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.page-news .news-hero .section-kicker {
  color: var(--c-yellow);
}

.page-news .news-hero__meta .tag {
  box-shadow: 0 0 0 1px rgba(249, 247, 242, 0.3);
}

.page-news .news-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.25;
  color: var(--c-cream);
  margin: 0 0 16px;
  max-width: 14em;
}

.page-news .news-hero .lede {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(249, 247, 242, 0.82);
  margin: 0;
  max-width: 52em;
}

.page-news .news-hero__copy::after {
  content: "";
  display: block;
  width: 76px;
  height: 6px;
  margin-top: 26px;
  background: linear-gradient(100deg, var(--c-yellow) 0%, var(--c-red) 95%);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-news .news-hero .btn--ghost {
  border: 1px solid rgba(249, 247, 242, 0.45);
  color: var(--c-cream);
  background: transparent;
}

.page-news .news-hero .btn--ghost:hover {
  border-color: var(--c-yellow);
  color: var(--c-yellow);
  background: rgba(255, 210, 31, 0.1);
}

.page-news .news-hero__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 960 / 420;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-darkblue);
}

.page-news .news-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- News Sections ---------- */
.page-news .news-section {
  margin-bottom: 64px;
  scroll-margin-top: 24px;
}

.page-news .news-section__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 18px;
}

.page-news .news-section__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--c-yellow);
}

.page-news .news-section__head .section-kicker {
  display: block;
  margin-bottom: 6px;
}

.page-news .news-section__head .section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.25;
  color: var(--c-deep);
  margin: 0 0 8px;
}

.page-news .news-section__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 46px;
  line-height: 0.85;
  color: var(--c-deep);
  opacity: 0.18;
  flex-shrink: 0;
}

.page-news .section-lede {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-slate);
  margin: 0;
  max-width: 60em;
}

/* ---------- Update Timeline ---------- */
.page-news .update-log {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-news .update-log::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-yellow) 0%, var(--c-rock) 72%);
}

.page-news .update-log__item {
  position: relative;
  padding-left: 34px;
  margin-bottom: 22px;
}

.page-news .update-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  background: var(--c-cream);
  border: 1px solid rgba(13, 31, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news .update-card:hover {
  border-color: rgba(255, 210, 31, 0.9);
  box-shadow: var(--shadow-raised);
}

.page-news .update-card__mark {
  position: absolute;
  left: -34px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-yellow);
  border: 3px solid var(--c-deep);
  box-shadow: 0 0 0 4px rgba(13, 31, 60, 0.08);
  box-sizing: border-box;
}

.page-news .update-card__mark--red {
  background: var(--c-red);
  border-color: var(--c-red);
  box-shadow: 0 0 0 4px rgba(230, 51, 43, 0.18);
}

.page-news .update-card__mark--yellow {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.3);
}

.page-news .update-card__mark--moss {
  background: var(--c-moss);
  border-color: var(--c-moss);
  box-shadow: 0 0 0 4px rgba(91, 110, 90, 0.18);
}

.page-news .update-card__mark--clay {
  background: var(--c-clay);
  border-color: var(--c-clay);
  box-shadow: 0 0 0 4px rgba(178, 93, 63, 0.18);
}

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

.page-news .update-card__time {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-slate);
}

.page-news .update-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  line-height: 1.35;
  color: var(--c-deep);
  margin: 0 0 12px;
}

.page-news .update-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-ink);
  margin: 0 0 12px;
  max-width: 68ch;
}

.page-news .update-card__scope {
  font-size: 13px !important;
  color: var(--c-slate) !important;
  letter-spacing: 0.02em;
}

.page-news .update-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.page-news .btn--sm {
  padding: 6px 14px;
  font-size: 13px;
}

.page-news .update-card__media {
  aspect-ratio: 760 / 400;
  margin: 18px 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-darkblue);
}

.page-news .update-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Categories ---------- */
.page-news .category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-news .category-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--c-cream);
  border: 1px solid rgba(13, 31, 60, 0.08);
  border-top: 5px solid var(--c-clay);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-news .category-card:nth-child(2) {
  border-top-color: var(--c-red);
}

.page-news .category-card:nth-child(3) {
  border-top-color: var(--c-yellow);
}

.page-news .category-card:nth-child(4) {
  border-top-color: var(--c-moss);
}

.page-news .category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-raised);
  border-color: rgba(13, 31, 60, 0.18);
}

.page-news .category-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-news .category-card__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--c-deep);
  opacity: 0.16;
}

.page-news .category-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-deep);
  margin: 0 0 8px;
}

.page-news .category-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0 0 14px;
  flex: 1 0 auto;
}

.page-news .category-card__media {
  aspect-ratio: 640 / 400;
  margin: 4px 0 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-rock);
}

.page-news .category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .category-card__links {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(13, 31, 60, 0.08);
  padding-top: 12px;
}

.page-news .category-card__links li {
  margin: 0;
}

.page-news .category-card__links a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .category-card__links a:hover {
  color: var(--c-red);
  border-bottom-color: var(--c-red);
}

/* ---------- Flash / Live Data ---------- */
.page-news .flash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .flash-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-news .flash-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--c-rock);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.page-news .flash-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-yellow);
}

.page-news .flash-item__mark {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 4px rgba(230, 51, 43, 0.15);
}

.page-news .flash-item__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--c-deep);
  margin-bottom: 6px;
}

.page-news .flash-item p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0;
}

.page-news .flash-side {
  position: relative;
  padding: 30px 28px;
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-darkblue) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-raised);
  overflow: hidden;
}

.page-news .flash-side::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.22) 0%, rgba(255, 210, 31, 0) 70%);
  pointer-events: none;
}

.page-news .flash-side .section-kicker {
  color: var(--c-yellow);
}

.page-news .flash-side h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.32;
  color: var(--c-cream);
  margin: 8px 0 12px;
}

.page-news .flash-side p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(249, 247, 242, 0.78);
  margin: 0 0 18px;
}

.page-news .flash-side__media {
  aspect-ratio: 720 / 460;
  margin: 0 0 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-darkblue);
  position: relative;
  z-index: 1;
}

.page-news .flash-side__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .flash-side .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */
@media (min-width: 680px) {
  .page-news .news-hero h1 {
    font-size: 36px;
  }

  .page-news .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-news .flash-grid {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }
}

@media (min-width: 920px) {
  .page-news .news-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    padding: 44px 44px 40px;
    align-items: center;
  }

  .page-news .news-hero__media {
    aspect-ratio: 960 / 420;
  }

  .page-news .news-section__num {
    font-size: 58px;
  }

  .page-news .update-log__item {
    padding-left: 44px;
  }

  .page-news .update-card {
    padding: 32px 32px 28px;
  }

  .page-news .update-card__mark {
    left: -44px;
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1080px) {
  .page-news .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .page-news .flash-list {
    gap: 16px;
  }
}
