.page-news {
  --news-green: #00FF87;
  --news-orange: #FF6B00;
  --news-clay: #C19A6B;
  --news-deep: #0A192F;
  --news-card: #1B2A41;
  --news-card-hover: #22334D;
  --news-light: #F2EFE9;
  --news-muted: #7A8B6F;
  --news-border: rgba(242, 239, 233, 0.12);
  --news-mono: 'Courier New', monospace;
  --news-headline: 'Arial Black', 'Noto Sans SC', sans-serif;
  --news-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  background: var(--news-deep);
  color: var(--news-light);
  font-family: var(--news-body);
  overflow-x: hidden;
}
.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}
.page-news .breadcrumb {
  padding: 0;
  margin: 0 0 32px;
}
.page-news .breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--news-muted);
}
.page-news .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-news .breadcrumb li + li::before {
  content: "→";
  color: var(--news-green);
  font-family: var(--news-mono);
}
.page-news .breadcrumb a {
  color: var(--news-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-news .breadcrumb a:hover {
  color: var(--news-green);
}
.page-news .breadcrumb li[aria-current="page"] {
  color: var(--news-light);
}
.page-news .news-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 80px);
}
.page-news .news-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.page-news .news-hero-copy {
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--news-green);
}
.page-news .news-hero-eyebrow {
  margin: 0 0 12px;
  font-family: var(--news-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--news-orange);
  text-transform: uppercase;
}
.page-news .page-title {
  margin: 0 0 20px;
  font-family: var(--news-headline);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--news-light);
}
.page-news .news-hero-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 239, 233, 0.82);
  max-width: 720px;
}
.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 2px;
  font-family: var(--news-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background-color 0.25s ease;
}
.page-news .btn-accent {
  background: var(--news-green);
  color: var(--news-deep);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.page-news .btn-accent:hover {
  transform: translateY(-2px) translateX(2px);
  box-shadow: 4px 4px 0 rgba(0, 255, 135, 0.2);
}
.page-news .btn-outline {
  border: 2px solid var(--news-green);
  color: var(--news-green);
  background: transparent;
}
.page-news .btn-outline:hover {
  background: rgba(0, 255, 135, 0.08);
  transform: translateY(-2px);
}
.page-news .trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.page-news .trust-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: rgba(242, 239, 233, 0.7);
}
.page-news .trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--news-green);
  transform: translateY(-50%) rotate(45deg);
}
.page-news .news-hero-kpi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.page-news .kpi-card {
  background: linear-gradient(135deg, var(--news-card) 0%, rgba(27, 42, 65, 0.5) 100%);
  border: 1px solid var(--news-border);
  padding: 20px 18px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.page-news .kpi-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 60px;
  height: 60px;
  background: currentColor;
  opacity: 0.08;
  transform: rotate(45deg);
  border-radius: 4px;
}
.page-news .kpi-card-green { color: var(--news-green); }
.page-news .kpi-card-orange { color: var(--news-orange); }
.page-news .kpi-card-clay { color: var(--news-clay); }
.page-news .kpi-card-mono { color: var(--news-green); }
.page-news .kpi-card .kpi-label {
  display: block;
  font-size: 13px;
  color: rgba(242, 239, 233, 0.7);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.page-news .kpi-card .data-kpi {
  font-family: var(--news-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  color: currentColor;
}
.page-news .kpi-card .kpi-unit {
  font-family: var(--news-mono);
  font-size: 14px;
  color: rgba(242, 239, 233, 0.6);
  margin-left: 4px;
  display: inline-block;
}
.page-news .container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}
.page-news .news-toolbar {
  margin-bottom: 40px;
}
.page-news .search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--news-card);
  border: 2px solid var(--news-border);
  border-radius: 2px;
  padding: 4px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 24px;
}
.page-news .search-box:focus-within {
  border-color: var(--news-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.12);
}
.page-news .search-icon {
  flex-shrink: 0;
  color: var(--news-green);
}
.page-news .search-box input[type="search"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--news-light);
  font-size: 16px;
  padding: 12px 12px 12px 16px;
  font-family: var(--news-body);
}
.page-news .search-box input[type="search"]::placeholder {
  color: rgba(242, 239, 233, 0.4);
}
.page-news .search-hint {
  flex-shrink: 0;
  font-family: var(--news-mono);
  font-size: 12px;
  color: var(--news-orange);
  display: none;
  letter-spacing: 0.04em;
}
.page-news .toolbar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}
.page-news .tab-btn {
  background: transparent;
  border: 1px solid var(--news-border);
  color: rgba(242, 239, 233, 0.72);
  min-height: 44px;
  padding: 10px 18px;
  font-family: var(--news-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.page-news .tab-btn:hover {
  color: var(--news-green);
  border-color: var(--news-green);
}
.page-news .tab-btn.is-active {
  background: var(--news-green);
  border-color: var(--news-green);
  color: var(--news-deep);
  box-shadow: 0 2px 12px rgba(0, 255, 135, 0.2);
}
.page-news .news-tabs-content .container + .container {
  margin-top: 0;
}
.page-news .tab-panel {
  display: none;
  animation: pageNewsFadeIn 0.5s ease both;
}
.page-news .tab-panel.is-active {
  display: block;
}
@keyframes pageNewsFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-news .section-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.page-news .section-title {
  margin: 0;
  font-family: var(--news-headline);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--news-light);
  letter-spacing: 0.02em;
  position: relative;
}
.page-news .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--news-green), var(--news-orange));
  margin-top: 8px;
}
.page-news .section-desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 239, 233, 0.68);
  max-width: 820px;
}
.page-news .notice-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 135, 0.08);
  border-left: 3px solid var(--news-green);
  color: var(--news-green);
  font-family: var(--news-mono);
  font-size: 13px;
  padding: 8px 14px;
}
.page-news .notice-info::before {
  content: "●";
  font-size: 10px;
  color: var(--news-green);
  animation: pageNewsPulse 2s infinite;
}
@keyframes pageNewsPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.page-news .tag {
  display: inline-block;
  background: transparent;
  border-left: 3px solid var(--news-orange);
  color: var(--news-orange);
  font-family: var(--news-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  letter-spacing: 0.06em;
  background: rgba(255, 107, 0, 0.06);
}
.page-news .result-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--news-border);
  background: var(--news-card);
  margin-bottom: 24px;
}
.page-news .result-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-family: var(--news-body);
}
.page-news .result-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.page-news .result-table th {
  background: #142138;
  color: rgba(242, 239, 233, 0.7);
  font-family: var(--news-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--news-border);
  white-space: nowrap;
}
.page-news .result-table td {
  padding: 16px;
  border-bottom: 1px solid var(--news-border);
  color: var(--news-light);
  font-size: 15px;
}
.page-news .result-table tbody tr {
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.page-news .result-table tbody tr:hover {
  background: rgba(0, 255, 135, 0.04);
}
.page-news .result-table tbody tr:last-child td {
  border-bottom: none;
}
.page-news .table-league {
  font-family: var(--news-mono);
  font-size: 13px;
  color: var(--news-orange);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 3px 8px;
  white-space: nowrap;
}
.page-news .table-score {
  font-family: var(--news-mono);
  font-weight: 700;
  font-size: 17px;
  color: var(--news-green);
  letter-spacing: 0.06em;
}
.page-news .status-chip {
  display: inline-block;
  font-family: var(--news-mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.page-news .status-done {
  background: rgba(0, 255, 135, 0.1);
  color: var(--news-green);
}
.page-news .table-link {
  color: var(--news-orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 107, 0, 0.4);
  padding-bottom: 2px;
}
.page-news .table-link:hover {
  color: var(--news-green);
  border-bottom-color: var(--news-green);
}
.page-news .result-expand-box {
  display: none;
  background: rgba(0, 255, 135, 0.04);
  border-left: 4px solid var(--news-green);
  padding: 16px 20px;
  margin: 0 0 16px;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 239, 233, 0.8);
}
.page-news .result-expand-box:target {
  display: block;
  animation: pageNewsExpand 0.4s ease;
}
@keyframes pageNewsExpand {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-news .table-note {
  font-size: 13px;
  color: var(--news-muted);
  margin: 0 0 32px;
  font-family: var(--news-mono);
  line-height: 1.6;
}
.page-news .figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: var(--news-card);
}
.page-news .figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-news .figure figcaption {
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(242, 239, 233, 0.6);
  border-top: 1px solid var(--news-border);
  font-family: var(--news-body);
  line-height: 1.5;
}
.page-news .figure-aspect {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #142138 0%, var(--news-card) 100%);
}
.page-news .figure-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .figure-aspect-wide {
  aspect-ratio: 21 / 9;
}
.page-news .result-figure {
  margin-bottom: 8px;
}
.page-news .review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.page-news .review-card {
  background: linear-gradient(150deg, var(--news-card) 0%, rgba(27, 42, 65, 0.4) 100%);
  border: 1px solid var(--news-border);
  padding: 28px 24px;
  position: relative;
  border-radius: 2px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.page-news .review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--news-green), var(--news-orange));
  opacity: 0.6;
}
.page-news .review-card:hover {
  border-color: rgba(0, 255, 135, 0.3);
  transform: translateY(-4px);
}
.page-news .review-cat {
  font-family: var(--news-mono);
  font-size: 12px;
  color: var(--news-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(255, 107, 0, 0.08);
  padding: 4px 10px;
}
.page-news .review-card h3 {
  margin: 0 0 12px;
  font-family: var(--news-headline);
  font-size: 19px;
  line-height: 1.4;
  color: var(--news-light);
  letter-spacing: 0.01em;
}
.page-news .review-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 239, 233, 0.66);
}
.page-news .card-arrow {
  color: var(--news-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-news .card-arrow::after {
  content: "→";
  font-family: var(--news-mono);
  transition: transform 0.25s ease;
}
.page-news .card-arrow:hover::after {
  transform: translateX(6px);
}
.page-news .panel-more {
  margin: 24px 0 8px;
}
.page-news .panel-more a {
  color: var(--news-orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 107, 0, 0.5);
  padding-bottom: 2px;
}
.page-news .panel-more a:hover {
  color: var(--news-green);
  border-bottom-color: var(--news-green);
}
.page-news .video-timeline {
  position: relative;
  margin: 0 0 32px;
  padding-left: 24px;
}
.page-news .video-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--news-green), var(--news-orange), var(--news-clay));
}
.page-news .video-item {
  position: relative;
  margin-bottom: 24px;
}
.page-news .video-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 26px;
  width: 12px;
  height: 12px;
  background: var(--news-green);
  border: 3px solid var(--news-deep);
  border-radius: 50%;
  transform: translateX(-5px);
  box-shadow: 0 0 0 2px rgba(0, 255, 135, 0.3);
}
.page-news .video-item:nth-child(2)::before {
  background: var(--news-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.3);
}
.page-news .video-item:nth-child(3)::before {
  background: var(--news-clay);
  box-shadow: 0 0 0 2px rgba(193, 154, 107, 0.3);
}
.page-news .video-time {
  font-family: var(--news-mono);
  font-size: 13px;
  color: var(--news-green);
  display: block;
  margin-bottom: 6px;
}
.page-news .video-card {
  background: var(--news-card);
  border: 1px solid var(--news-border);
  padding: 20px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.page-news .video-card:hover {
  background: var(--news-card-hover);
}
.page-news .video-badge {
  display: inline-block;
  font-family: var(--news-mono);
  font-size: 12px;
  color: var(--news-orange);
  border: 1px solid rgba(255, 107, 0, 0.35);
  padding: 3px 8px;
  margin-bottom: 8px;
}
.page-news .video-card h3 {
  margin: 0 0 6px;
  font-family: var(--news-headline);
  font-size: 17px;
  color: var(--news-light);
}
.page-news .video-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(242, 239, 233, 0.6);
  line-height: 1.6;
}
.page-news .video-figure {
  margin-bottom: 24px;
}
.page-news .team-log-list {
  position: relative;
  margin-bottom: 32px;
  padding-left: 28px;
}
.page-news .team-log-list::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--news-green), var(--news-clay));
}
.page-news .team-log-item {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}
.page-news .log-date {
  flex-shrink: 0;
  font-family: var(--news-mono);
  font-size: 13px;
  color: var(--news-orange);
  background: rgba(255, 107, 0, 0.08);
  padding: 4px 10px;
  align-self: flex-start;
  margin-top: 2px;
  white-space: nowrap;
  border: 1px solid rgba(255, 107, 0, 0.2);
}
.page-news .log-dot {
  position: absolute;
  left: -25px;
  top: 12px;
  width: 10px;
  height: 10px;
  background: var(--news-green);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.4);
}
.page-news .team-log-item:nth-child(2) .log-dot {
  background: var(--news-orange);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}
