.page-news {
  --card-ok: var(--c-neon);
  --card-feature: var(--c-orange);
  --card-coop: var(--c-gold);
  --card-notice: var(--c-silver);
  position: relative;
  padding-top: calc(var(--header-h) + 20px);
  color: var(--c-white);
  background: var(--c-bg);
}

.page-news .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

/* ===== Hero ===== */
.page-news .news-hero {
  position: relative;
  padding: 40px 0 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 255, 136, 0.06), transparent 38%),
    linear-gradient(320deg, rgba(255, 77, 50, 0.07), transparent 46%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-amber), var(--c-orange));
  z-index: 2;
}

.page-news .news-hero__backdrop {
  position: absolute;
  top: 8px;
  right: -12px;
  font-family: var(--font-data);
  font-weight: 800;
  font-size: clamp(72px, 16vw, 168px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.page-news .news-hero .breadcrumbs {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

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

.page-news .news-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin-bottom: 14px;
}

.page-news .news-hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.page-news .news-hero h1 {
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.page-news .news-hero__copy {
  max-width: 760px;
}

.page-news .news-hero__copy .page-lead {
  color: var(--c-silver);
  font-size: 17px;
  line-height: 1.75;
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 32px;
}

.page-news .news-stat {
  position: relative;
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17, 42, 82, 0.72), rgba(10, 27, 58, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.page-news .news-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--stat-accent, var(--c-neon));
}

.page-news .news-stat--ok {
  --stat-accent: var(--c-neon);
}

.page-news .news-stat--warn {
  --stat-accent: var(--c-orange);
}

.page-news .news-stat--coop {
  --stat-accent: var(--c-gold);
}

.page-news .news-stat__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--c-silver);
  line-height: 1.3;
}

.page-news .news-stat__value {
  display: block;
  font-family: var(--font-data);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.page-news .news-stat__unit {
  display: block;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--c-silver);
  margin-top: 4px;
}

/* ===== Board ===== */
.page-news .news-board {
  padding: 36px 0 64px;
  background: linear-gradient(180deg, rgba(17, 42, 82, 0.18), transparent 80%);
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.page-news .news-filter a {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--c-silver);
  background: rgba(17, 42, 82, 0.72);
  text-decoration: none;
  border: 1px solid rgba(155, 176, 204, 0.14);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-news .news-filter a:hover,
.page-news .news-filter a:focus-visible {
  color: var(--c-white);
  border-color: var(--c-neon);
}

.page-news .news-filter a.is-active {
  color: #0a1b3a;
  background: var(--c-neon);
  border-color: var(--c-neon);
}

.page-news .news-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

/* ===== Aside ===== */
.page-news .news-aside {
  position: relative;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 42, 82, 0.74), rgba(10, 27, 58, 0.4));
  border: 1px solid rgba(155, 176, 204, 0.14);
  overflow: hidden;
}

.page-news .news-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-orange));
}

.page-news .news-aside__kicker {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-silver);
  margin-bottom: 6px;
}

.page-news .news-aside__title {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--c-white);
}

.page-news .news-index {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.page-news .news-index__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(10, 27, 58, 0.6);
  border-left: 3px solid transparent;
  color: var(--c-white);
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.page-news .news-index__link:hover,
.page-news .news-index__link:focus-visible {
  background: rgba(17, 42, 82, 0.92);
  transform: translateX(4px);
}

.page-news .news-index__link--ok {
  border-left-color: var(--c-neon);
}

.page-news .news-index__link--feature {
  border-left-color: var(--c-orange);
}

.page-news .news-index__link--coop {
  border-left-color: var(--c-gold);
}

.page-news .news-index__link--notice {
  border-left-color: var(--c-silver);
}

.page-news .news-index__num {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-silver);
}

.page-news .news-index__name {
  font-size: 15px;
  font-weight: 600;
}

.page-news .news-timeline__title {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-silver);
  margin: 28px 0 16px;
}

.page-news .news-timeline {
  display: grid;
  gap: 14px;
}

.page-news .news-timeline__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 20px;
  text-decoration: none;
  color: var(--c-white);
}

.page-news .news-timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(155, 176, 204, 0.3);
  border: 2px solid transparent;
  z-index: 1;
}

.page-news .news-timeline__item--active::before {
  background: var(--c-neon);
  border-color: rgba(0, 255, 136, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.12);
}

.page-news .news-timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 255, 136, 0.5), rgba(255, 77, 50, 0.3));
  z-index: 0;
}

.page-news .news-timeline__meta strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.page-news .news-timeline__meta small {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-silver);
  letter-spacing: 0.04em;
}

.page-news .news-live {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.16);
}

.page-news .news-live__dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--c-neon);
}

.page-news .news-live__text strong {
  display: block;
  font-size: 14px;
  color: var(--c-white);
}

.page-news .news-live__text small {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-silver);
}

