.news-page .news-root {
  width: 100%;
  padding: 20px 0 0;
  color: var(--text);
}

.news-page .news-shell {
  width: var(--content-width);
  max-width: var(--content-max);
  margin: 0 auto;
}

.news-page .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(312px, 360px);
  gap: 14px;
  align-items: stretch;
}

.news-page .news-root[data-news-mode="detail"] .news-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  grid-template-rows: auto auto;
}

.news-page .news-main,
.news-page .news-sidebar {
  min-width: 0;
}

.news-page .news-main {
  display: grid;
  gap: 14px;
}

.news-page .news-sidebar {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  align-items: start;
  gap: 14px;
  height: auto;
}

.news-page .news-root.is-reading .news-main,
.news-page .news-root.is-reading .news-sidebar {
  min-height: var(--news-locked-height, auto);
}

.news-page .news-root[data-news-mode="detail"].is-reading .news-main {
  min-height: 0;
}

.news-page .news-ticker,
.news-page .news-featured-card,
.news-page .news-collection,
.news-page .news-article-detail,
.news-page .news-side-card {
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(121, 229, 54, 0.075), transparent 48%),
    var(--surface);
  box-shadow: var(--card-shadow);
}

:root[data-theme="light"] .news-page :is(
  .news-ticker,
  .news-featured-card,
  .news-collection,
  .news-article-detail,
  .news-side-card
) {
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.045);
}

.news-page .news-ticker {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 8px 12px;
}

.news-page .news-ticker__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 160px;
  color: var(--text-strong);
  font-family: var(--font-heading);
}

.news-page .news-ticker__label > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--surface-inverted);
  background: var(--tertiary);
}

.news-page .news-ticker__label strong,
.news-page .news-ticker__label small {
  display: block;
  line-height: 1.1;
}

.news-page .news-ticker__label strong {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-page .news-ticker__label small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.news-page .news-ticker__viewport {
  min-width: 0;
  overflow: hidden;
}

.news-page .news-ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: newsTicker 34s linear infinite;
}

.news-page .news-ticker:hover .news-ticker__track,
.news-page .news-ticker:focus-within .news-ticker__track {
  animation-play-state: paused;
}

.news-page .news-ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
}

.news-page .news-ticker__group a {
  color: var(--muted-strong);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.news-page .news-ticker__group a:hover,
.news-page .news-ticker__group a:focus-visible {
  color: var(--tertiary);
  transform: translateY(-1px);
}

.news-page .news-ticker__separator {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--secondary);
  opacity: 0.78;
}

@keyframes newsTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.news-page .news-featured-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1.06fr);
  min-height: 340px;
  overflow: hidden;
}

.news-page .news-featured-card__media {
  min-height: 318px;
  overflow: hidden;
}

.news-page .news-featured-card__media img,
.news-page .news-article-card__media img,
.news-page .news-article-detail__hero img,
.news-page .news-onair-card__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .news-featured-card__body {
  min-width: 0;
  min-height: 340px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(20px, 3vw, 34px);
}

.news-page .news-category {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(121, 229, 54, 0.34);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--secondary);
  background: rgba(121, 229, 54, 0.08);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.news-page .news-featured-card h1,
.news-page .news-article-detail h1,
.news-page .news-article-detail h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-heading);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.news-page .news-featured-card h1 {
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  line-height: 1.12;
}

.news-page .news-featured-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-page .news-featured-card .news-primary-action {
  justify-self: start;
  margin-top: 2px;
}

.news-page .news-featured-card p,
.news-page .news-article-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.55;
}

.news-page .news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.news-page .news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.news-page .news-meta .rhn-fa-icon {
  flex: 0 0 auto;
  color: var(--secondary);
  font-size: 0.86em;
}

.news-page .news-primary-action,
.news-page .news-secondary-action,
.news-page .news-back-button,
.news-page .news-pagination button,
.news-page .news-comment-form button,
.news-page .news-onair-card__body a {
  font-family: var(--font-heading);
}

