.page-news {
  --_news-gold-dark: #8A6D00;
  --_news-red-dark: #A8231A;
  background: var(--navy-950);
  color: var(--cream-50);
}

.page-news .news-cover {
  position: relative;
  padding: 28px 0 52px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  overflow: hidden;
}

.page-news .news-cover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.page-news .news-cover::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  transform: rotate(45deg);
  pointer-events: none;
}

.page-news .news-cover__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 72%);
}

.page-news .news-masthead__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.page-news .news-masthead__issue {
  white-space: nowrap;
}

.page-news .news-masthead__title {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cream-50);
  margin: 0 0 20px;
  max-width: 900px;
}

.page-news .news-masthead__lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.78);
  margin: 0 0 28px;
}

.page-news .news-masthead__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.page-news .news-cover .tag,
.page-news .news-aside .tag {
  color: rgba(250, 246, 239, 0.8);
  background: rgba(250, 246, 239, 0.06);
  border: 1px solid rgba(250, 246, 239, 0.15);
}

.page-news .news-cover .tag--gold,
.page-news .news-aside .tag--gold {
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.page-news .news-cover .tag--red,
.page-news .news-aside .tag--red {
  color: #FF9A8E;
  background: rgba(226, 59, 46, 0.12);
  border-color: rgba(226, 59, 46, 0.5);
}

.page-news .news-cover .tag--soft,
.page-news .news-aside .tag--soft {
  color: rgba(250, 246, 239, 0.7);
  background: rgba(250, 246, 239, 0.05);
  border-color: rgba(250, 246, 239, 0.14);
}

.page-news .news-layout__main .tag {
  color: var(--navy-800);
  background: rgba(16, 42, 67, 0.06);
  border: 1px solid rgba(16, 42, 67, 0.2);
}

.page-news .news-layout__main .tag--gold {
  color: var(--_news-gold-dark);
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.6);
}

.page-news .news-layout__main .tag--red {
  color: var(--_news-red-dark);
  background: rgba(226, 59, 46, 0.08);
  border-color: rgba(226, 59, 46, 0.35);
}

.page-news .news-layout__main .tag--ghost {
  color: var(--slate-400);
  background: transparent;
  border-color: rgba(122, 135, 148, 0.35);
}

.page-news .news-layout-wrap {
  padding-top: 28px;
  padding-bottom: 88px;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
}

.page-news .news-layout__main {
  min-width: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  border-radius: 4px;
  border-top: 4px solid var(--gold-500);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 28px 20px 40px;
}

@media (min-width: 768px) {
  .page-news .news-layout__main {
    padding: 44px 40px 56px;
  }
}

.page-news .news-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(28, 31, 38, 0.12);
}

.page-news .news-section:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.page-news .news-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
  margin-bottom: 28px;
}

.page-news .news-section__index {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-500);
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 4px;
  padding: 7px 8px;
  white-space: nowrap;
}

.page-news .news-section__heading {
  flex: 1 1 240px;
  min-width: 0;
}

.page-news .news-section__title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 6px;
}

@media (min-width: 768px) {
  .page-news .news-section__title {
    font-size: 32px;
  }
}

.page-news .news-section__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(28, 31, 38, 0.62);
  margin: 0;
}

.page-news .news-feature {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(28, 31, 38, 0.08);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-50);
  box-shadow: 0 12px 32px rgba(11, 27, 45, 0.08);
}

@media (min-width: 768px) {
  .page-news .news-feature {
    grid-template-columns: 3fr 2fr;
  }
}

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

.page-news .news-feature__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1200 / 700;
}

.page-news .news-feature__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
}

.page-news .news-feature__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-500);
  border: 1px solid rgba(226, 59, 46, 0.3);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.page-news .news-feature__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  margin: 0 0 12px;
}

@media (min-width: 768px) {
  .page-news .news-feature__title {
    font-size: 26px;
  }
}

.page-news .news-feature__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(28, 31, 38, 0.7);
  margin: 0 0 18px;
}

.page-news .news-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-400);
}

.page-news .schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--navy-950);
}

.page-news .schedule-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(28, 31, 38, 0.1);
  transition: background 0.2s ease;
}

.page-news .schedule-item:hover {
  background: rgba(212, 175, 55, 0.06);
}

.page-news .schedule-item__time {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 56px;
}

.page-news .schedule-item__clock {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-950);
  white-space: nowrap;
}

.page-news .schedule-item__day {
  font-size: 12px;
  color: var(--slate-400);
}

.page-news .schedule-item__info {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.page-news .schedule-item__league {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.page-news .schedule-item__match {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
}

.page-news .schedule-item__match em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-500);
  padding: 0 4px;
}

.page-news .schedule-item > .tag {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}

.page-news .schedule-item--done .schedule-item__clock {
  color: var(--slate-400);
  font-size: 13px;
}

@media (min-width: 640px) {
  .page-news .schedule-item {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
  }

  .page-news .schedule-item__time {
    grid-column: 1;
    grid-row: auto;
  }

  .page-news .schedule-item__info {
    grid-column: 2;
    grid-row: auto;
  }

  .page-news .schedule-item > .tag {
    grid-column: 3;
    grid-row: auto;
    justify-self: auto;
    margin-top: 0;
  }
}

