.news-card .news-thumb {
  display: block;
  margin: -26px -26px 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line, #d8dee6);
}

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

[data-news-list] .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

[data-news-list] .news-card .news-read-more {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

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

.news-pagination[hidden] {
  display: none;
}

.news-pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line, #d8dee6);
  background: #fff;
  color: var(--blue, #24364b);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.news-pagination button:hover:not(:disabled),
.news-pagination button:focus-visible,
.news-pagination button.active {
  border-color: var(--gold, #b89052);
  background: var(--gold, #b89052);
  color: #111923;
}

.news-pagination button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.news-direct-list {
  display: grid;
  gap: 34px;
}

.news-direct-article {
  width: 100%;
}

.wp-news-detail-shell {
  padding-top: 56px;
  padding-bottom: 72px;
}

.wp-news-article {
  max-width: 1104px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line, #d8dee6);
  box-shadow: var(--shadow, 0 18px 50px rgba(17, 28, 42, .12));
  padding: clamp(28px, 5vw, 56px);
}

.wp-news-article h1 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink, #151a20);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wp-news-hero-image {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line, #d8dee6);
}

.wp-news-hero-image img {
  width: 100%;
  height: auto;
}

.wp-news-article .article-body {
  color: #313b48;
  font-size: 17px;
  line-height: 1.9;
}

.wp-news-article .lead {
  text-indent: 2em;
  text-align: justify;
}

.wp-news-article .article-body p {
  margin: 0 0 18px;
  text-indent: 2em;
  text-align: justify;
}

.wp-news-article .article-body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.wp-news-actions {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line, #d8dee6);
}

@media (max-width: 640px) {
  .news-pagination {
    margin-top: 32px;
  }

  .news-pagination button {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
  }

  .wp-news-article h1 {
    white-space: normal;
  }
}
