.news-page-content {
  background: #ffffff;
}

.news-page .page-primary::before {
  display: none;
}

.news-hero {
  display: grid;
  gap: 8px;
}

.news-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: 0;
}

.news-hero p {
  max-width: 72ch;
  margin: 0;
  color: #44515f;
  font-size: 0.94rem;
}

.news-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
}

.news-list-panel,
.news-tv-panel {
  min-width: 0;
}

.news-list-panel h2,
.news-tv-panel h2 {
  margin: 0;
  color: #101820;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.news-section-rule {
  width: 48px;
  height: 3px;
  margin: 8px 0 12px;
  background: #1f72b8;
}

.news-list {
  overflow: hidden;
  border: 1px solid #d6dde6;
  border-radius: 6px;
  background: #ffffff;
}

.news-list-item {
  display: grid;
  grid-template-columns: minmax(128px, 168px) minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border-bottom: 1px solid #e4e9ef;
}

.news-list-item:last-child {
  border-bottom: 0;
}

.news-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  background: #dfe7ef;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-copy {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.news-category,
.news-provider {
  margin: 0;
  color: #1f72b8;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.news-list-copy h3,
.news-tv-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.news-list-copy h3 a {
  color: #111827;
}

.news-list-copy > p:not(.news-category),
.news-tv-item p:not(.news-provider) {
  margin: 0;
  color: #374151;
  font-size: 0.82rem;
  line-height: 1.45;
}

.news-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
  color: #596576;
  font-size: 0.8rem;
}

.news-meta-row a {
  color: #1f72b8;
  font-weight: 800;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.news-pagination a {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid #1f72b8;
  border-radius: 4px;
  color: #1f72b8;
  font-size: 0.82rem;
  font-weight: 800;
}

.news-pagination a.is-active {
  background: #1f72b8;
  color: #ffffff;
}

.news-pagination .news-pagination-next {
  min-width: 0;
  padding-inline: 18px;
}

.news-tv-panel {
  padding: 18px;
  border-radius: 6px;
  background: #eef6ff;
}

.news-tv-list {
  display: grid;
  gap: 14px;
}

.news-tv-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.news-tv-item img {
  width: 96px;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  object-fit: cover;
}

.news-provider {
  margin-top: 3px;
  text-transform: none;
}

.news-tv-link {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid #1f72b8;
  border-radius: 4px;
  color: #1f72b8;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1180px) {
  .news-content-grid {
    grid-template-columns: 1fr;
  }

  .news-tv-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .news-list-item,
  .news-tv-item {
    grid-template-columns: 1fr;
  }

  .news-tv-list {
    grid-template-columns: 1fr;
  }

  .news-thumb,
  .news-tv-item img {
    width: 100%;
  }
}
