.health-news {
  margin-top: 2rem;
  border-top: 1px solid #d7e4e8;
  padding-top: 1.6rem;
}
.news-heading {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.news-heading h2 {
  margin: 0;
  font-size: 1.35rem;
}
.news-heading p,
.news-foot p {
  font-size: 0.875rem;
  color: #5a707b;
  margin: 0.4rem 0;
}
.news-heading > a {
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 270px;
}
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.news-filters [aria-pressed='true'] {
  background: #176f68 !important;
  color: white !important;
  border-color: #176f68 !important;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.5rem;
}
.news-item {
  padding: 1rem 0;
  border-bottom: 1px solid #d7e4e8;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #58707b;
}
.news-meta > span:first-child {
  color: #176f68;
  font-weight: 650;
}
.news-item h3 {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.5rem 0 0.2rem;
}
.news-item a {
  color: #20323e;
  text-decoration: none;
}
.news-item a:hover {
  color: #176f68;
  text-decoration: underline;
}
.news-item a:focus-visible {
  outline: 3px solid #219c91;
  outline-offset: 4px;
}
.news-more {
  margin: 1rem 0;
}
.news-foot {
  margin-top: 1rem;
}
.news-warning {
  background: #fff4d8;
  color: #684800;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .news-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-list {
    grid-template-columns: 1fr;
  }
  .news-heading > a {
    max-width: none;
  }
}
