.news-home {
  border-top: 1px solid var(--line);
  background: #f5f9fd;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.news-grid--single {
  grid-template-columns: minmax(0, 760px);
}

.news-card {
  display: grid;
  grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cddfec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 38, 77, .07);
}

.news-card__image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #e9f1f7;
}

.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .24s ease;
}

.news-card__image:hover img {
  transform: scale(1.018);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 24px;
}

.news-card__category,
.news-category-chip {
  color: #075cc8;
  font-size: 13px;
  font-weight: 850;
}

.news-card__title {
  margin: 10px 0 9px;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.45;
}

.news-card__title a {
  color: inherit;
}

.news-card__summary {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card__meta {
  display: flex;
  gap: 14px;
  margin: auto 0 14px;
  padding-top: 18px;
  color: #62778a;
  font-size: 13px;
}

.news-card__read {
  color: #075cc8;
  font-weight: 850;
}

.news-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.news-category-chip {
  padding: 9px 15px;
  border: 1px solid #bdd5e8;
  border-radius: 999px;
  background: #fff;
}

.news-article-header {
  padding: 34px 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f5f9fd;
}

.news-article-header .breadcrumb {
  margin-bottom: 24px;
}

.news-article-header__category {
  margin: 0 0 12px;
  color: #075cc8;
  font-size: 14px;
  font-weight: 900;
}

.news-article-header h1 {
  max-width: 1050px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: 0;
}

.news-article-header__summary {
  max-width: 900px;
  margin: 18px 0 0;
  color: #536d84;
  font-size: 17px;
  line-height: 1.8;
}

.news-article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  color: #60778d;
  font-size: 14px;
}

.news-article-section {
  padding-top: 38px;
}

.news-hero-media {
  margin: 0 0 30px;
  overflow: hidden;
  border: 1px solid #c9dcea;
  border-radius: 8px;
  background: #eaf1f6;
  box-shadow: 0 12px 32px rgba(6, 38, 77, .08);
}

.news-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-hero-media figcaption,
.news-media figcaption {
  padding: 10px 14px;
  color: #60778d;
  font-size: 13px;
  line-height: 1.65;
}

.news-article-intro {
  margin-bottom: 34px;
  padding: 22px 24px;
  border-left: 4px solid #0b6ddd;
  background: #f3f8fd;
}

.news-event-context {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #c9ddea;
  border-radius: 8px;
  background: #fff;
}

.news-event-context strong {
  color: var(--navy-900);
}

.news-event-context p {
  margin: 7px 0 0;
  color: #536d84;
  line-height: 1.75;
}

.news-article-intro p,
.news-article-body p {
  margin: 0 0 18px;
  color: #243f58;
  font-size: 17px;
  line-height: 1.95;
}

.news-article-body section {
  scroll-margin-top: 100px;
}

.news-article-body section h2 {
  margin: 42px 0 18px;
  color: var(--navy-900);
  font-size: 27px;
  line-height: 1.4;
}

.news-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 34px;
}

.news-media-grid--single {
  grid-template-columns: minmax(0, 760px);
}

.news-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid #ccdee9;
  border-radius: 8px;
  background: #eff5f9;
}

.news-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
}

.news-relationship {
  margin-top: 38px;
  padding: 20px 22px;
  border: 1px solid #bed8eb;
  border-radius: 8px;
  background: #f4f9fd;
  color: #1a456a;
  line-height: 1.85;
}

.news-next-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-next-links a {
  display: block;
  padding: 18px;
  border: 1px solid #c7dbe9;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 850;
}

.news-next-links span {
  display: block;
  margin-top: 7px;
  color: #61798f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .news-grid,
  .news-card,
  .news-media-grid,
  .news-next-links {
    grid-template-columns: 1fr;
  }

  .news-card__image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .news-article-header {
    padding: 22px 0 14px;
  }

  .news-article-header h1 {
    font-size: 29px;
  }

  .news-article-header__summary,
  .news-article-intro p,
  .news-article-body p {
    font-size: 16px;
  }

  .news-article-section {
    padding-top: 20px;
  }

  .news-card__body {
    padding: 18px;
  }

  .news-card__title {
    font-size: 19px;
  }

  .news-card__meta {
    margin-top: 6px;
  }

  .news-article-intro {
    padding: 18px;
  }

  .news-article-body section h2 {
    margin-top: 34px;
    font-size: 23px;
  }
}
