.page-news {
  --news-paper: #141417;
  --news-paper-border: #2E2E33;
  --news-accent-alpha: rgba(224, 42, 35, 0.16);
  --news-gold-alpha: rgba(201, 160, 99, 0.3);
  background:
    radial-gradient(1200px 520px at 88% -4%, rgba(224, 42, 35, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(224, 42, 35, 0.06) 0%, transparent 28%);
}

.page-news .breadcrumbs {
  margin: 0 0 28px;
  padding-top: 24px;
  color: var(--text-mid);
  font-size: 14px;
}

.page-news .news-head {
  display: grid;
  gap: 36px;
  position: relative;
  padding: 28px 0 68px;
}

.page-news .news-head-main {
  position: relative;
  padding: 8px 0 18px;
}

.page-news .news-head-main::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -2%;
  bottom: -2px;
  height: 22px;
  background: linear-gradient(100deg, var(--primary-red) 0%, rgba(224, 42, 35, 0.24) 38%, transparent 78%);
  clip-path: polygon(0 42%, 96% 0, 100% 76%, 8% 100%);
  opacity: 0.5;
}

.page-news .news-title {
  margin: 14px 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-high);
  position: relative;
  display: inline-block;
  max-width: 12em;
}

.page-news .news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 3px;
  width: 76px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-gold) 80%, transparent);
}

.page-news .news-intro {
  margin-top: 26px;
  max-width: 62em;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
}

.page-news .news-head-side {
  border-left: 2px solid var(--border-line);
  padding-left: 20px;
  position: relative;
}

.page-news .news-head-side::before {
  content: "INDEX";
  position: absolute;
  left: 20px;
  top: -12px;
  background: var(--primary-red);
  color: var(--text-high);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 2px 8px;
  font-weight: 700;
}

.page-news .news-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.page-news .news-stat-card {
  background: linear-gradient(145deg, var(--surface-dark), var(--primary-black));
  border: 1px solid var(--border-line);
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}

.page-news .news-stat-card::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, transparent 44%, var(--news-accent-alpha) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.page-news .news-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
  color: var(--text-high);
  letter-spacing: -0.02em;
}

.page-news .news-stat-num::after {
  content: "+";
  color: var(--primary-red);
  font-size: 0.7em;
  margin-left: 2px;
}

.page-news .news-stat-label {
  display: block;
  margin-top: 8px;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.4;
}

.page-news .news-legend {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
}

.page-news .news-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
}

.page-news .news-legend .legend-item dt {
  margin: 0;
}

.page-news .legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 1px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex: none;
}

.page-news .news-filter-sticky {
  position: sticky;
  top: 58px;
  z-index: 40;
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.page-news .news-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 12px 0;
}

.page-news .news-filter .filter-btn {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.page-news .news-filter .filter-btn:hover {
  color: var(--text-high);
  border-color: var(--border-line);
}

.page-news .news-filter .filter-btn.is-active {
  color: var(--text-high);
  border-color: rgba(224, 42, 35, 0.7);
  background: linear-gradient(135deg, rgba(224, 42, 35, 0.28), rgba(224, 42, 35, 0.06));
}

.page-news .news-pool {
  padding-top: 8px;
}

.page-news .news-zone {
  padding: 64px 0 20px;
  position: relative;
}

.page-news .news-zone + .news-zone {
  border-top: 1px solid var(--border-line);
}

.page-news .news-zone-head {
  margin-bottom: 32px;
}

.page-news .news-zone-title-group {
  position: relative;
  padding-left: 0;
}

.page-news .news-zone-title {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--text-high);
  margin: 6px 0 0;
  display: inline-block;
  position: relative;
}

.page-news .news-zone-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 6px;
  background: var(--primary-red);
  margin-right: 14px;
  vertical-align: middle;
  transform: skewX(-18deg);
}

.page-news .section-note {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-low);
  border-right: 1px solid var(--primary-red);
  padding-right: 8px;
  margin-top: 4px;
}

.page-news .news-feature-grid,
.page-news .news-card-grid {
  display: grid;
  gap: 20px;
}

.page-news .news-card {
  background: linear-gradient(160deg, var(--surface-dark), var(--primary-black));
  border: 1px solid var(--border-line);
  border-left: 3px solid rgba(224, 42, 35, 0.4);
  box-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.04),
    3px 3px 0 rgba(224, 42, 35, 0.08),
    8px 12px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}

.page-news .news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 42, 35, 0.6);
  border-left-color: var(--primary-red);
  box-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.05),
    5px 5px 0 rgba(224, 42, 35, 0.14),
    14px 20px 32px rgba(0, 0, 0, 0.42);
}

.page-news .news-card-media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-news .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.page-news .news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 42, 35, 0) 52%, rgba(224, 42, 35, 0.18) 100%);
  pointer-events: none;
}

.page-news .news-card-body {
  padding: 22px 20px 20px;
}

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

.page-news .news-meta .tag {
  flex: none;
}

.page-news .news-week {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-mid);
  border-left: 2px solid var(--primary-red);
  padding-left: 7px;
  line-height: 1.4;
  max-height: 46px;
  overflow: hidden;
}

.page-news .news-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--text-high);
  margin: 0 0 12px;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid rgba(201, 160, 99, 0.7);
}

.page-news .news-card-title-xl {
  font-size: 23px;
  line-height: 1.26;
  border-left-color: var(--primary-red);
}

.page-news .news-card-excerpt {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.page-news .news-more {
  margin-top: 12px;
  border: 0;
}

.page-news .news-more summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--accent-gold);
  font-size: 13px;
  padding: 5px 0;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

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

.page-news .news-more summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 15px;
  text-align: center;
  border: 1px solid var(--accent-gold);
  margin-right: 8px;
  font-weight: 700;
  transition: transform 0.25s var(--ease);
}

.page-news .news-more[open] summary::before {
  transform: rotate(45deg);
}

.page-news .news-more summary:hover {
  color: var(--text-high);
  border-bottom-color: var(--accent-gold);
}

.page-news .news-more-copy {
  margin: 12px 0 0 28px;
  padding: 12px 14px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(224, 42, 35, 0.5);
}

.page-news .news-zone-link {
  margin: 26px 0 0;
  font-size: 14px;
}

.page-news .news-zone-link a {
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-gold);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-news .news-zone-link a:hover {
  color: var(--text-high);
  border-color: var(--text-high);
}

.page-news .is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .page-news .news-head {
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 48px;
  }

  .page-news .news-head-side {
    margin-top: 30px;
    padding-left: 28px;
  }

  .page-news .news-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-card-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 5fr 6fr;
  }

  .page-news .news-card-feature .news-card-media {
    height: 100%;
    min-height: 300px;
  }

  .page-news .news-card-feature .news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-news .news-card-title-xl {
    font-size: 27px;
  }

  .page-news .news-filter-sticky {
    top: 68px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-head {
    grid-template-columns: 1.5fr 0.8fr;
  }

  .page-news .news-title {
    font-size: 52px;
  }

  .page-news .news-stat-num {
    font-size: 42px;
  }

  .page-news .news-zone {
    padding: 88px 0 28px;
  }

  .page-news .news-zone-title {
    font-size: 34px;
  }

  .page-news .news-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-news .news-card-feature {
    grid-column: 1 / -1;
  }

  .page-news .news-card-feature .news-card-media {
    min-height: 340px;
  }

  .page-news .news-card-body {
    padding: 24px 24px 22px;
  }
}
