.page-news .news-hero {
  position: relative;
  padding: 2rem 0 3.5rem;
  background: var(--qmh-black);
  overflow: hidden;
}

.page-news .news-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

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

.page-news .news-hero .container-wide {
  position: relative;
  z-index: 1;
}

.page-news .news-hero .breadcrumb-link {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.42);
}

.page-news .news-hero .breadcrumb-link[aria-current="page"] {
  color: var(--qmh-gold);
}

.page-news .news-hero-grid {
  display: grid;
  gap: 2.4rem;
  margin-top: 2.8rem;
}

.page-news .news-hero-copy .section-kicker {
  background: var(--qmh-gold);
  color: var(--qmh-black);
}

.page-news .news-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--qmh-white);
  margin: 0.9rem 0 1.1rem;
  max-width: 18em;
}

.page-news .news-hero h1::after {
  content: "";
  display: block;
  width: 76px;
  height: 6px;
  margin-top: 1.1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--qmh-gold), var(--qmh-green));
}

.page-news .news-hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  border-left: 4px solid var(--qmh-gold);
  padding-left: 1rem;
  max-width: 46em;
  margin-bottom: 0;
}

.page-news .news-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.page-news .news-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.page-news .stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(0, 200, 81, 0.55);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-news .stat-card:hover {
  border-color: var(--qmh-gold);
  transform: translateY(-4px);
}

.page-news .stat-num {
  font-family: var(--font-sans);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--qmh-gold);
}

.page-news .stat-label {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .section-head {
  margin-bottom: 1.8rem;
}

.page-news .section-number {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.9em;
  font-weight: 800;
  color: var(--qmh-gold);
}

.page-news .tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.8rem 0 0.4rem;
  padding: 0.7rem;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(255, 215, 0, 0.28);
  border-radius: var(--radius-lg);
}

.page-news .tabs-trigger {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-news .tabs-trigger:hover,
.page-news .tabs-trigger:focus-visible {
  color: var(--qmh-white);
  border-color: rgba(255, 215, 0, 0.5);
  outline: none;
}

.page-news .tabs-trigger[aria-selected="true"] {
  background: var(--qmh-green);
  border-color: var(--qmh-green);
  color: var(--qmh-black);
}

.page-news .tabs-panel {
  margin-top: 1rem;
}

.page-news .video-grid {
  display: grid;
  gap: 1.5rem;
}

.page-news .video-card {
  background: var(--qmh-black);
  border: 3px solid #262626;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-news .video-card:hover {
  transform: translateY(-6px);
  border-color: var(--qmh-green);
}

.page-news .video-thumb {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.page-news .video-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.page-news .video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.page-news .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.page-news .video-play svg {
  width: 3rem;
  height: 3rem;
  transition: transform 0.3s var(--ease);
}

.page-news .video-card:hover .video-play svg {
  transform: scale(1.15);
}

.page-news .video-duration {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.2rem 0.55rem;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid var(--qmh-gold);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--qmh-white);
}

.page-news .video-meta {
  padding: 1.1rem 1.2rem 1.3rem;
}

.page-news .video-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-news .video-meta h3 {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--qmh-white);
  margin: 0.6rem 0 0.35rem;
}

.page-news .video-meta p {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.page-news .video-feature .video-meta h3 {
  font-size: 1.28rem;
}

.page-news .video-feature .video-meta p {
  font-size: 0.94rem;
}

.page-news .analysis-grid {
  display: grid;
  gap: 1.8rem;
}

.page-news .analysis-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--qmh-white);
  border: 3px solid var(--qmh-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-news .analysis-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
}

.page-news .analysis-thumb {
  overflow: hidden;
  background: var(--qmh-gray);
}

.page-news .analysis-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news .analysis-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.4rem 1.4rem 1.6rem;
}

.page-news .analysis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-news .analysis-body h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--qmh-black);
  margin: 0;
}

.page-news .analysis-body p {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.page-news .analysis-body .btn {
  align-self: flex-start;
  margin-top: 0.6rem;
}

.page-news .analysis-index {
  position: absolute;
  right: 1rem;
  bottom: 0.4rem;
  font-family: var(--font-sans);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 1;
}

.page-news .analysis-data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid var(--qmh-gray);
}

.page-news .analysis-data-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.page-news .data-num {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--qmh-gold);
}

.page-news .data-label {
  font-size: 0.8rem;
  color: var(--c-muted);
}

.page-news .updates-layout {
  display: grid;
  gap: 2.2rem;
  margin-top: 2rem;
}

.page-news .updates-list {
  display: grid;
  gap: 2.2rem;
  position: relative;
  border-left: 3px solid var(--qmh-green);
  padding-left: 1.6rem;
}

.page-news .update-item {
  position: relative;
}

.page-news .update-item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--qmh-gold);
  border: 2px solid var(--qmh-green);
  box-shadow: 0 0 0 5px rgba(0, 200, 81, 0.22);
}

.page-news .update-tag {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--qmh-green);
}

.page-news .update-item h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--qmh-white);
  margin: 0.4rem 0 0.5rem;
}

.page-news .update-item p {
  font-family: var(--font-serif);
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}

.page-news .updates-aside {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.page-news .updates-aside .image-wrap {
  margin: 0;
}

.page-news .updates-aside p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.page-news .news-explore-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.8rem;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(135deg, var(--qmh-green-dark) 0%, var(--qmh-black) 68%);
  border-radius: var(--radius-lg);
  border-color: var(--qmh-black);
}

.page-news .news-explore-copy .section-kicker {
  background: var(--qmh-green);
  color: var(--qmh-black);
}

.page-news .news-explore-copy h2 {
  font-family: var(--font-sans);
  font-size: 1.9rem;
  color: var(--qmh-white);
  margin: 0.5rem 0 0.6rem;
}

.page-news .news-explore-copy p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 42em;
}

.page-news .news-explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

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

  .page-news .analysis-thumb img {
    height: 260px;
  }
}

@media (min-width: 760px) {
  .page-news .news-hero {
    padding: 3rem 0 4.5rem;
  }

  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 3.2rem;
    align-items: end;
  }

  .page-news .news-hero-stats {
    gap: 1rem;
  }

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

  .page-news .analysis-card-large {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .page-news .analysis-card-large .analysis-thumb {
    flex: 1 1 45%;
    display: flex;
  }

  .page-news .analysis-card-large .analysis-thumb img {
    height: 100%;
    min-height: 300px;
    flex: 1;
  }

  .page-news .analysis-card-large .analysis-body {
    flex: 1 1 55%;
    padding: 1.8rem 2rem;
  }

  .page-news .updates-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
    align-items: start;
  }

  .page-news .news-explore-panel {
    grid-template-columns: minmax(0, 1.5fr) auto;
    align-items: center;
    padding: 2.6rem 2.8rem;
  }
}

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

  .page-news .video-feature {
    grid-column: span 2;
  }
}