.page-news .team-log-item:nth-child(3) .log-dot {
  background: var(--news-clay);
  box-shadow: 0 0 10px rgba(193, 154, 107, 0.4);
}
.page-news .team-log-item:nth-child(4) .log-dot {
  background: var(--news-green);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.4);
}
.page-news .log-content {
  flex: 1;
  background: var(--news-card);
  border: 1px solid var(--news-border);
  border-left: 3px solid var(--news-green);
  padding: 16px 18px;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}
.page-news .log-content:hover {
  background: var(--news-card-hover);
}
.page-news .log-content h3 {
  margin: 0 0 6px;
  font-family: var(--news-body);
  font-size: 16px;
  color: var(--news-light);
  font-weight: 700;
}
.page-news .log-team {
  color: var(--news-green);
}
.page-news .log-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 239, 233, 0.62);
}
.page-news .team-log-figure {
  margin-bottom: 24px;
  max-width: 500px;
}
.page-news .team-log-figure img {
  max-height: 520px;
  width: 100%;
  object-fit: cover;
}
.page-news .news-topics {
  padding-top: 56px;
  padding-bottom: 16px;
  border-top: 1px solid var(--news-border);
  margin-top: 48px;
}
.page-news .topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.page-news .topic-card {
  background: linear-gradient(160deg, var(--news-card) 0%, #0f1d31 100%);
  border: 1px solid var(--news-border);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
  border-radius: 2px;
}
.page-news .topic-card:hover {
  border-color: rgba(0, 255, 135, 0.25);
  transform: translateY(-4px);
}
.page-news .topic-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--news-green), var(--news-orange));
  opacity: 0.04;
  transform: rotate(45deg);
}
.page-news .topic-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.page-news .topic-no {
  font-family: var(--news-mono);
  font-size: 14px;
  color: var(--news-orange);
  font-weight: 700;
}
.page-news .topic-tag {
  font-family: var(--news-mono);
  font-size: 12px;
  color: var(--news-clay);
  border: 1px solid rgba(193, 154, 107, 0.35);
  padding: 3px 10px;
}
.page-news .topic-card h3 {
  margin: 0 0 14px;
  font-family: var(--news-headline);
  font-size: 18px;
  line-height: 1.4;
  color: var(--news-light);
}
.page-news .topic-card > p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 239, 233, 0.66);
}
.page-news .topic-chart {
  background: #0D1A2E;
  border: 1px solid var(--news-border);
  padding: 16px;
  margin-bottom: 16px;
}
.page-news .chart-line {
  display: block;
  font-family: var(--news-mono);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(242, 239, 233, 0.1);
  color: rgba(242, 239, 233, 0.8);
}
.page-news .chart-line-home {
  border-left: 3px solid var(--news-green);
  padding-left: 10px;
}
.page-news .chart-line-away {
  border-left: 3px solid var(--news-orange);
  padding-left: 10px;
}
.page-news .chart-bar {
  display: block;
  font-family: var(--news-mono);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(242, 239, 233, 0.1);
}
.page-news .chart-bar b {
  color: var(--news-green);
  font-size: 18px;
}
.page-news .chart-bar-before {
  color: rgba(242, 239, 233, 0.7);
}
.page-news .chart-bar-after {
  color: rgba(242, 239, 233, 0.9);
}
.page-news .chart-note {
  font-family: var(--news-mono);
  font-size: 12px;
  color: var(--news-muted);
  display: block;
  padding: 12px 0 0;
  border-top: 1px solid rgba(242, 239, 233, 0.08);
}
.page-news .chart-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--news-mono);
  font-size: 12px;
  padding: 6px 0;
  color: rgba(242, 239, 233, 0.78);
}
.page-news .chart-bar-row i {
  height: 8px;
  background: linear-gradient(90deg, var(--news-green), var(--news-orange));
  display: block;
  flex: 1;
  max-width: 80%;
  min-width: 0;
}
.page-news .topic-card .topic-meta {
  margin-bottom: 0;
  padding-top: 4px;
}
.page-news .topic-figure {
  margin-bottom: 32px;
}
.page-news .news-guide {
  margin-top: 16px;
}
.page-news .guide-card {
  background: linear-gradient(135deg, rgba(27, 42, 65, 0.9) 0%, #0F1D31 100%);
  border: 1px solid rgba(0, 255, 135, 0.15);
  padding: clamp(24px, 4vw, 48px);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.page-news .guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(0, 255, 135, 0.08), transparent 70%);
  z-index: 0;
}
.page-news .guide-card > * {
  position: relative;
  z-index: 1;
}
.page-news .guide-card h2 {
  margin: 16px 0 20px;
  font-family: var(--news-headline);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
  color: var(--news-light);
}
.page-news .guide-steps {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: pageNewsStep;
}
.page-news .guide-steps li {
  counter-increment: pageNewsStep;
  position: relative;
  padding: 14px 0 14px 44px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 239, 233, 0.75);
  border-bottom: 1px solid rgba(242, 239, 233, 0.08);
}
.page-news .guide-steps li::before {
  counter-reset: pageNewsStep;
  content: counter(pageNewsStep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--news-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--news-green);
  background: rgba(0, 255, 135, 0.08);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 135, 0.2);
  border-radius: 2px;
}
.page-news .guide-steps b {
  color: var(--news-orange);
}
.page-news .guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 768px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
  }
  .page-news .news-hero-kpi {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-news .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .topics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .page-news .search-hint {
    display: inline-block;
  }
  .page-news .search-box input[type="search"] {
    padding: 14px 16px;
  }
  .page-news .video-timeline {
    padding-left: 36px;
  }
  .page-news .video-item::before {
    left: -35px;
  }
}
@media (min-width: 1024px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
  .page-news .news-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
  }
  .page-news .search-box {
    margin-bottom: 0;
    flex: 1;
    max-width: 480px;
  }
  .page-news .toolbar-tabs {
    justify-content: flex-end;
  }
  .page-news .tab-btn {
    font-size: 15px;
  }
  .page-news .kpi-card {
    padding: 24px 20px;
  }
  .page-news .kpi-card .data-kpi {
    font-size: 38px;
  }
  .page-news .team-log-list {
    padding-left: 36px;
  }
  .page-news .team-log-list::before {
    left: 12px;
  }
  .page-news .log-dot {
    left: -32px;
  }
  .page-news .team-log-figure {
    margin-left: 36px;
  }
  .page-news .review-card h3 {
    font-size: 20px;
  }
}
.page-news [data-reveal] {
  opacity: 1;
  transform: none;
}
.page-news .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
