.news {
  background: #fff;
}

.news h2 {
  text-align: center;
  margin: 0 0 8px;
}

.news-status {
  margin: 0 0 18px;
  text-align: center;
  color: #577089;
  font-size: 0.98rem;
}

.news-group {
  margin: 18px 0 24px;
}

.news-date {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  color: #1f5f94;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
  border: 1px solid #d6e4f2;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(31, 95, 148, 0.08);
}

.news-item + .news-item {
  margin-top: 10px;
}

.news-media {
  width: 220px;
  max-width: 40vw;
  flex: 0 0 auto;
}

.news-main-image {
  width: 220px;
  max-width: 40vw;
  height: auto;
  border-radius: 8px;
  display: block;
}

.news-media--gallery .news-main-image {
  box-shadow: 0 6px 18px rgba(12, 42, 68, 0.12);
}

.news-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.news-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.news-thumb.is-active {
  border-color: #1f5f94;
  box-shadow: 0 0 0 2px rgba(31, 95, 148, 0.16);
}

.news-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.news-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.news-lead {
  margin: 0;
  color: #17324d;
  font-size: 1.85rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.news-lead-prefix {
  font-weight: 700;
}

.news-lead-title,
.news-lead-value {
  color: #10263b;
}

.news-inline-accent {
  color: #1f5f94;
  font-weight: 800;
}

.news-inline-highlight {
  color: #12426d;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: #dfeefa;
  color: #1c4c75;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.news-pill--accent {
  background: #ffe7a8;
  color: #704d00;
}

.news-body,
.news-cta {
  margin: 0;
  color: #2b3d4f;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 62ch;
}

.news-cta {
  color: #163b5f;
  font-weight: 600;
}

.news-text a {
  color: #005fcc;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.news-text em {
  color: #36556f;
}

.news-item--compact .news-lead {
  font-size: 1.45rem;
}

@media (max-width: 720px) {
  .news-item {
    flex-direction: column;
  }

  .news-item img {
    width: 100%;
    max-width: 100%;
  }

  .news-media,
  .news-main-image {
    width: 100%;
    max-width: 100%;
  }

  .news-lead {
    font-size: 1.45rem;
  }

  .news-body,
  .news-cta {
    max-width: none;
  }
}