.news-page .news-primary-action,
.news-page .news-secondary-action {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(252, 205, 42, 0.42);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--surface-inverted);
  background: var(--tertiary);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(252, 205, 42, 0.18);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.news-page .news-primary-action:hover,
.news-page .news-primary-action:focus-visible,
.news-page .news-secondary-action:hover,
.news-page .news-secondary-action:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04) saturate(1.08);
  box-shadow: 0 16px 34px rgba(252, 205, 42, 0.28);
}

.news-page .news-collection,
.news-page .news-article-detail,
.news-page .news-side-card {
  padding: 16px;
}

.news-page .news-section-head,
.news-page .news-comments-card__head,
.news-page .news-onair-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
}

.news-page .news-section-head h2,
.news-page .news-side-card h2,
.news-page .news-comments-card__head h2,
.news-page .news-onair-card__head h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.news-page .news-section-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-page .news-filter-controls {
  flex: 0 1 650px;
  min-width: min(100%, 420px);
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(260px, 1fr);
  gap: 10px;
  align-items: center;
}

.news-page .news-category-filter {
  position: relative;
  min-width: 0;
}

.news-page .news-category-filter .rhn-fa-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 0.86rem;
  pointer-events: none;
}

.news-page .news-category-filter select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 34px 0 34px;
  color: var(--text);
  background: var(--surface-soft);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  outline: 0;
  appearance: none;
}

.news-page .news-category-filter::after {
  content: "\f078";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font: var(--fa-font-solid);
  font-size: 0.72rem;
  pointer-events: none;
}

.news-page .news-search {
  position: relative;
  min-width: 0;
}

.news-page .news-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 42px 0 12px;
  color: var(--text);
  background: var(--surface-soft);
  outline: 0;
}

.news-page .news-search input:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(252, 205, 42, 0.16);
}

.news-page .news-search input[type="search"]::-webkit-search-cancel-button {
  display: none;
  appearance: none;
}

.news-page .news-search button {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.news-page .news-search button .rhn-fa-icon {
  font-size: 0.88rem;
}

.news-page .news-search button:hover,
.news-page .news-search button:focus-visible {
  color: var(--tertiary);
  background: rgba(252, 205, 42, 0.1);
}

.news-page .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 14px;
}

.news-page .news-article-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 186px auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.news-page .news-article-card:hover,
.news-page .news-article-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--soft-shadow);
  outline: 0;
}

