.page-news {
  --news-blue-deep: #001f66;
  --news-ink: #2D2D2D;
  --news-muted: #6b7688;
  --news-line: #e6eef8;
  --news-shadow-card: 0 6px 18px rgba(0, 0, 0, .08);
  --news-shadow-lift: 0 16px 36px rgba(0, 0, 0, .16);
  background: var(--bw-white);
  color: var(--news-ink);
  overflow-x: hidden;
  font-family: var(--font-body);
}

.page-news .news-hero {
  position: relative;
  background: linear-gradient(135deg, var(--news-blue-deep) 0%, var(--bw-blue) 52%, var(--bw-indigo) 100%);
  color: var(--bw-white);
  padding: 56px 0 84px;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, .08) 0%, transparent 32%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 10px);
  pointer-events: none;
}

.page-news .news-hero-inner {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 920px) {
  .page-news .news-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 48px;
  }
}

.page-news .news-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bw-orange);
  background: rgba(255, 102, 0, .16);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  margin: 20px 0 16px;
}

.page-news .news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -.5px;
  color: var(--bw-white);
  margin: 0 0 18px;
}

.page-news .news-hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .92);
  max-width: 580px;
  margin: 0 0 24px;
}

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

.page-news .news-hero-meta-text {
  background: rgba(255, 255, 255, .12);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-hero-actions .btn {
  text-decoration: none;
}

.page-news .news-hero-visual {
  position: relative;
}

.page-news .news-hero-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -60px;
  top: -70px;
  border: 34px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-hero-board {
  position: relative;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 24px;
  transform: rotate(-1.2deg);
  transition: transform .3s ease;
  backdrop-filter: blur(6px);
}

.page-news .news-hero-board:hover {
  transform: rotate(0deg);
}

.page-news .news-hero-board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.page-news .news-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.page-news .news-hero-stat {
  background: rgba(0, 0, 0, .18);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
}

.page-news .news-hero-stat .data-number {
  color: var(--bw-white);
}

.page-news .news-hero-stat .data-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

.page-news .news-hero-progress {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .22);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.page-news .news-hero-progress .data-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
}

.page-news .news-hero-progress .data-number {
  margin-right: 6px;
}

.page-news .speed-line {
  height: 8px;
  margin-top: 52px;
  background: repeating-linear-gradient(-45deg, var(--bw-orange) 0 16px, transparent 16px 28px);
  opacity: .8;
}

@media (min-width: 920px) {
  .page-news .speed-line {
    margin-top: 0;
    position: absolute;
    bottom: 34px;
    left: 0;
    right: 0;
    height: 6px;
    opacity: .7;
  }
}

.page-news .news-timeline-zone {
  position: relative;
  background: var(--bw-white);
  padding: 80px 0 84px;
}

.page-news .news-timeline-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 94%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0 16px, rgba(0, 51, 153, .035) 16px 17px);
  pointer-events: none;
}

.page-news .news-injury-zone .section-index,
.page-news .news-injury-zone .section-title,
.page-news .news-injury-zone .section-lead {
  color: var(--bw-white);
}

.page-news .news-injury-zone .section-lead {
  color: rgba(255, 255, 255, .8);
}

.page-news .timeline-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-news .timeline-wrap {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 44px;
  }
}

.page-news .timeline-axis {
  display: none;
}

@media (min-width: 900px) {
  .page-news .timeline-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    padding: 20px 0;
  }
}

.page-news .timeline-axis-line {
  position: absolute;
  top: 24px;
  right: 52px;
  width: 2px;
  height: calc(100% - 48px);
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--bw-orange), var(--bw-blue), var(--bw-teal));
  opacity: .3;
}

.page-news .timeline-axis-note {
  font-family: var(--font-numeric);
  font-size: 14px;
  color: var(--bw-blue);
  background: var(--bw-blue-light);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  margin-right: 74px;
  white-space: nowrap;
}

.page-news .timeline-col {
  min-width: 0;
}

.page-news .news-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bw-white);
  border: 1px solid #eef1f6;
  border-radius: var(--radius-lg);
  box-shadow: var(--news-shadow-card);
  overflow: hidden;
  margin-bottom: 28px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px) rotate(-.3deg);
  box-shadow: var(--news-shadow-lift);
}

