.page-news {
  background: var(--light);
  overflow-x: hidden;
}
.page-news a:focus-visible,
.page-news button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.page-news .news-hero {
  background: var(--deep);
  border-bottom: 3px solid var(--gold);
  padding: 32px 0 40px;
  position: relative;
}
.page-news .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.5;
}
.page-news .breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.page-news .breadcrumbs a:hover {
  text-decoration: underline;
}
.page-news .news-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-news .news-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--white);
  position: relative;
  padding-left: 16px;
}
.page-news .news-hero h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--gold);
}
.page-news .news-hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 720px;
}
.page-news .news-hero-panel {
  background: var(--navy);
  border: 1px solid rgba(212, 169, 55, 0.35);
  padding: 20px;
  position: relative;
}
.page-news .news-hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}
.page-news .news-hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
}
.page-news .live-dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}
.page-news .news-hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.page-news .news-hero-cell {
  display: flex;
  flex-direction: column;
}
.page-news .news-hero-num {
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
}
.page-news .news-hero-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.page-news .filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.page-news .filter-btn .mono {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.page-news .filter-btn:hover {
  border-color: var(--gold);
  color: var(--white);
}
.page-news .filter-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.page-news .filter-btn.is-active .mono {
  color: var(--deep);
}
.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 64px;
}
.page-news .news-sidebar {
  display: none;
}
.page-news .news-main {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.page-news .news-section {
  scroll-margin-top: 24px;
}
.page-news .news-section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-news .news-section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 3px;
  background: var(--gold);
}
.page-news .news-section-index {
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.page-news .news-section-head h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
  line-height: 1.2;
}
.page-news .news-section-head p {
  font-size: 14px;
  color: var(--text-sec);
  margin: 0;
  line-height: 1.6;
}
.page-news .news-section-link {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 4px;
}
.page-news .news-section-link:hover {
  text-decoration: underline;
}
.page-news .news-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--text-sec);
  text-transform: uppercase;
  line-height: 1.4;
  background: var(--white);
}
.page-news .news-tag--gold {
  border-color: rgba(212, 169, 55, 0.6);
  color: #9A7A20;
  background: rgba(212, 169, 55, 0.08);
}
.page-news .news-tag--neon {
  border-color: rgba(57, 255, 20, 0.5);
  color: #0A7D05;
  background: rgba(57, 255, 20, 0.1);
}
.page-news .news-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.page-news .news-meta-row .mono {
  font-size: 12px;
  color: var(--text-sec);
}
.page-news .news-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.page-news .news-feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.page-news .news-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .news-feature-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--deep);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  letter-spacing: 0.02em;
}
.page-news .news-feature-body {
  padding: 24px;
}
.page-news .news-feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--text);
}
.page-news .news-feature h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.page-news .news-feature h3 a:hover {
  color: var(--gold);
}
.page-news .news-feature-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-sec);
  margin: 0 0 20px;
}
.page-news .news-feature-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}
.page-news .news-stat {
  font-size: 13px;
  color: var(--text-sec);
}
.page-news .news-stat .mono {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin-right: 4px;
}
.page-news .news-read-more,
.page-news .news-item-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.page-news .news-read-more:hover,
.page-news .news-item-link:hover {
  text-decoration: underline;
}
.page-news .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-news .news-item {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.page-news .news-item:hover {
  box-shadow: var(--shadow);
}
.page-news .news-item-media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.page-news .news-item-media--tall {
  aspect-ratio: 1 / 1.2;
}
.page-news .news-item-media--wide {
  aspect-ratio: 16 / 10;
}
.page-news .news-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .news-item-body {
  padding: 20px 24px;
}
.page-news .news-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--text);
}
.page-news .news-item h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.page-news .news-item h3 a:hover {
  color: var(--gold);
}
.page-news .news-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sec);
  margin: 0 0 14px;
}
.page-news .version-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-news .version-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  position: relative;
}
.page-news .version-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--neon));
}
.page-news .version-index {
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  min-width: 36px;
  line-height: 1;
  padding-top: 2px;
}
.page-news .version-content {
  flex: 1;
  min-width: 0;
}
.page-news .version-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--text);
}
.page-news .version-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sec);
  margin: 0 0 14px;
}
.page-news .version-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-size: 12px;
  color: var(--text-sec);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.page-news .version-meta .mono {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}
.page-news .analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-news .analysis-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s;
}
.page-news .analysis-card:hover {
  box-shadow: var(--shadow);
}
.page-news .analysis-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.2s;
}
.page-news .analysis-card:hover::after {
  transform: scaleX(1);
}
.page-news .analysis-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  margin: 14px 0 10px;
  color: var(--text);
}
.page-news .analysis-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sec);
  margin: 0 0 16px;
}
.page-news .analysis-stats {
  font-size: 13px;
  color: var(--text-sec);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  line-height: 1.6;
}
.page-news .analysis-stats .mono {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}
.page-news .industry-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-news .industry-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  transition: box-shadow 0.2s;
}
.page-news .industry-item:hover {
  box-shadow: var(--shadow);
}
.page-news .industry-item-mark {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--light);
}
.page-news .industry-content {
  flex: 1;
  min-width: 0;
}
.page-news .industry-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--text);
}
.page-news .industry-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sec);
  margin: 0 0 14px;
}
.page-news .industry-content .mono {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 48px 0 56px;
  }
  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
    align-items: end;
  }
  .page-news .news-hero h1 {
    font-size: 48px;
  }
  .page-news .news-hero-lead {
    font-size: 16px;
  }
  .page-news .news-hero-panel {
    padding: 24px;
  }
  .page-news .news-hero-num {
    font-size: 30px;
  }
  .page-news .news-layout {
    padding-top: 64px;
    padding-bottom: 80px;
  }
  .page-news .news-feature {
    grid-template-columns: 5fr 7fr;
  }
  .page-news .news-feature-body {
    padding: 32px;
  }
  .page-news .news-feature h3 {
    font-size: 28px;
  }
  .page-news .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .news-list .news-item:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 5fr 7fr;
  }
  .page-news .news-list .news-item:last-child .news-item-media {
    aspect-ratio: 16 / 10;
  }
  .page-news .news-item-media--tall {
    aspect-ratio: 1 / 1.4;
  }
  .page-news .version-item {
    padding: 24px;
  }
  .page-news .analysis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .analysis-card:first-child {
    grid-column: 1 / -1;
  }
  .page-news .analysis-card:first-child h3 {
    font-size: 24px;
  }
  .page-news .industry-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .industry-item:last-child {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .page-news .news-hero {
    padding: 64px 0 96px;
    border-bottom: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
  }
  .page-news .news-hero h1 {
    font-size: 56px;
  }
  .page-news .news-hero-lead {
    font-size: 17px;
  }
  .page-news .news-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 96px;
  }
  .page-news .news-sidebar {
    display: block;
    position: sticky;
    top: 32px;
    align-self: start;
  }
  .page-news .news-anchor {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 12px 0;
  }
  .page-news .news-anchor-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sec);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .page-news .news-anchor-link .mono {
    color: var(--gold);
    font-size: 13px;
  }
  .page-news .news-anchor-link:hover {
    color: var(--text);
    border-left-color: var(--gold);
    background: var(--light);
  }
  .page-news .news-section-head h2 {
    font-size: 32px;
  }
}
