.page-news {
  --news-orange: #FF6B00;
  --news-gold: #D4AF37;
  --news-night: #0B1D3A;
  --news-deep: #0E2A4C;
  --news-ice: #F5F7FA;
  --news-gray: #CBD5E1;
  --news-ink: #111827;
  --news-green: #10B981;
  --news-radius: 16px;
  --news-cut: 18px;
  background: var(--news-ice);
  color: var(--news-ink);
}

.page-news .container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.page-news .section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.page-news .section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.page-news .kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--news-gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.page-news .kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--news-orange);
  display: inline-block;
}

.page-news .section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--news-night);
  margin: .5rem 0 .8rem;
}

.page-news .section-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #455a75;
}

.page-news .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: #dce6f2;
  max-width: 60ch;
}

/* ---------- Hero ---------- */
.news-hero {
  background: var(--news-night);
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--news-cut)), 0 100%);
}

.news-hero-inner {
  position: relative;
  z-index: 2;
}

.news-hero .breadcrumb {
  font-size: .85rem;
  color: var(--news-gray);
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.news-hero .breadcrumb a {
  color: #9fb2cc;
  text-decoration: none;
}

.news-hero .breadcrumb a:hover {
  color: var(--news-orange);
}

.news-hero .current {
  color: var(--news-gold);
}

.news-hero .display-title {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  color: var(--news-ice);
  max-width: 12ch;
  margin: .8rem 0 1.2rem;
  letter-spacing: -.02em;
}

.news-hero .kicker {
  color: var(--news-orange);
}

.news-hero .kicker::before {
  background: var(--news-orange);
}

.news-hero-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.news-hero-quick .link-more {
  color: var(--news-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.news-hero-quick .link-more:hover {
  border-color: var(--news-gold);
}

.hero-sweep {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(112deg, transparent 32%, rgba(255, 107, 0, .22) 48%, rgba(212, 175, 55, .18) 72%, transparent 82%);
  transform: skewX(-12deg);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.page-news .btn {
  background: var(--news-orange);
  color: #fff;
  border: 0;
  padding: .85rem 1.7rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 107, 0, .35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.page-news .btn:hover {
  background: #e86000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, .45);
}

.page-news .btn-ghost {
  background: transparent;
  color: var(--news-night);
  border: 1px solid rgba(11, 29, 58, .35);
  padding: .8rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.page-news .btn-ghost:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
  background: rgba(255, 107, 0, .05);
}

.news-hero .btn-ghost {
  color: var(--news-ice);
  border-color: rgba(245, 247, 250, .4);
}

.news-hero .btn-ghost:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

/* ---------- Reports Section ---------- */
.reports-section {
  background: var(--news-ice);
}

.report-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.filter-chip {
  border: 1px solid rgba(11, 29, 58, .2);
  background: transparent;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--news-night);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-chip:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

.filter-chip.is-active {
  background: var(--news-night);
  color: var(--news-ice);
  border-color: var(--news-night);
}

.report-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.report-item {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: var(--news-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11, 29, 58, .06);
  transition: box-shadow var(--transition), transform var(--transition);
  scroll-margin-top: 2rem;
}

.report-item:hover {
  box-shadow: 0 12px 34px rgba(11, 29, 58, .12);
  transform: translateY(-2px);
}

.report-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.report-item:hover .report-thumb img {
  transform: scale(1.03);
}

.report-content {
  padding: 1.5rem 1.5rem 1.8rem;
}

.report-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .7rem;
}

.report-time {
  font-size: .82rem;
  color: #7a8ca6;
  font-family: var(--font-mono);
}

.report-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.3;
  color: var(--news-night);
  margin-bottom: .6rem;
}

.report-title a {
  color: inherit;
  text-decoration: none;
}

.report-title a:hover {
  color: var(--news-orange);
}

.report-excerpt {
  font-size: .95rem;
  line-height: 1.7;
  color: #51647e;
}

.anchor-link {
  color: var(--news-gold);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}

.anchor-link:hover {
  color: var(--news-orange);
}

/* ---------- Score Section ---------- */
.score-section {
  background: linear-gradient(120deg, var(--news-night), var(--news-deep));
  position: relative;
  color: var(--news-ice);
  clip-path: polygon(0 0, 100% var(--news-cut), 100% 100%, 0 100%);
}

.score-section .section-title {
  color: var(--news-ice);
}

.score-section .section-desc {
  color: #aabed5;
}

.ticker-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 2rem;
}

.ticker-line {
  height: 3px;
  background: var(--news-orange);
  flex: 1;
  border-radius: 99px;
}

.ticker-line:nth-child(2) {
  opacity: .7;
}

.ticker-line:nth-child(3) {
  opacity: .4;
}

.score-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.score-card {
  background: rgba(245, 247, 250, .07);
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 12px;
  padding: 1.4rem;
  text-decoration: none;
  color: var(--news-ice);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: background .2s, border-color .2s, transform .2s;
}

.score-card:hover {
  background: rgba(255, 107, 0, .15);
  border-color: var(--news-orange);
  transform: translateY(-2px);
}

.score-league {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--news-gold);
  font-weight: 700;
}

.score-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.score-team {
  font-weight: 600;
  color: #eef3f9;
  white-space: nowrap;
}

.score-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--news-ice);
  background: rgba(11, 29, 58, .55);
  padding: .15rem .6rem;
  border-radius: 6px;
  border-left: 3px solid var(--news-orange);
}

.score-status {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: #d3dde8;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--news-green);
  display: inline-block;
  animation: pulseDot 1.2s infinite alternate;
}

