.news-list-page {
  --news-list-blue: #1565f8;
  --news-list-ink: #123a83;
  --news-list-text: #24344d;
  --news-list-muted: #70809a;
  --news-list-line: #dce5f0;
  background: #f6f8fc;
  padding: 24px 0 88px;
}

.news-list-page .container { max-width: 1240px; }

.news-list-breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 8px 0 24px;
}

.news-list-breadcrumbs a {
  color: var(--news-list-muted);
  text-decoration: none;
}

.news-list-breadcrumbs a:last-of-type {
  color: var(--news-list-ink);
  font-weight: 600;
}

.news-list-breadcrumbs a:hover { color: var(--news-list-blue); }
.news-list-breadcrumbs__separator { color: #aab8ca; }

.news-list-content {
  float: none;
  margin: 0 auto;
}

.news-list {
  margin: 0 auto;
  max-width: 1120px;
}

.news-list__heading {
  color: var(--news-list-ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 24px 0 14px;
}

.news-list__accent {
  background: var(--news-list-blue);
  border-radius: 999px;
  height: 4px;
  margin-bottom: 38px;
  width: 60px;
}

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

.news-list-card {
  background: #fff;
  border: 1px solid rgba(18, 58, 131, .08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(24, 39, 75, .06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.news-list-card:hover {
  box-shadow: 0 16px 34px rgba(24, 39, 75, .12);
  transform: translateY(-2px);
}

.news-list-card--featured {
  grid-column: 1 / -1;
  min-height: 300px;
}

.news-list-card__link {
  color: inherit;
  display: flex;
  flex: 1;
  flex-direction: column;
  text-decoration: none !important;
}

.news-list-card--featured .news-list-card__link { flex-direction: row; }

.news-list-card__image-wrap {
  background: #eef2f7;
  overflow: hidden;
  position: relative;
}

.news-list-card:not(.news-list-card--featured) .news-list-card__image-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.news-list-card--featured .news-list-card__image-wrap {
  flex: 0 0 51%;
  min-height: 300px;
}

.news-list-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.news-list-card:hover .news-list-card__image { transform: scale(1.025); }

.news-list-card__placeholder {
  align-items: center;
  color: #9aa8bb;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 180px;
}

.news-list-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 22px;
}

.news-list-card--featured .news-list-card__content {
  justify-content: center;
  padding: 34px 36px;
}

.news-list-card__eyebrow {
  color: var(--news-list-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.news-list-card__title {
  color: var(--news-list-ink);
  font-size: 21px;
  font-weight: 700;
  hyphens: none;
  line-height: 1.18;
  margin: 0 0 12px;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.news-list-card--featured .news-list-card__title {
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -.025em;
  line-height: 1.08;
}

.news-list-card__excerpt {
  color: var(--news-list-text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.news-list-card__footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
}

.news-list-card__more {
  color: var(--news-list-blue);
  font-size: 14px;
  font-weight: 700;
}

.news-list-card__arrow {
  display: inline-block;
  transition: transform .2s ease;
}

.news-list-card:hover .news-list-card__arrow { transform: translateX(4px); }

.news-list-card__date {
  color: var(--news-list-muted);
  font-size: 12px;
  white-space: nowrap;
}

.news-list__pagination {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
}

.news-list__pagination .pagination { margin: 0; }
.news-list__results { color: var(--news-list-muted); font-size: 13px; }

.news-list__pagination .pagination > li > a,
.news-list__pagination .pagination > li > span {
  background: #fff;
  border: 1px solid var(--news-list-line);
  border-radius: 8px;
  color: var(--news-list-ink);
  margin: 0 3px;
  padding: 8px 12px;
}

.news-list__pagination .pagination > .active > span,
.news-list__pagination .pagination > .active > a,
.news-list__pagination .pagination > li > a:hover {
  background: var(--news-list-blue);
  border-color: var(--news-list-blue);
  color: #fff;
}

.news-list__empty {
  background: #fff;
  border: 1px solid var(--news-list-line);
  border-radius: 18px;
  color: var(--news-list-muted);
  padding: 44px;
  text-align: center;
}

.news-list-page a:focus-visible {
  box-shadow: 0 0 0 3px rgba(21, 101, 248, .24);
  outline: 2px solid var(--news-list-blue);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .news-list-page { padding: 10px 0 56px; }

  .news-list-breadcrumbs {
    font-size: 12px;
    gap: 7px;
    overflow: hidden;
    padding: 5px 0 10px;
    white-space: nowrap;
  }

  .news-list-breadcrumbs a:last-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-list__heading { font-size: 42px; margin-top: 22px; }
  .news-list__accent { margin-bottom: 26px; }
  .news-list__items { grid-template-columns: 1fr; }
  .news-list-card--featured { grid-column: auto; }
  .news-list-card--featured .news-list-card__link { flex-direction: column; }

  .news-list-card--featured .news-list-card__image-wrap {
    flex-basis: auto;
    min-height: 0;
    width: 100%;
  }

  .news-list-card--featured .news-list-card__content { padding: 24px 22px 22px; }
  .news-list-card--featured .news-list-card__title { font-size: 28px; }
  .news-list-card__content { padding: 20px 20px 18px; }

  .news-list__pagination {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