.news-page .news-article-card__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.news-page .news-bookmark {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(252, 205, 42, 0.38);
  border-radius: 8px;
  color: var(--tertiary);
  background: rgba(3, 9, 4, 0.62);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.news-page .news-bookmark:hover,
.news-page .news-bookmark:focus-visible {
  transform: translateY(-1px);
  background: rgba(252, 205, 42, 0.18);
}

.news-page .news-bookmark.is-saved {
  color: #102114;
  background: var(--tertiary);
}

.news-page .news-bookmark.is-loading,
.news-page .news-detail-action.is-loading {
  cursor: progress;
  opacity: 0.72;
}

.news-page .news-article-card__body {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  gap: 8px;
  min-height: 218px;
  padding: 12px;
}

.news-page .news-article-card h3 {
  display: -webkit-box;
  min-height: 2.56em;
  max-height: 2.56em;
  margin: 0;
  overflow: hidden;
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.28;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-page .news-article-card p {
  display: -webkit-box;
  min-height: 2.72em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.88rem;
  line-height: 1.36;
}

.news-page .news-article-card .news-meta {
  align-self: start;
  margin-top: 2px;
}

.news-page .news-empty {
  margin: 14px 0 0;
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.news-page .news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.news-page .news-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.news-page .news-pagination button {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.news-page .news-pagination button:hover:not(:disabled),
.news-page .news-pagination button:focus-visible:not(:disabled),
.news-page .news-pagination button.is-active {
  transform: translateY(-1px);
  border-color: var(--tertiary);
  color: var(--surface-inverted);
  background: var(--tertiary);
}

.news-page .news-pagination button:disabled {
  cursor: default;
  opacity: 0.42;
}

.news-page .news-article-detail {
  overflow: hidden;
}

.news-page .news-back-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.news-page .news-back-button:hover,
.news-page .news-back-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--tertiary);
  color: var(--tertiary);
}

.news-page .news-article-detail__hero {
  position: relative;
  height: clamp(220px, 32vw, 390px);
  overflow: hidden;
  border-radius: 8px;
  margin: 14px 0;
}

.news-page .news-article-detail__hero figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 8px 10px;
  color: #f8fff4;
  background: rgba(3, 9, 4, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.news-page .news-article-detail__body {
  display: grid;
  gap: 12px;
}

.news-page .news-article-detail h1,
.news-page .news-article-detail h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.18;
  max-width: 100%;
  word-break: break-word;
}

.news-page .news-detail-meta {
  gap: 10px 14px;
}

.news-page .news-detail-actions,
.news-page .news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-page .news-detail-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: var(--surface-soft);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.news-page .news-detail-action:hover,
.news-page .news-detail-action:focus-visible {
  transform: translateY(-1px);
  border-color: var(--tertiary);
  color: var(--tertiary);
}

.news-page .news-detail-action.is-saved,
.news-page .news-detail-action.is-saved:hover,
.news-page .news-detail-action.is-saved:focus-visible {
  border-color: rgba(252, 205, 42, 0.56);
  color: #102114;
  background: var(--tertiary);
}

.news-page .news-detail-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(121, 229, 54, 0.24);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted-strong);
  background: rgba(121, 229, 54, 0.07);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
}

.news-page .news-detail-empty-text {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.news-page .news-article-body-shell {
  position: relative;
}

.news-page .news-article-body-viewport {
  max-height: none;
  overflow: visible;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.58) transparent;
}

.news-page .news-article-body-shell.is-long .news-article-body-viewport {
  height: auto;
}

.news-page .news-article-body-viewport.is-expanded {
  overflow: visible;
}

.news-page .news-article-body-content {
  display: grid;
  gap: 13px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.news-page .news-article-body-content p,
.news-page .news-article-body-content ul,
.news-page .news-article-body-content ol,
.news-page .news-article-body-content blockquote,
.news-page .news-article-body-content h2,
.news-page .news-article-body-content h3 {
  margin: 0;
}

.news-page .news-article-body-content h2,
.news-page .news-article-body-content h3 {
  color: var(--text-strong);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.news-page .news-article-body-content h2 {
  font-size: 1.28rem;
}

.news-page .news-article-body-content h3 {
  font-size: 1.12rem;
}

.news-page .news-article-body-content ul,
.news-page .news-article-body-content ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.news-page .news-article-body-content ul {
  list-style: disc;
}

.news-page .news-article-body-content blockquote {
  border-left: 3px solid var(--tertiary);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-strong);
  background: rgba(252, 205, 42, 0.08);
}

.news-page .news-popular-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.news-page .news-popular-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.news-page .news-popular-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-page .news-popular-list li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--surface-inverted);
  background: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-page .news-popular-list a {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.news-page .news-popular-list strong {
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.news-page .news-popular-list a:hover strong,
.news-page .news-popular-list a:focus-visible strong {
  color: var(--tertiary);
}

.news-page .news-popular-list small {
  color: var(--muted);
  font-size: 0.78rem;
}

.news-page .news-related-card {
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.news-page .news-root[data-news-mode="detail"] .news-related-card {
  height: var(--news-detail-card-height, auto);
}

.news-page .news-related-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  margin-top: 12px;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.58) transparent;
}

.news-page .news-related-list::-webkit-scrollbar {
  width: 6px;
}

.news-page .news-related-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(121, 229, 54, 0.58);
}

.news-page .news-related-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  color: var(--text);
  background: var(--surface-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.news-page .news-related-item:hover,
.news-page .news-related-item:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  box-shadow: var(--soft-shadow);
  outline: 0;
}