.page-news .news-figure {
  margin: 0 0 28px;
}

.page-news .news-figure__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(28, 31, 38, 0.1);
  border-radius: 5px;
  background: var(--navy-800);
}

.page-news .news-figure__caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.6;
}

.page-news .news-figure--wide {
  margin-bottom: 28px;
}

.page-news .version-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-news .version-item {
  border: 1px solid rgba(28, 31, 38, 0.1);
  border-left: 4px solid var(--gold-500);
  border-radius: 4px;
  background: var(--cream-50);
  padding: 18px 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-news .version-item:hover {
  box-shadow: 0 8px 24px rgba(11, 27, 45, 0.09);
  transform: translateY(-1px);
}

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

.page-news .version-item__number {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-950);
  white-space: nowrap;
}

.page-news .version-item__title {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-news .version-item__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(28, 31, 38, 0.7);
  margin: 0;
}

.page-news .rule-columns {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  columns: 1;
  column-gap: 24px;
  column-rule: 1px solid rgba(28, 31, 38, 0.1);
}

@media (min-width: 640px) {
  .page-news .rule-columns {
    columns: 2;
  }
}

.page-news .rule-item {
  break-inside: avoid;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: var(--cream-50);
  border: 1px solid rgba(28, 31, 38, 0.08);
  border-radius: 4px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-news .rule-item:hover {
  box-shadow: 0 8px 20px rgba(11, 27, 45, 0.07);
  transform: translateY(-2px);
}

.page-news .rule-item__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-500);
  border: 1px solid rgba(226, 59, 46, 0.25);
  border-radius: 2px;
  padding: 2px 6px;
  margin-bottom: 10px;
}

.page-news .rule-item__title {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-news .rule-item__text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(28, 31, 38, 0.68);
  margin: 0;
}

.page-news .news-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(61, 139, 217, 0.08);
  border: 1px solid rgba(61, 139, 217, 0.25);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(28, 31, 38, 0.74);
  margin: 0;
}

.page-news .news-note::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.5em;
  background: var(--blue-400);
  border-radius: 50%;
}

.page-news .service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .page-news .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-news .service-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-50);
  border: 1px solid rgba(28, 31, 38, 0.08);
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.page-news .service-card:hover {
  box-shadow: 0 12px 30px rgba(11, 27, 45, 0.09);
}

.page-news .service-card--plain {
  background: linear-gradient(160deg, var(--cream-50) 0%, rgba(212, 175, 55, 0.07) 100%);
  border-top: 4px solid var(--gold-500);
}

.page-news .service-card__media {
  min-width: 0;
}

.page-news .service-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 700 / 420;
}

.page-news .service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.page-news .service-card__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 10px;
}

.page-news .service-card__title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  margin: 0 0 10px;
}

.page-news .service-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(28, 31, 38, 0.7);
  margin: 0 0 16px;
}

.page-news .service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(28, 31, 38, 0.14);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-400);
}

.page-news .service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .service-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(28, 31, 38, 0.72);
}

.page-news .service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 1px;
  transform: rotate(45deg);
}

.page-news .news-crosslink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 16px 18px;
  background: var(--navy-950);
  border-radius: 4px;
}

.page-news .news-crosslink__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-right: 8px;
}

.page-news .news-crosslink__link {
  color: var(--cream-50);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-news .news-crosslink__link:hover {
  background: rgba(212, 175, 55, 0.14);
  transform: translateY(-1px);
}

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

.page-news .news-aside__sticky {
  position: static;
  display: grid;
  gap: 20px;
  background: var(--navy-800);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: 24px 20px;
}

@media (min-width: 1024px) {
  .page-news .news-aside__sticky {
    position: sticky;
    top: calc(var(--topbar-height) + 20px);
  }
}

.page-news .news-aside__block {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(250, 246, 239, 0.1);
}

.page-news .news-aside__block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.page-news .news-aside__title {
  position: relative;
  margin: 0 0 14px;
  padding-left: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.page-news .news-aside__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 8px;
  height: 8px;
  background: var(--red-500);
  transform: rotate(45deg);
}

.page-news .news-aside__nav {
  display: grid;
  gap: 4px;
}

.page-news .news-aside__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  color: rgba(250, 246, 239, 0.82);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-news .news-aside__link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-300);
}

.page-news .news-aside__num {
  flex-shrink: 0;
  width: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-500);
}

.page-news .news-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-aside__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.75);
}

.page-news .news-aside__arrow {
  flex-shrink: 0;
  font-family: var(--font-mono);
  color: var(--red-500);
}

.page-news .news-aside__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-aside__quote {
  margin-top: 4px;
  padding: 16px 14px;
  background: rgba(11, 27, 45, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-left: 3px solid var(--gold-500);
  border-radius: 4px;
}

.page-news .news-aside__quote p {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.78);
}

.page-news .news-aside__quote-mark {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold-300);
}
