.page-news {
  --news-timeline-line: linear-gradient(180deg, var(--color-gold) 0%, var(--color-blue) 55%, var(--color-purple) 100%);
  --news-card-shadow: 0 8px 30px rgba(11, 11, 13, 0.06);
  --news-card-shadow-hover: 0 14px 42px rgba(11, 11, 13, 0.11);
  overflow-x: hidden;
}

.page-news .news-hero-wrap {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}

.page-news .news-hero-media {
  position: absolute;
  inset: 0;
}

.page-news .news-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}

.page-news .news-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.72) 0%, rgba(26, 42, 108, 0.45) 55%, rgba(61, 30, 92, 0.62) 100%);
}

.page-news .news-hero-slice {
  position: absolute;
  left: -8%;
  bottom: -12%;
  width: 52%;
  height: 34%;
  background: var(--color-red);
  clip-path: polygon(0 22%, 100% 0, 82% 100%, 0 100%);
  opacity: 0.88;
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 2;
  padding: 112px 20px 60px;
}

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

.page-news .news-kicker {
  margin: 0 0 12px;
  font-family: var(--font-number);
  letter-spacing: 0.18em;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-news .news-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.page-news .news-hero-desc {
  max-width: 680px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(244, 244, 240, 0.9);
  margin: 0 0 22px;
}

.page-news .news-hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.page-news .news-section {
  padding: 56px 0;
}

.page-news .news-feed {
  background: var(--color-white);
}

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

.page-news .news-head--light {
  color: var(--color-white);
}

.page-news .news-head--light .section-desc {
  color: rgba(244, 244, 240, 0.72);
}

.page-news .news-head--light .section-title {
  color: var(--color-white);
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .news-filter-label {
  font-size: 0.8125rem;
  color: var(--color-gray);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-news .news-filter .tag {
  border-radius: 999px;
  text-decoration: none;
}

.page-news .news-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 28px;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 22px;
  bottom: 26px;
  width: 2px;
  background: var(--news-timeline-line);
}

.page-news .news-timeline-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  position: relative;
  scroll-margin-top: 80px;
}

.page-news .news-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-news .news-node-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.18), 0 4px 14px rgba(229, 9, 20, 0.28);
}

.page-news .news-node-label {
  font-size: 0.6875rem;
  color: var(--color-gray);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-news .news-card {
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.06);
  border-radius: var(--radius-large);
  padding: 20px;
  box-shadow: var(--news-card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.page-news .news-date {
  font-size: 0.8125rem;
  color: var(--color-gray);
  font-family: var(--font-number);
}

.page-news .news-card-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-medium);
  object-fit: cover;
  margin-bottom: 16px;
  display: block;
}

.page-news .news-card h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.page-news .news-card > p {
  margin: 0 0 12px;
  color: #444;
  line-height: 1.65;
}

.page-news .news-expand {
  border-top: 1px dashed rgba(11, 11, 13, 0.12);
  padding-top: 12px;
  margin-top: 6px;
}

.page-news .news-expand summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-red);
  user-select: none;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.page-news .news-expand summary::before {
  content: '+';
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.1);
  color: var(--color-red);
  align-items: center;
  justify-content: center;
  font-family: var(--font-number);
}

.page-news .news-expand[open] summary::before {
  content: '−';
}

.page-news .news-expand .details-body {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.page-news .news-expand .details-body p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.9375rem;
  color: #444;
}

.page-news .news-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-news .news-card-link {
  color: var(--color-black);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
  font-size: 0.875rem;
}

.page-news .news-update-count {
  font-family: var(--font-number);
  font-size: 0.75rem;
  color: var(--color-gray);
}

.page-news .news-log {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-blue) 62%, var(--color-purple) 100%);
  color: var(--color-white);
}

.page-news .log-grid {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-news .log-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.page-news .log-round {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-gold);
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: var(--radius-pill);
  height: fit-content;
  padding: 8px 10px;
  text-align: center;
  letter-spacing: 0.06em;
}

