.page-news {
  background: var(--bg-deep);
  color: var(--text-mid);
  overflow-x: hidden;
}

.page-news__hero {
  position: relative;
  padding: 32px 0 52px;
  background:
    radial-gradient(720px 280px at 88% -4%, rgba(0, 229, 255, 0.16), transparent 62%),
    radial-gradient(560px 240px at 0% 22%, rgba(255, 61, 0, 0.1), transparent 58%);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
}

.page-news__hero .breadcrumb {
  margin-bottom: 30px;
}

.page-news__hero-grid {
  display: grid;
  gap: 28px;
}

.page-news__intro .section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.page-news__intro h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--text-light);
}

.page-news__intro p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.85;
}

.page-news__status {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(255, 61, 0, 0.06)),
    var(--bg-card);
  padding: 24px;
}

.page-news__status::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-blue);
}

.page-news__status-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--silver);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-news__signal {
  color: var(--cyan);
}

.page-news__live-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.6);
  animation: page-news-pulse 1.8s infinite;
}

@keyframes page-news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 61, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
  }
}

.page-news__status-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.page-news__status-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
}

.page-news__status-item dt {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--cyan);
}

.page-news__status-item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.page-news__featured,
.page-news__catalog,
.page-news__special,
.page-news__timeline {
  padding: 56px 0 64px;
}

.page-news__featured {
  position: relative;
}

.page-news .section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  color: var(--text-light);
}

.page-news__featured-grid {
  display: grid;
  gap: 20px;
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 192, 192, 0.14);
  background: var(--bg-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.38);
  box-shadow: var(--shadow-cyan);
}

.featured-card__media {
  overflow: hidden;
  background: var(--bg-elevated);
  min-height: 180px;
}

.featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-card__media img {
  transform: scale(1.03);
}

.featured-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.featured-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.featured-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.35;
  color: var(--text-light);
}

.featured-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.featured-card--main {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.featured-card--main .featured-card__media {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}

.featured-card--side {
  justify-content: center;
  border-right: 3px solid var(--red);
}

.featured-card--side::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  width: 58px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--grad-red);
}

.featured-card--side .featured-card__body {
  padding: 30px 26px;
}

.featured-card--side .featured-card__body h3 {
  font-size: 20px;
}

.featured-card--wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(100deg, rgba(0, 229, 255, 0.12), rgba(255, 61, 0, 0.06)),
    var(--bg-card);
  border-left: 4px solid var(--cyan);
}

.featured-card--wide::after {
  content: "24H";
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 229, 255, 0.28);
  pointer-events: none;
}

@media (max-width: 479px) {
  .featured-card--wide .featured-card__body {
    padding-bottom: 36px;
  }
}

.page-news__catalog {
  position: relative;
  background:
    radial-gradient(640px 320px at 100% 40%, rgba(0, 229, 255, 0.1), transparent 60%),
    var(--bg-deep);
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.page-news__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news__tabs [role="tab"] {
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(192, 192, 192, 0.3);
  background: transparent;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-news__tabs [role="tab"]:hover {
  border-color: var(--cyan);
  color: var(--text-light);
}

.page-news__tabs [role="tab"][aria-selected="true"] {
  border-color: transparent;
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-cyan);
}

.page-news [role="tabpanel"] {
  display: block;
}

.page-news .tab-shell[data-tab-initialized="true"] [role="tabpanel"] {
  display: none;
}

.page-news .tab-shell[data-tab-initialized="true"] [role="tabpanel"]:not([hidden]) {
  display: block;
}

.page-news__panel-wrap {
  display: grid;
  gap: 24px;
}

.page-news__panel-main {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  padding: 6px 24px;
}

.article-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
  transition: padding-left 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.article-row:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .article-row:hover {
    padding-left: 14px;
    background: rgba(0, 229, 255, 0.04);
    border-radius: var(--radius-md);
  }
}

.article-row__index {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.article-row__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.article-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--text-light);
}

.article-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.page-news__panel-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.data-chart-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
}