.status-halftime {
  padding: .1rem .5rem;
  background: rgba(212, 175, 55, .18);
  color: var(--news-gold);
  border-radius: 4px;
  font-weight: 600;
}

.status-live {
  color: var(--news-orange);
  font-weight: 700;
}

.score-note {
  font-size: .8rem;
  color: #98aec8;
  font-family: var(--font-mono);
}

.score-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.score-cta .btn-ghost {
  color: var(--news-ice);
  border-color: rgba(245, 247, 250, .35);
}

.score-cta .btn-ghost:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

.score-update {
  font-size: .85rem;
  color: #b9cbe0;
}

.score-visual {
  margin-top: 3rem;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.score-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ---------- Rank Section ---------- */
.rank-section {
  background: var(--news-ice);
}

.rank-board {
  background: #fff;
  border-radius: var(--news-radius);
  box-shadow: 0 8px 30px rgba(11, 29, 58, .08);
  overflow: hidden;
}

.rank-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5ebf3;
  padding: 0 1rem;
}

.rank-tab {
  background: transparent;
  border: 0;
  padding: 1.1rem 1.2rem .95rem;
  font-weight: 700;
  color: #7891ad;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}

.rank-tab.is-active {
  color: var(--news-orange);
  border-bottom-color: var(--news-orange);
}

.rank-table-wrap {
  overflow-x: auto;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.rank-table th {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #879ab2;
  padding: .9rem 1rem;
  text-align: left;
  background: #f7fafc;
}

.rank-table td {
  border-bottom: 1px solid #eef2f7;
  padding: 1rem;
  font-size: .95rem;
  color: var(--news-night);
}

.rank-table tbody tr {
  transition: background .2s;
}

.rank-table tbody tr:hover {
  background: #f0f4fb;
}

.rank-table tr[data-rank-change="up"] td:first-child {
  position: relative;
}

.rank-table tr[data-rank-change="up"] td:first-child::before {
  content: "▲";
  color: var(--news-green);
  font-size: .9rem;
  margin-right: .4rem;
  font-weight: 700;
}

.rank-table tr[data-rank-change="down"] td:first-child::before {
  content: "▼";
  color: var(--news-orange);
  font-size: .9rem;
  margin-right: .4rem;
  font-weight: 700;
}

.rank-table .rank-team {
  font-weight: 700;
}

.rank-pts {
  color: var(--news-orange) !important;
  font-weight: 800;
}

.rank-legend {
  display: flex;
  gap: 1.2rem;
  padding: .8rem 1.4rem;
  border-top: 1px solid #eef2f7;
  font-size: .8rem;
  color: #687e9b;
}

.legend-up::before,
.legend-stay::before,
.legend-down::before {
  content: "●";
  margin-right: .3rem;
}

.legend-up::before {
  color: var(--news-green);
}

.legend-stay::before {
  color: #b0c0d4;
}

.legend-down::before {
  color: var(--news-orange);
}

.rank-note {
  background: var(--news-night);
  color: #c9d6e6;
  font-size: .85rem;
  line-height: 1.6;
  padding: .9rem 1.4rem;
}

.rank-visual {
  margin-top: 2.5rem;
}

.rank-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ---------- Topic Section ---------- */
.topic-section {
  background: #eef2f8;
}

.topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.topic-card {
  background: #fff;
  border-radius: var(--news-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 29, 58, .06);
  transition: transform .22s ease, box-shadow .22s ease;
  scroll-margin-top: 2rem;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(11, 29, 58, .12);
}

.topic-card-wide {
  grid-column: span 1;
}

.topic-media {
  aspect-ratio: 21/9;
  overflow: hidden;
}

.topic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topic-body {
  padding: 1.8rem;
}

.topic-chapter {
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--news-gold);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.topic-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--news-night);
  line-height: 1.25;
  margin-bottom: .6rem;
}

.topic-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: #536a86;
}

.topic-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--news-orange);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.topic-link:hover {
  border-bottom-color: var(--news-orange);
}

.topic-card-cta {
  background: var(--news-night);
  color: var(--news-ice);
}

.topic-card-cta .topic-desc {
  color: #aabed5;
}

.topic-card-cta .topic-title {
  color: var(--news-ice);
}

.topic-card-cta .topic-chapter {
  color: var(--news-orange);
}

/* ---------- Subscribe Strip ---------- */
.subscribe-strip {
  background: var(--news-night);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.subscribe-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.subscribe-copy .section-title {
  color: var(--news-ice);
}

.subscribe-copy .kicker {
  color: var(--news-orange);
}

.subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-actions .btn-ghost {
  color: var(--news-ice);
  border-color: rgba(245, 247, 250, .35);
}

.subscribe-actions .btn-ghost:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

/* ---------- Animations ---------- */
@keyframes pulseDot {
  from {
    opacity: .5;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 700px) {
  .report-item {
    grid-template-columns: 280px 1fr;
  }

  .report-thumb {
    aspect-ratio: 16/10;
    height: 100%;
  }

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

  .topic-card-wide {
    grid-column: span 2;
  }

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

  .topic-card-cta {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .score-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .score-main {
    flex-direction: row;
  }

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

  .topic-card-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .topic-card-cta {
    grid-column: span 2;
  }

  .subscribe-inner {
    flex-direction: row;
    align-items: center;
  }

  .report-list {
    gap: 1.2rem;
  }

  .report-item:nth-child(even) {
    margin-left: 3%;
  }
}

@media (max-width: 420px) {
  .page-news .score-main {
    flex-wrap: wrap;
  }

  .score-num {
    font-size: 1.2rem;
  }

  .report-meta {
    flex-wrap: wrap;
    gap: .4rem;
  }
}