.news-page .news-related-item img {
  width: 92px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
}

.news-page .news-related-item > span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.news-page .news-related-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-page .news-related-item small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.news-page .news-related-item small .rhn-fa-icon {
  color: var(--secondary);
  font-size: 0.84em;
}

.news-page .news-list-insights {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 14px;
}

.news-page .news-categories-card,
.news-page .news-tags-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
}

.news-page .news-categories-card {
  --news-category-card-min-height: 308px;
  height: var(--news-category-card-min-height);
  min-height: var(--news-category-card-min-height);
}

.news-page .news-tags-card {
  --news-tags-card-min-height: 260px;
  height: var(--news-tags-card-min-height);
  min-height: var(--news-tags-card-min-height);
}

.news-page .news-category-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  max-height: 196px;
  overflow-y: auto;
  margin: 12px 0 0;
  padding: 0 4px 0 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.56) transparent;
}

.news-page .news-category-summary::-webkit-scrollbar {
  width: 6px;
}

.news-page .news-category-summary::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(121, 229, 54, 0.56);
}

.news-page .news-category-summary button {
  width: 100%;
  min-height: 38px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 1px solid rgba(121, 229, 54, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted-strong);
  background: rgba(121, 229, 54, 0.07);
  font-family: var(--font-heading);
  text-align: left;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.news-page .news-category-summary button:hover,
.news-page .news-category-summary button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(121, 229, 54, 0.42);
  color: var(--secondary);
  background: rgba(121, 229, 54, 0.12);
}

.news-page .news-category-summary span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.82rem;
  font-weight: 600;
}

.news-page .news-category-summary .rhn-fa-icon {
  flex: 0 0 auto;
  display: inline-block;
  color: var(--secondary);
  font-size: 0.74rem;
}

.news-page .news-category-summary strong {
  flex: 0 0 auto;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 600;
}

.news-page .news-category-summary strong::before {
  content: "(";
}

.news-page .news-category-summary strong::after {
  content: ")";
}

.news-page .news-tag-cloud {
  min-height: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  max-height: 196px;
  overflow-y: auto;
  margin-top: 12px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.56) transparent;
}

.news-page .news-tag-cloud::-webkit-scrollbar {
  width: 6px;
}

.news-page .news-tag-cloud::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(121, 229, 54, 0.56);
}

.news-page .news-tag-cloud span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(121, 229, 54, 0.24);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted-strong);
  background: rgba(121, 229, 54, 0.07);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
}

.news-page .news-tag-cloud .rhn-fa-icon {
  color: var(--secondary);
  font-size: 0.74rem;
}

.news-page .news-comments-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px;
}

.news-page .news-comments-card__head span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--secondary);
  background: rgba(121, 229, 54, 0.08);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-page .news-comment-form {
  display: grid;
  gap: 9px;
}

.news-page .news-reply-context {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-left: 3px solid var(--secondary);
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.82rem;
}

.news-page .news-reply-context[hidden] {
  display: none;
}

.news-page .news-reply-context button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.news-page .news-reply-context button:hover,
.news-page .news-reply-context button:focus-visible {
  color: var(--tertiary);
  background: rgba(252, 205, 42, 0.1);
}

.news-page .news-comment-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 4px;
  align-items: stretch;
}

.news-page .news-comment-input-row textarea {
  width: 100%;
  min-height: 46px;
  max-height: 112px;
  resize: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--surface-soft);
  line-height: 1.45;
  outline: 0;
  overflow-y: auto;
}

.news-page .news-comment-input-row textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(252, 205, 42, 0.16);
}

.news-page .news-comment-input-row button {
  min-width: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 229, 54, 0.42);
  border-radius: 8px;
  padding: 0;
  color: var(--surface-inverted);
  background: var(--secondary);
  font-size: 1.05rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.news-page .news-comment-input-row button .rhn-fa-icon {
  font-size: 1rem;
}

.news-page .news-comment-input-row button:hover,
.news-page .news-comment-input-row button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
}