@media (min-width: 760px) {
  .page-news .news-card {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (min-width: 900px) {
  .page-news .news-card {
    margin-left: 36px;
  }

  .page-news .news-card::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 36px;
    width: 24px;
    height: 2px;
    background: var(--bw-orange);
  }

  .page-news .news-card::after {
    content: "";
    position: absolute;
    left: -46px;
    top: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bw-blue);
    border: 3px solid var(--bw-white);
    box-shadow: 0 0 0 2px rgba(0, 51, 153, .3);
  }
}

.page-news .news-card-media {
  position: relative;
  background: var(--bw-blue-light);
  min-height: 100%;
}

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

.page-news .news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(0, 51, 153, .12));
  pointer-events: none;
}

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

.page-news .news-card-cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news .news-card-date {
  font-family: var(--font-numeric);
  font-size: 13px;
  color: var(--news-muted);
}

.page-news .news-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: -.2px;
  color: var(--news-ink);
  margin: 0 0 10px;
}

.page-news .news-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 14px;
}

.page-news .news-card-link {
  font-size: 14px;
  font-weight: 600;
}

.page-news .news-card-link a {
  color: var(--bw-blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.page-news .news-card-link a:hover {
  color: var(--bw-orange);
  border-bottom-color: var(--bw-orange);
}

.page-news .cat-injury {
  background: var(--bw-wine);
  color: var(--bw-white);
}

.page-news .cat-radar {
  background: var(--bw-blue);
  color: var(--bw-white);
}

.page-news .cat-ios {
  background: var(--bw-orange);
  color: var(--bw-white);
}

.page-news .cat-brand {
  background: var(--bw-indigo);
  color: var(--bw-white);
}

.page-news .news-injury-zone {
  position: relative;
  background: linear-gradient(135deg, var(--bw-indigo) 0%, #2d0a4b 100%);
  color: var(--bw-white);
  padding: 80px 0 84px;
  overflow: hidden;
}

.page-news .news-injury-zone::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 30px;
  width: 300px;
  height: 300px;
  border: 34px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .injury-track-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 700px) {
  .page-news .injury-track-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .page-news .injury-track-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-news .injury-track-item {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(4px);
  transition: background .3s ease, transform .3s ease;
}

.page-news .injury-track-item:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.page-news .injury-track-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-news .injury-league-name {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--bw-white);
}

.page-news .injury-track-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.page-news .injury-metric {
  background: rgba(0, 0, 0, .18);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}

.page-news .injury-metric .data-number {
  color: var(--bw-orange);
}

.page-news .injury-metric .data-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

.page-news .injury-update-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .injury-update-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 6px;
}

.page-news .injury-update-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bw-orange);
}

.page-news .news-tag-zone {
  background: var(--bw-orange-light);
  padding: 80px 0 84px;
}

.page-news .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-news .tag-item {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--bw-white);
  color: var(--bw-blue);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.page-news .tag-item:hover {
  background: var(--bw-blue);
  color: var(--bw-white);
  transform: translateY(-2px);
}

.page-news .tag-sm {
  font-size: 13px;
  padding: 6px 12px;
}

.page-news .tag-md {
  font-size: 16px;
  padding: 10px 20px;
}

.page-news .tag-lg {
  font-size: 20px;
  padding: 14px 26px;
  background: var(--bw-blue);
  color: var(--bw-white);
}

.page-news .tag-lg:hover {
  background: var(--bw-indigo);
}

.page-news .news-subscribe-zone {
  background: linear-gradient(120deg, var(--bw-blue) 0%, #003399 58%, var(--bw-indigo) 100%);
  color: var(--bw-white);
  padding: 80px 0 84px;
}

.page-news .subscribe-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(4px);
}

@media (min-width: 900px) {
  .page-news .subscribe-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }
}

.page-news .subscribe-copy h2 {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -.3px;
  color: var(--bw-white);
  margin: 14px 0 12px;
}

.page-news .subscribe-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .9);
  margin: 0;
}

.page-news .subscribe-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 8px;
}

.page-news .subscribe-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-news .subscribe-input {
  flex: 1 1 220px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .16);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  color: var(--bw-white);
  font-size: 15px;
  font-family: var(--font-body);
}

.page-news .subscribe-input::placeholder {
  color: rgba(255, 255, 255, .68);
}

.page-news .subscribe-input:focus {
  outline: 2px solid var(--bw-orange);
  outline-offset: 2px;
  background: rgba(255, 255, 255, .22);
}

.page-news .subscribe-btn {
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-news .subscribe-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  margin-top: 14px;
}