/* ===== Feed ===== */
.page-news .news-feed {
  min-width: 0;
}

.page-news .news-feed__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-silver);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.18);
  background: rgba(0, 255, 136, 0.04);
  margin-bottom: 24px;
}

.page-news .news-feed__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-neon);
}

.page-news .news-group {
  display: grid;
  gap: 20px;
  margin-bottom: 52px;
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.page-news .news-group__bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid rgba(155, 176, 204, 0.2);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.page-news .news-group__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: 0;
}

.page-news .news-group__meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-silver);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ===== Cards ===== */
.page-news .news-card {
  --card-accent: var(--c-silver);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(145deg, rgba(17, 42, 82, 0.86), rgba(10, 27, 58, 0.86));
  border: 1px solid rgba(155, 176, 204, 0.16);
  border-left: 4px solid var(--card-accent);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-news .news-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.page-news .news-card--ok {
  --card-accent: var(--c-neon);
}

.page-news .news-card--feature {
  --card-accent: var(--c-orange);
}

.page-news .news-card--coop {
  --card-accent: var(--c-gold);
}

.page-news .news-card--notice {
  --card-accent: var(--c-silver);
}

.page-news .news-card__seq {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-white);
  padding: 6px 14px 6px 18px;
  background: linear-gradient(135deg, var(--card-accent), rgba(10, 27, 58, 0.85) 150%);
  border-bottom-left-radius: 12px;
}

.page-news .news-card__media {
  background: var(--c-card);
  overflow: hidden;
}

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

.page-news .news-card__content {
  position: relative;
  z-index: 1;
  padding: 20px 20px 24px;
  padding-right: 38px;
}

.page-news .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .news-card__chip {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--c-neon);
}

.page-news .news-card--feature .news-card__chip {
  background: rgba(255, 77, 50, 0.12);
  color: var(--c-orange);
}

.page-news .news-card--coop .news-card__chip {
  background: rgba(255, 199, 0, 0.12);
  color: var(--c-gold);
}

.page-news .news-card--notice .news-card__chip {
  background: rgba(155, 176, 204, 0.14);
  color: var(--c-silver);
}

.page-news .news-card__date {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-silver);
  letter-spacing: 0.05em;
}

.page-news .news-card__title {
  font-family: var(--font-head);
  font-size: clamp(19px, 3vw, 25px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 12px 0 10px;
  color: var(--c-white);
}

.page-news .news-card:not(.news-card--featured) .news-card__title {
  font-size: clamp(17px, 2.4vw, 21px);
}

.page-news .news-card__summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-silver);
  margin-bottom: 4px;
}

.page-news .news-card__expand {
  margin-top: 12px;
  border-top: 1px solid rgba(155, 176, 204, 0.12);
  padding-top: 10px;
}

.page-news .news-card__expand summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-silver);
  list-style: none;
  transition: color 0.2s var(--ease);
}

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

.page-news .news-card__expand summary::before {
  content: "+";
  font-family: var(--font-data);
  font-size: 16px;
  line-height: 1;
  color: var(--card-accent);
  transition: transform 0.2s var(--ease);
}

.page-news .news-card__expand[open] summary::before {
  content: "−";
}

.page-news .news-card__expand summary:hover {
  color: var(--c-white);
}

.page-news .news-card__detail {
  margin-top: 10px;
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.75;
}

.page-news .news-card__link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--c-neon);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-news .news-card__link:hover {
  border-bottom-color: var(--c-neon);
}

/* ===== Support CTA ===== */
.page-news .news-support {
  padding: 24px 0 72px;
}

.page-news .news-support__panel {
  background: linear-gradient(135deg, rgba(255, 77, 50, 0.14), rgba(255, 199, 0, 0.08)), rgba(17, 42, 82, 0.6);
  border: 1px solid rgba(255, 199, 0, 0.22);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.page-news .news-support__panel h2 {
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: 0;
}

.page-news .news-support__panel p {
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
}

.page-news .news-support__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* ===== Responsive ===== */
@media (min-width: 760px) {
  .page-news .news-hero {
    padding: 56px 0 48px;
  }

  .page-news .news-hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
  }

  .page-news .news-stat {
    padding: 18px 16px;
  }

  .page-news .news-stat__value {
    font-size: 36px;
  }

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

  .page-news .news-card--featured .news-card__media {
    height: 100%;
    min-height: 220px;
  }

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

  .page-news .news-card__content {
    padding: 24px 28px 28px;
  }

  .page-news .news-card--featured .news-card__content {
    padding: 28px 32px 32px;
    padding-right: 46px;
  }

  .page-news .news-support__panel {
    padding: 40px 48px;
  }
}

@media (min-width: 980px) {
  .page-news .news-board {
    padding: 48px 0 80px;
  }

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

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

  .page-news .news-group {
    gap: 22px;
    margin-bottom: 60px;
  }

  .page-news .news-support {
    padding: 32px 0 88px;
  }
}