.news-page .news-comments-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(121, 229, 54, 0.58) transparent;
}

.news-page .news-comment-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.news-page .news-comment-item.is-reply {
  margin-left: 28px;
}

.news-page .news-comment-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-page .news-comment-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--secondary);
  background: rgba(121, 229, 54, 0.1);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.news-page .news-comment-content {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.news-page .news-comment-meta {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.news-page .news-comment-name {
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
}

.news-page .news-comment-you {
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--surface-inverted);
  background: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
}

.news-page .news-comment-time {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.news-page .news-comment-reference {
  border-left: 3px solid var(--secondary);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.82rem;
}

.news-page .news-comment-text {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.news-page .news-comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-page .news-comment-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.news-page .news-comment-action:hover,
.news-page .news-comment-action:focus-visible {
  transform: translateY(-1px);
  color: var(--tertiary);
}

.news-page .news-comment-action.delete:hover,
.news-page .news-comment-action.delete:focus-visible {
  color: #ffcf85;
}

.news-page .news-comments-empty {
  margin: 0;
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  text-align: center;
}

.news-page .news-onair-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(121, 229, 54, 0.34) !important;
  color: #f7fff1;
  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(121, 229, 54, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(0, 45, 22, 0.98), rgba(0, 20, 12, 0.98)) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.news-page .news-onair-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 172px;
  height: 138px;
  transform: translate(-50%, -50%);
  background: url("../images/hero/hero-light.webp") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.news-page .news-onair-card__head h2,
.news-page .news-onair-card__body h3 {
  color: #ffffff;
}

.news-page .news-onair-card__head span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #102114;
  background: var(--tertiary);
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 800;
}

.news-page .news-onair-card__body {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.news-page .news-onair-card__body img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.news-page .news-onair-card__body h3,
.news-page .news-onair-card__body p,
.news-page .news-onair-card__body small {
  margin: 0;
}

.news-page .news-onair-card__body h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.18;
}

.news-page .news-onair-card__body p,
.news-page .news-onair-card__body small {
  display: block;
  margin-top: 3px;
  color: #cfe5c8;
  font-size: 0.74rem;
  line-height: 1.22;
}

.news-page .news-onair-card__body small {
  font-family: var(--font-heading);
  font-weight: 700;
}

.news-page .news-onair-card__body a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #102114;
  background: linear-gradient(180deg, #b7f022, #76bd00);
  box-shadow: 0 12px 26px rgba(121, 229, 54, 0.24);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.news-page .news-onair-card__body a:hover,
.news-page .news-onair-card__body a:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
}

.news-page .news-equalizer {
  width: min(100%, 190px);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  margin: 12px auto 0;
}

.news-page .news-equalizer i {
  flex: 1 1 0;
  max-width: 4px;
  height: calc(var(--h) * 1px);
  min-height: 6px;
  border-radius: 999px;
  background: #79e536;
}

@media (min-width: 1181px) {
  .news-page .news-layout {
    align-items: stretch;
  }

  .news-page .news-main,
  .news-page .news-sidebar {
    height: 100%;
  }

  .news-page .news-main {
    display: flex;
    flex-direction: column;
  }

  .news-page .news-root[data-news-mode="detail"] .news-ticker {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }

  .news-page .news-root[data-news-mode="detail"] .news-main {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    display: grid;
    align-content: start;
    align-items: start;
    min-height: 0;
  }

  .news-page .news-root[data-news-mode="detail"] .news-sidebar {
    grid-column: 2;
    grid-row: 1 / 3;
    grid-template-rows: auto auto;
    align-items: start;
  }

  .news-page .news-root[data-news-mode="detail"] .news-comments-card {
    min-height: 340px;
    overflow: hidden;
  }

  .news-page .news-root[data-news-mode="detail"] .news-comments-list {
    overflow-y: auto;
  }

  .news-page .news-root[data-news-mode="detail"] .news-onair-card {
    height: auto;
    min-height: 0;
    align-self: start;
    display: block;
  }

  .news-page .news-root[data-news-mode="detail"] .news-onair-card__body {
    margin-top: 12px;
  }

  .news-page .news-root[data-news-mode="detail"] .news-equalizer {
    height: 30px;
    margin-top: 10px;
  }

  .news-page .news-root[data-news-mode="list"] .news-ticker,
  .news-page .news-root[data-news-mode="list"] .news-featured-card {
    flex: 0 0 auto;
  }

  .news-page .news-root[data-news-mode="list"] .news-collection {
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto auto auto;
    overflow: visible;
  }

  .news-page .news-root[data-news-mode="list"] .news-grid {
    min-height: 0;
    align-content: start;
    overflow-y: visible;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(121, 229, 54, 0.58) transparent;
  }

  .news-page .news-root[data-news-mode="list"] .news-grid::-webkit-scrollbar {
    width: 6px;
  }

  .news-page .news-root[data-news-mode="list"] .news-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(121, 229, 54, 0.52);
  }

  .news-page .news-sidebar {
    grid-template-rows: auto auto auto;
    align-content: start;
    align-items: start;
  }

  .news-page .news-root[data-news-mode="list"] .news-sidebar {
    height: auto;
  }

  .news-page .news-collection {
    flex: 1 1 auto;
  }

  .news-page .news-onair-card {
    width: 100%;
    min-height: 218px;
    height: auto;
    display: grid;
    grid-template-rows: auto auto minmax(0, auto);
    align-content: start;
  }
}

@media (max-width: 1180px) {
  .news-page .news-layout,
  .news-page .news-root[data-news-mode="detail"] .news-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-page .news-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    height: auto;
  }

  .news-page .news-root[data-news-mode="detail"] .news-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page .news-comments-card {
    min-height: 360px;
  }

  .news-page .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .news-page .news-root {
    padding: 14px 0 0;
  }

  .news-page .news-shell {
    width: calc(100% - 28px);
  }

  .news-page .news-ticker {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .news-page .news-ticker__label {
    min-width: 0;
  }

  .news-page .news-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-page .news-featured-card__media {
    min-height: 220px;
  }

  .news-page .news-featured-card__body {
    min-height: 0;
    padding: 16px;
  }

  .news-page .news-section-head {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }

  .news-page .news-filter-controls {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    align-content: start;
    gap: 8px;
  }

  .news-page .news-search,
  .news-page .news-category-filter {
    width: 100%;
  }

  .news-page .news-grid,
  .news-page .news-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-page .news-root[data-news-mode="detail"] .news-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-page .news-root[data-news-mode="detail"] .news-related-card {
    height: auto !important;
  }

  .news-page .news-root[data-news-mode="detail"] .news-related-list {
    max-height: 552px;
    overflow-y: auto;
    padding-right: 6px;
  }

  .news-page .news-root[data-news-mode="detail"] .news-related-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .news-page .news-popular-list {
    max-height: 342px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(121, 229, 54, 0.58) transparent;
  }

  .news-page .news-popular-list::-webkit-scrollbar {
    width: 6px;
  }

  .news-page .news-popular-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(121, 229, 54, 0.52);
  }

  .news-page .news-article-card {
    grid-template-rows: 190px minmax(0, 1fr);
  }

  .news-page .news-comments-card {
    min-height: 0;
  }

  .news-page .news-comments-list {
    overflow: visible;
    padding-right: 0;
  }

  .news-page .news-comment-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
  }

  .news-page .news-comment-item.is-reply {
    margin-left: 14px;
  }

  .news-page .news-comment-avatar {
    width: 34px;
    height: 34px;
  }

  .news-page .news-comment-time {
    width: 100%;
    margin-left: 0;
  }

  .news-page .news-comment-input-row {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .news-page .news-article-body-shell.is-long .news-article-body-viewport {
    height: auto;
  }

  .news-page .news-article-detail h1,
  .news-page .news-article-detail h2 {
    font-size: 1.28rem;
    line-height: 1.16;
  }

.news-page .news-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page .news-detail-action {
    width: 100%;
    min-width: 0;
  }

  .news-page .news-detail-action span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* Keep detail save/share actions visually consistent on every article. */
.news-page .news-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.news-page .news-detail-action,
.news-page .news-detail-action.is-saved,
.news-page .news-detail-action.is-saved:hover,
.news-page .news-detail-action.is-saved:focus-visible {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface-soft);
  box-shadow: none;
}