.page-news .log-card {
  background: rgba(244, 244, 240, 0.06);
  border: 1px solid rgba(244, 244, 240, 0.1);
  border-radius: var(--radius-medium);
  padding: 16px;
}

.page-news .log-card-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.page-news .log-time {
  font-family: var(--font-number);
  font-size: 0.75rem;
  color: rgba(244, 244, 240, 0.6);
}

.page-news .log-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.page-news .log-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(244, 244, 240, 0.74);
}

.page-news .log-stat {
  display: grid;
  gap: 18px;
  align-items: center;
}

.page-news .log-stat-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-large);
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.page-news .log-stat-panel {
  background: rgba(11, 11, 13, 0.35);
  border: 1px solid rgba(244, 244, 240, 0.1);
  border-radius: var(--radius-large);
  padding: 20px;
}

.page-news .stat-grid--4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0 0;
}

.page-news .stat-item {
  background: rgba(244, 244, 240, 0.07);
  border-radius: var(--radius-medium);
  padding: 14px;
}

.page-news .stat-label {
  font-size: 0.75rem;
  color: rgba(244, 244, 240, 0.62);
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-news .stat-num {
  font-family: var(--font-number);
  font-size: 1.6rem;
  color: var(--color-gold);
  font-weight: 700;
}

.page-news .log-stat-note {
  font-size: 0.8125rem;
  color: rgba(244, 244, 240, 0.66);
  line-height: 1.6;
  margin-top: 14px;
}

.page-news .news-focus {
  background: var(--color-white);
}

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

.page-news .focus-card {
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.06);
  border-radius: var(--radius-large);
  box-shadow: var(--news-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-news .focus-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.page-news .focus-card-body h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.page-news .focus-card-body > p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.page-news .focus-list {
  list-style: none;
  margin: 4px 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
  width: 100%;
}

.page-news .focus-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11, 11, 13, 0.06);
}

.page-news .focus-list dt {
  color: var(--color-gray);
  font-weight: 600;
}

.page-news .focus-list dd {
  margin: 0;
  color: var(--color-black);
  font-weight: 700;
  text-align: right;
}

.page-news .focus-card-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-news .focus-card-body .btn {
  margin-top: auto;
}

.page-news .news-more {
  background: var(--color-black);
  color: var(--color-white);
  padding: 32px 0;
}

.page-news .news-more-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-more-note {
  margin: 0;
  font-family: var(--font-number);
  font-size: 0.8125rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.page-news .news-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
}

.page-news .news-more-links a {
  color: rgba(244, 244, 240, 0.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  border-bottom: 2px solid rgba(201, 168, 106, 0.5);
  padding-bottom: 2px;
}

.page-news .news-more-links a:hover {
  color: #fff;
  border-color: var(--color-red);
}

@media (min-width: 768px) {
  .page-news .news-hero-wrap {
    min-height: 74vh;
  }

  .page-news .news-hero-inner {
    padding: 140px 24px 72px;
  }

  .page-news .news-hero-desc {
    font-size: 1.125rem;
  }

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

  .page-news .news-timeline {
    gap: 32px;
  }

  .page-news .news-timeline-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
  }

  .page-news .news-timeline::before {
    left: 35px;
  }

  .page-news .news-node-round {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }

  .page-news .news-card {
    padding: 28px;
  }

  .page-news .news-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--news-card-shadow-hover);
  }

  .page-news .log-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-news .log-stat {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }

  .page-news .log-stat-panel {
    padding: 24px;
  }

  .page-news .stat-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .focus-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    grid-auto-rows: min-content;
  }

  .page-news .focus-card--lead {
    grid-column: span 12;
    grid-template-columns: 1.1fr 0.9fr;
    display: grid;
  }

  .page-news .focus-card--side {
    grid-column: span 6;
  }

  .page-news .news-more-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .page-news .focus-card--lead {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
  }

  .page-news .focus-card--lead .focus-card-img {
    order: -1;
  }

  .page-news .focus-card--side {
    grid-column: span 5;
  }

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

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

  .page-news .log-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-news .log-round {
    width: fit-content;
  }
}
