.page-news {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1F44 0%, #1B3A6B 58%, #081226 100%);
  color: #FFFFFF;
  padding: 36px 0 60px;
  border-bottom: 6px solid var(--c-gold);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.34) 0%, transparent 70%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(45deg, var(--c-gold) 0 12px, transparent 12px 26px);
  opacity: 0.14;
  transform: rotate(-6deg);
  pointer-events: none;
}

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

.page-news .news-hero .breadcrumbs {
  margin-bottom: 30px;
}

.page-news .news-hero .breadcrumbs__link {
  color: rgba(255, 255, 255, 0.66);
}

.page-news .news-hero .breadcrumbs__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.35);
}

.page-news .news-hero .section-eyebrow {
  color: var(--c-gold-light);
  margin-bottom: 10px;
}

.page-news .news-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  margin: 0 0 18px;
  max-width: 760px;
  letter-spacing: -0.01em;
}

.page-news .news-hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 0 28px;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.16);
}

.page-news .news-hero__stats .stat__value {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--c-gold);
  display: block;
  line-height: 1.15;
}

.page-news .news-hero__stats .stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
}

.page-news .category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}

.page-news .category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 3px solid var(--c-border);
  border-top-width: 8px;
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 rgba(10, 31, 68, 0.1);
  padding: 24px 22px 20px;
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.page-news .category-card--multi {
  border-top-color: var(--c-primary-light);
}

.page-news .category-card--subscribe {
  border-top-color: var(--c-gold);
}

.page-news .category-card--docs {
  border-top-color: var(--c-primary);
}

.page-news .category-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 18px 34px rgba(10, 31, 68, 0.18);
  border-color: var(--c-gold);
}

.page-news .category-card__num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-gold);
  margin-bottom: 14px;
}

.page-news .category-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-primary);
  background: var(--c-bg);
  border-radius: var(--radius-pill);
  padding: 3px 12px 4px;
  margin-bottom: 12px;
}

.page-news .category-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-primary);
  margin: 0 0 10px;
}

.page-news .category-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #5A6478;
  margin: 0 0 18px;
  flex-grow: 1;
}

.page-news .category-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
}

.page-news .section-head--split {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .insight-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}

.page-news .insight-index {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .insight-trigger {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: 3px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--c-text);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease), background 0.22s var(--ease);
}

.page-news .insight-trigger:hover {
  border-color: var(--c-gold);
  background: #FFFDF7;
  transform: translateX(4px);
}

.page-news .insight-trigger.is-active {
  border-color: var(--c-gold);
  background: #FFFBF0;
  box-shadow: 6px 6px 0 rgba(212, 175, 55, 0.35);
  transform: translateX(4px);
}

.page-news .insight-trigger__num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.1;
  min-width: 40px;
}

.page-news .insight-trigger__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-news .insight-trigger__cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFFFFF;
  background: var(--c-primary);
  border-radius: var(--radius-pill);
  padding: 3px 12px 4px;
}

.page-news .insight-trigger__cat--injury {
  background: var(--c-red);
}

.page-news .insight-trigger__cat--multi {
  background: var(--c-primary);
}

.page-news .insight-trigger__cat--subscribe {
  background: var(--c-gold);
  color: var(--c-primary);
}

.page-news .insight-trigger__cat--docs {
  background: var(--c-primary-light);
}

.page-news .insight-trigger__title {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-primary);
}

.page-news .insight-trigger__desc {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: #647089;
}

.page-news .insight-preview {
  min-width: 0;
}

.page-news .insight-panel {
  background: #FFFFFF;
  border: 3px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.18);
  overflow: hidden;
}

.page-news .insight-panel[hidden] {
  display: none;
}

.page-news .insight-panel__media {
  background: var(--c-dark);
  line-height: 0;
}

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

.page-news .insight-panel__body {
  padding: 24px 22px 28px;
}

.page-news .insight-panel__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--c-bg);
  color: var(--c-primary);
  border-radius: var(--radius-pill);
  padding: 3px 14px 4px;
  margin-bottom: 12px;
}

.page-news .insight-panel__tag--injury {
  background: #FCE8E8;
  color: var(--c-red);
}

.page-news .insight-panel__tag--multi {
  background: var(--c-bg);
  color: var(--c-primary);
}

.page-news .insight-panel__tag--subscribe {
  background: #FAF3DC;
  color: #8A6D1F;
}

.page-news .insight-panel__tag--docs {
  background: #E8EEF5;
  color: var(--c-primary-light);
}

.page-news .insight-panel .card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--c-primary);
  margin: 0 0 14px;
}

.page-news .insight-panel__body p {
  font-size: 15px;
  line-height: 1.75;
  color: #33415C;
  margin: 0 0 14px;
}

.page-news .insight-bullets {
  list-style: none;
  margin: 20px 0 22px;
  padding: 14px 0 0;
  border-top: 2px solid var(--c-bg);
}

.page-news .insight-bullets li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-bg);
}

.page-news .insight-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  transform: rotate(45deg);
}

.page-news .changelog {
  border-top: 6px solid var(--c-gold);
}

.page-news .changelog .section-eyebrow {
  color: var(--c-gold-light);
}

.page-news .changelog .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .changelog .section-title {
  color: #FFFFFF;
}

.page-news .changelog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-news .timeline-rail::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(to bottom, var(--c-gold) 0%, rgba(212, 175, 55, 0.18) 85%);
}

.page-news .timeline-row {
  position: relative;
  padding: 0 0 38px 56px;
}

.page-news .timeline-row:last-child {
  padding-bottom: 0;
}

.page-news .timeline-row::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--c-gold);
  border-radius: 2px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.page-news .timeline-row__ver {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--c-dark);
  background: var(--c-gold);
  border-radius: var(--radius-pill);
  padding: 2px 13px 3px;
  margin-bottom: 10px;
}

.page-news .timeline-row__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.page-news .timeline-row p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 10px;
}

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

.page-news .timeline-row__list li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.page-news .timeline-row__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--c-gold-light);
  border-radius: 50%;
}

.page-news .changelog-figure {
  position: relative;
  border: 3px solid var(--c-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 18px 18px 0 rgba(212, 175, 55, 0.12);
}

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

.page-news .changelog-figure::after {
  content: "VERSION LOG";
  position: absolute;
  top: 14px;
  left: -36px;
  background: var(--c-red);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 38px;
  transform: rotate(-45deg);
}

@media (min-width: 700px) {
  .page-news .category-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .section-head--split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-news .section-head--split .section-desc {
    max-width: 280px;
    text-align: right;
    margin: 0;
  }

  .page-news .changelog-layout {
    grid-template-columns: 1fr 0.85fr;
  }
}

@media (min-width: 992px) {
  .page-news .insight-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .page-news .insight-preview {
    position: sticky;
    top: 120px;
  }
}

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

  .page-news .news-hero {
    padding-top: 44px;
    padding-bottom: 72px;
  }
}
