.page-news-list .site-main {
  background-color: #f7f7f7;
}

.news-hero {
  padding-bottom: 0;
}

.news-hero__inner {
  padding-bottom: 24px;
  border-bottom: 1px dotted #b9b4b0;
}

.news-hero .lower-hero__title {
  font-size: 34px;
}

.news-hero .lower-kicker {
  color: var(--color-muted);
}

.news-filter-section {
  position: relative;
  z-index: 1;
  padding: 58px 0 10px;
}

.news-filter-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 0 24px;
  gap: 96px;
}

.news-filter-block__title {
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: var(--font-weight-black);
  line-height: 1.5;
}

.news-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-filter-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 3px 15px 4px;
  border-radius: 999px;
  color: #777371;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(76, 73, 72, 0.05);
}

.news-list-section {
  position: relative;
  z-index: 1;
  padding: 0 0 116px;
}

.news-list-section__inner {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 60px 24px 0;
}

.news-card-list {
  display: grid;
  gap: 44px;
}

.news-card {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(76, 73, 72, 0.03);
  padding: 40px;
}
.news-card {
  min-width: 0;
  width: min(872px, 100%);
}

.news-card__link {
  display: block;
  width: 100%;
  padding: 66px 58px 62px;
  color: var(--color-text);
}

.news-card__title {
  font-size: 22px;
  font-weight: var(--font-weight-black);
  line-height: 1.75;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  gap: 24px;
}

.news-card__meta time {
  color: #aaa5a2;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.news-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 25px;
  padding: 3px 18px 4px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  background: #9d9997;
}

.news-card__image {
  overflow: hidden;
  margin-top: 48px;
  aspect-ratio: 820 / 390;
}

.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.news-card__excerpt {
  margin-top: 34px;
}

.news-card__excerpt p {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: 2;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  gap: 22px;
}

.news-pagination__item,
.news-pagination__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #aaa5a2;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  background: #ffffff;
}

.news-pagination__item.is-current,
.news-pagination__next {
  color: #ffffff;
  background: var(--color-primary);
}

.news-pagination__ellipsis {
  color: #aaa5a2;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
}

.news-pagination__next::before {
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

@media (max-width: 767px) {
  .news-hero__inner {
    padding-bottom: 28px;
  }

  .news-hero .lower-hero__heading {
    gap: 12px;
  }

  .news-hero .lower-hero__title {
    font-size: 25px;
  }

  .news-filter-section {
    padding: 40px 0 46px;
  }

  .news-filter-section__inner {
    grid-template-columns: 1fr;
    width: min(390px, 100%);
    gap: 34px;
  }

  .news-filter-block__title {
    margin-bottom: 17px;
    font-size: 15px;
  }

  .news-filter-list {
    gap: 10px 12px;
  }

  .news-card {
    padding: 20px;
    min-width: 0;
  }

  .news-filter-list a {
    min-height: 27px;
    padding: 3px 13px 4px;
    font-size: 10px;
  }

  .news-list-section {
    padding-bottom: 76px;
  }

  .news-list-section__inner {
    width: min(390px, 100%);
  }

  .news-card-list {
    gap: 26px;
  }

  .news-card__link {
    padding: 0;
  }

  .news-card__title {
    font-size: 15px;
    line-height: 1.75;
  }

  .news-card__meta {
    margin-top: 16px;
    gap: 16px;
  }

  .news-card__meta time {
    font-size: 11px;
  }

  .news-card__category {
    min-width: 68px;
    min-height: 18px;
    padding: 2px 10px 3px;
    font-size: 9px;
  }

  .news-card__image {
    margin-top: 18px;
    aspect-ratio: 294 / 150;
  }

  .news-card__excerpt {
    margin-top: 18px;
  }

  .news-card__excerpt p {
    font-size: 12px;
    line-height: 1.85;
  }

  .news-pagination {
    margin-top: 42px;
    gap: 20px;
  }

  .news-pagination__item,
  .news-pagination__next {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }
}