.news-page .news-detail-action:hover,
.news-page .news-detail-action:focus-visible,
.news-page .news-detail-action.is-saved:hover,
.news-page .news-detail-action.is-saved:focus-visible {
  border-color: var(--tertiary);
  color: var(--tertiary);
  background: var(--surface-soft);
}

@media (max-width: 430px) {
  .news-page .news-detail-action {
    min-height: 34px;
    gap: 6px;
    padding-inline: 8px;
    font-size: 0.76rem;
  }
}

@media (max-width: 430px) {
  .news-page .news-collection,
  .news-page .news-article-detail,
  .news-page .news-side-card {
    padding: 14px;
  }

  .news-page .news-article-card {
    grid-template-rows: 168px minmax(0, 1fr);
  }

  .news-page .news-onair-card__body {
    grid-template-columns: 46px minmax(0, 1fr) 38px;
  }

  .news-page .news-onair-card__body a {
    grid-column: auto;
    width: 38px;
    height: 38px;
    border-radius: 999px;
  }

}

.news-article-card.is-page-hidden {
  display: none !important;
}

/* News cards follow the site-wide no-visible-border treatment. */
.news-page :is(
  .news-ticker,
  .news-featured-card,
  .news-collection,
  .news-article-detail,
  .news-side-card,
  .news-article-card,
  .news-related-card,
  .news-categories-card,
  .news-tags-card,
  .news-comments-card,
  .news-onair-card
) {
  border-color: transparent !important;
  box-shadow: var(--rhn-card-separator-shadow) !important;
}

