.newsroom-home {
  background:
    radial-gradient(circle at 10% 10%, rgba(33, 197, 232, 0.16), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #07183f;
  padding: clamp(4.5rem, 8vw, 7.5rem) 1.25rem;
}

.newsroom-home__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.newsroom-home__head {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.newsroom-home__eyebrow {
  color: #087ca5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.newsroom-home h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  max-width: none;
  white-space: nowrap;
}

.newsroom-home__all,
.newsroom-home__read {
  color: #075ea8;
  font-weight: 800;
  text-decoration: none;
}

.newsroom-home__all {
  white-space: nowrap;
}

.newsroom-home__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newsroom-home__card {
  background: #fff;
  border: 1px solid rgba(7, 24, 63, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 1.2rem 3rem rgba(7, 24, 63, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.newsroom-home__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #07183f, #075ea8 60%, #21c5e8);
  display: block;
  overflow: hidden;
}

.newsroom-home__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.newsroom-home__card:hover .newsroom-home__media img {
  transform: scale(1.025);
}

.newsroom-home__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.newsroom-home__meta {
  color: #47708a;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.55rem;
  justify-content: space-between;
}

.newsroom-home__card h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0.85rem 0 0.65rem;
}

.newsroom-home__card h3 a {
  color: inherit;
  text-decoration: none;
}

.newsroom-home__card p {
  color: #3f5366;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.newsroom-home__read {
  margin-top: auto;
}

@media (max-width: 820px) {
  .newsroom-home__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsroom-home h2 {
    max-width: 16ch;
    white-space: normal;
  }

  .newsroom-home__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsroom-home__media img {
    transition: none;
  }
}
