.news-page .news-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.news-page .news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 38, 87, .12);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0, 28, 64, .09);
}

.news-page .news-card picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dcecf5;
}

.news-page .news-card picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-page .news-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.8vw, 1.85rem);
}

.news-page .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .75rem;
  margin: 0 0 .7rem;
  color: #41627a;
  font-size: .82rem;
  font-weight: 680;
}

.news-page .news-card__category {
  padding: .34rem .62rem;
  color: #075f72;
  border-radius: 999px;
  background: #eaf8f8;
}

.news-page .news-card h2 {
  margin: 0 0 .8rem;
  color: #062b55;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.news-page .news-card__body > p {
  margin: 0 0 1.25rem;
  color: rgba(16, 39, 62, .72);
  line-height: 1.68;
}

.news-page .news-card__body > a {
  align-self: flex-start;
  margin-top: auto;
}

.news-page .news-intro {
  max-width: 58rem;
  margin: 0 auto clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}

.news-page .news-intro h2 {
  margin: 0 0 .8rem;
  color: #062b55;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -.045em;
  line-height: 1.04;
}

.news-page .news-intro p {
  margin: 0;
  color: rgba(16, 39, 62, .72);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.news-page .news-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.news-page .news-topics article {
  min-width: 0;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(0, 38, 87, .1);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 34, 74, .06);
}

.news-page .news-topics h3 {
  margin: 0 0 .6rem;
  color: #063766;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

.news-page .news-topics p {
  margin: 0;
  color: rgba(16, 39, 62, .7);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .news-page .news-feed,
  .news-page .news-topics {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .news-page .news-card__body > a {
    width: 100%;
  }
}

@media (forced-colors: active) {
  .news-page .news-card,
  .news-page .news-topics article {
    color: CanvasText;
    border: 1px solid CanvasText;
    background: Canvas;
    box-shadow: none;
  }
}