.news-page :is(
  .news-ticker,
  .news-featured-card,
  .news-collection,
  .news-article-detail,
  .news-side-card,
  .news-article-card,
  .news-related-card,
  .news-categories-card,
  .news-tags-card,
  .news-comments-card,
  .news-onair-card
):is(:hover, :focus-visible, :focus-within) {
  border-color: transparent !important;
  box-shadow: var(--rhn-card-separator-shadow-hover) !important;
}
.news-page .news-article-body-content img {
  display: block;
  width: auto !important;
  max-width: min(100%, 860px) !important;
  height: auto !important;
  border-radius: 12px;
  object-fit: contain;
}

.news-page .news-article-body-content figure {
  display: block;
  width: min(100%, 860px) !important;
  max-width: 100% !important;
  margin: 4px auto !important;
}

.news-page .news-article-body-content figure img {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.news-page .news-article-body-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.45;
}

.news-page .news-article-body-content {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.news-page .news-article-body-content :is(
  p,
  li,
  blockquote,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  figcaption,
  a,
  span,
  strong,
  em,
  b,
  i
) {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.news-page .news-article-body-content :is(
  img,
  video,
  audio,
  canvas,
  table
) {
  max-width: 100% !important;
}

.news-page .news-article-body-content table {
  display: block;
  width: 100% !important;
  overflow-x: auto;
}

:root[data-theme="dark"] .news-page {
  background: #000000 !important;
}

:root[data-theme="dark"] .news-page :is(
  .news-ticker,
  .news-featured-card,
  .news-collection,
  .news-article-detail,
  .news-side-card,
  .news-article-card,
  .news-related-card,
  .news-categories-card,
  .news-tags-card,
  .news-comments-card
) {
  border-color: rgba(192, 235, 166, 0.14) !important;
  background: #0b0f0d !important;
  box-shadow: none !important;
}

:root[data-theme="dark"] .news-page .news-onair-card {
  border-color: rgba(121, 229, 54, 0.22) !important;
  background: #0b0f0d !important;
  box-shadow: none !important;
}

:root[data-theme="dark"] .news-page .news-onair-card::before {
  background-image: none !important;
}

.news-page .news-ticker,
.news-page .news-collection,
.news-page .news-collection .news-article-card,
:root[data-theme="light"] .news-page .news-ticker,
:root[data-theme="light"] .news-page .news-collection,
:root[data-theme="light"] .news-page .news-collection .news-article-card,
:root[data-theme="dark"] .news-page .news-ticker,
:root[data-theme="dark"] .news-page .news-collection,
:root[data-theme="dark"] .news-page .news-collection .news-article-card {
  border-color: transparent !important;
  box-shadow: none !important;
}

@media (min-width: 1181px) {
  .news-page .news-root[data-news-mode="list"] .news-collection {
    height: auto !important;
    overflow: visible !important;
  }

  .news-page .news-root[data-news-mode="list"] .news-grid {
    grid-auto-rows: minmax(416px, auto);
    align-items: stretch;
    overflow: visible !important;
  }

  .news-page .news-root[data-news-mode="list"] .news-article-card {
    grid-template-rows: 186px minmax(218px, auto);
    min-height: 416px;
    height: 100%;
  }

  .news-page .news-root[data-news-mode="list"] .news-article-card__body {
    min-height: 218px;
  }

  .news-page .news-popular-list {
    gap: 8px;
  }

  .news-page .news-popular-list li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding-bottom: 8px;
  }

  .news-page .news-popular-list li > span {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .news-page .news-popular-list strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.news-page .news-onair-card,
:root[data-theme="light"] .news-page .news-onair-card,
:root[data-theme="dark"] .news-page .news-onair-card {
  border-color: transparent !important;
  color: #f7fff1 !important;
  background: #0b0f0d !important;
  box-shadow: none !important;
}

.news-page .news-onair-card::before,
:root[data-theme="light"] .news-page .news-onair-card::before,
:root[data-theme="dark"] .news-page .news-onair-card::before {
  background-image: none !important;
}

.news-page .news-onair-card__head h2,
.news-page .news-onair-card__body h3,
:root[data-theme="light"] .news-page .news-onair-card__head h2,
:root[data-theme="light"] .news-page .news-onair-card__body h3,
:root[data-theme="dark"] .news-page .news-onair-card__head h2,
:root[data-theme="dark"] .news-page .news-onair-card__body h3 {
  color: #ffffff !important;
}

.news-page .news-onair-card__body p,
.news-page .news-onair-card__body small,
:root[data-theme="light"] .news-page .news-onair-card__body p,
:root[data-theme="light"] .news-page .news-onair-card__body small,
:root[data-theme="dark"] .news-page .news-onair-card__body p,
:root[data-theme="dark"] .news-page .news-onair-card__body small {
  color: #cfe5c8 !important;
}

.news-page .news-saved-main {
  width: 100%;
}

.news-page .news-saved-collection {
  min-height: min(720px, 72vh);
}

.news-page .news-saved-collection .news-section-head h1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.18;
  text-transform: uppercase;
}

/* Final mobile overflow guard for detail pages. */
@media (max-width: 760px) {
  .news-page .news-shell,
  .news-page .news-layout,
  .news-page .news-main,
  .news-page .news-article-detail,
  .news-page .news-article-detail__body,
  .news-page .news-detail-tags,
  .news-page .news-detail-actions,
  .news-page .news-article-body-shell,
  .news-page .news-article-body-viewport,
  .news-page .news-article-body-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .news-page .news-root {
    overflow-x: hidden !important;
  }

  .news-page .news-detail-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: hidden !important;
  }

  .news-page .news-detail-tags span {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .news-page .news-detail-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: hidden !important;
  }

  .news-page .news-detail-action,
  .news-page .news-detail-action.is-saved {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-inline: 8px !important;
    overflow: hidden !important;
  }

  .news-page .news-detail-action span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}


