.news-list-page {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.news-list-page li {
  border-bottom: 1px solid var(--border);
}
.news-list-page li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 12px;
  transition: background .2s;
}
.news-list-page li a:hover {
  background: #f4f8fb;
}
.news-date {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  min-width: 90px;
}
.news-cat {
  display: inline-block;
  font-size: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  padding: 2px 10px;
  white-space: nowrap;
}
.news-title {
  font-size: 15px;
  color: var(--text);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.news-body {
  max-width: 780px;
  line-height: 2;
  margin-bottom: 48px;
}
.news-body p {
  margin: 0 0 18px;
}
.news-body p a{
  text-decoration: underline;
  color: #1652BD;
}
.news-body .table {
  margin: 24px 0;
}
.news-back {
  margin-top: 32px;
}
.news-section {
  padding: 48px 0 32px;
}
.news-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.news-section-heading h2 {
  font-size: 24px;
  color: var(--blue);
  margin: 0;
}
.news-top-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.news-top-list li {
  border-bottom: 1px solid var(--border);
}
.news-top-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  transition: background .2s;
}
.news-top-list li a:hover {
  background: var(--light);
}
@media(max-width:720px) {
  .news-list-page li a {
    flex-wrap: wrap;
    gap: 8px;
  }
  .news-top-list li a {
    flex-wrap: wrap;
    gap: 6px;
  }
}