.data-chart-figure img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
}

.data-chart-figure figcaption {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mid);
}

.page-news__aside-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--trans-blue);
  font-size: 14px;
  line-height: 1.7;
}

.page-news__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--trans-blue);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-news__tag--red {
  background: rgba(255, 61, 0, 0.12);
  color: #ff8a50;
}

.page-news__tag--guide {
  background: rgba(192, 192, 192, 0.12);
  color: var(--silver);
}

.page-news__loadmore {
  padding: 22px 0 26px;
  display: flex;
  justify-content: center;
}

.guide-shortcut {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(255, 61, 0, 0.08)),
    var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.guide-shortcut .section-eyebrow {
  display: block;
  margin-bottom: 8px;
}

.guide-shortcut h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--text-light);
}

.guide-shortcut p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
}

.page-news__special {
  padding: 64px 0;
}

.special-card {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(192, 192, 192, 0.14);
  background: var(--bg-card);
}

.special-card__media {
  overflow: hidden;
  min-height: 240px;
}

.special-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.special-card__body {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.special-card__body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  color: var(--text-light);
}

.special-card__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.special-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.special-card__body li {
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
  font-size: 15px;
}

.special-card__body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.page-news__timeline {
  padding-bottom: 72px;
}

.page-news__timeline-grid {
  display: grid;
  gap: 16px;
}

.timeline-block {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border-left: 4px solid var(--cyan);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-block:nth-child(even) {
  border-left-color: var(--red);
}

.timeline-block:hover {
  transform: translateX(6px);
}

.timeline-block h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-light);
}

.timeline-block p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
}

.page-news__timeline-status {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
}

.timeline-block:nth-child(even) .page-news__timeline-status {
  background: rgba(255, 61, 0, 0.1);
  color: #ff8a50;
}

.page-news__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-news__cta-row .btn--primary {
  box-shadow: var(--shadow-red);
}

@media (min-width: 768px) {
  .page-news__hero {
    padding: 44px 0 60px;
  }

  .page-news__hero-grid {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: center;
    gap: 40px;
  }

  .page-news__status {
    padding: 30px;
  }

  .page-news__featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card--main {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .featured-card--main .featured-card__media {
    width: 46%;
    min-height: 320px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  }

  .featured-card--main .featured-card__body {
    flex: 1;
    justify-content: center;
    padding: 32px;
  }

  .featured-card--side {
    grid-column: span 1;
  }

  .featured-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .featured-card--wide .featured-card__body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .featured-card--wide .featured-card__body h3 {
    flex-basis: 100%;
  }

  .featured-card--wide .featured-card__body p {
    max-width: 480px;
  }

  .page-news__panel-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .page-news__panel-aside {
    position: sticky;
    top: 96px;
  }

  .data-chart-figure img {
    min-height: 220px;
  }

  .special-card {
    grid-template-columns: 1.1fr 1fr;
  }

  .special-card__body {
    padding: 44px 40px;
  }

  .page-news__timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-news__cta-row {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .page-news__featured-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(0, auto));
  }

  .featured-card--main {
    grid-column: span 7;
    grid-row: span 2;
    flex-direction: column;
  }

  .featured-card--main .featured-card__media {
    width: 100%;
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
  }

  .featured-card--main .featured-card__body {
    padding: 30px 28px;
  }

  .featured-card--side {
    grid-column: span 5;
  }

  .featured-card--side .featured-card__body {
    padding: 34px 30px;
  }

  .featured-card--wide {
    grid-column: 1 / -1;
  }

  .page-news__panel-wrap {
    grid-template-columns: 1.45fr 0.55fr;
    column-gap: 32px;
  }

  .special-card {
    grid-template-columns: 1.2fr 0.9fr;
  }

  .page-news__timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news__live-dot {
    animation: none;
  }

  .featured-card,
  .timeline-block {
    transition: none;
  }

  .featured-card:hover,
  .timeline-block:hover {
    transform: none;
  }
}
