.news-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #edf3f7;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.12) 100%);
}

.news-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.news-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 43px 70px;
}

.news-hero__eyebrow {
  margin: 0 0 18px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.news-hero__title {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 40px);
  font-weight: 600;
  line-height: 1.25;
}

.news-hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.news-list {
  padding: 64px 43px 96px;
  background: #fff;
}

.news-list__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.news-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(8, 36, 72, 0.14);
  border: 1px solid rgba(8, 36, 72, 0.14);
}

.news-list-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 120px;
  background: #fff;
}

.news-list-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  align-self: center;
  margin: 28px 0 28px 28px;
  object-fit: cover;
  background: #edf3f7;
}

.news-list-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px 28px 48px;
}

.news-list-card__date {
  color: #2d7fa3;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.news-list-card__title {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.55;
}

.news-list-card__category {
  margin-top: 22px;
  color: rgba(8, 36, 72, 0.55);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.news-pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 54px;
}

.news-pager__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(8, 36, 72, 0.18);
  color: rgba(8, 36, 72, 0.38);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 720px) {
  .news-hero {
    min-height: 250px;
  }

  .news-hero__content {
    padding: 112px 24px 42px;
  }

  .news-list {
    padding: 48px 24px 64px;
  }

  .news-list-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .news-list-card__image {
    margin: 22px 0 22px 20px;
  }

  .news-list-card__content {
    padding: 22px 20px 22px 28px;
  }

  .news-list-card__title {
    font-size: 16px;
    line-height: 1.55;
  }
}
