.news-list-page__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-list-page .news-list-page__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-list-page .news-list-page__list-item {
  display: flex;
  gap: 30px;
}

.news-list-page .news-list-page__list-item > [itemprop="item"] {
  display: flex;
  gap: 30px;
  width: 100%;
}

.news-list-page .news-list-page__list-item-image {
  display: flex;
  flex: none;
  width: 268px;
  height: 268px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid #def2ff;
}

.news-list-page .news-list-page__list-item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.news-list-page .news-list-page__list-item-content {
  display: flex;
  flex-direction: column;
}

.news-list-page .news-list-page__list-item-title {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.24px;
  margin-bottom: 10px;
  text-wrap: pretty;
}

.news-list-page .news-list-page__list-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.news-list-page .news-list-page__list-item-date {
  color: #787878;
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px;
  letter-spacing: 0.12px;
}

.news-list-page .news-list-page__list-item-text {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 200;
  line-height: 16px;
  letter-spacing: 0.14px;
  margin: 0;
  max-height: 130px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  white-space: pre-line;
  word-break: break-word;
  padding: 0;
  list-style: none;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: max-height 0.35s ease;
  flex-grow: 1;
}

.news-list-page .news-list-page__list-item-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(237, 243, 247, 0) 0%, #f4faff 100%);
  transition: opacity 0.25s ease;
}

.news-list-page .news-list-page__list-item-text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 1200px;
}

.news-list-page .news-list-page__list-item-text.is-expanded::after {
  opacity: 0;
}

.news-list-page .news-list-page__list-item-text:focus-visible {
  outline: 2px solid #5691c8;
  outline-offset: 4px;
  border-radius: 4px;
}

.news-list-page .news-list-page__list-item-text > *:first-child {
  margin-top: 0 !important;
}

.news-list-page .news-list-page__list-item-text > *:last-child {
  margin-bottom: 0 !important;
}

.news-list-page .news-list-page__list-item-actions {
  margin-top: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 20px;
}

.news-list-page .news-list-page__list-item-read,
.news-list-page .news-list-page__more {
  display: flex;
  padding: 12px 22px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: #5691c8;
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 128.023%;
  letter-spacing: 0.16px;
  text-decoration: none !important;
}

.news-list-page__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.news-list-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.news-list-page__pagination-link {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #def2ff;
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.14px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.news-list-page__pagination-link:hover {
  border-color: #5691c8;
  color: #5691c8;
}

.news-list-page__pagination-link.is-active {
  background: #5691c8;
  border-color: #5691c8;
  color: #fff;
  pointer-events: none;
}

.news-list-page__pagination-ellipsis {
  color: #787878;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.14px;
}

.news-list-page .news-list-page__loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list-page .news-list-page__loading svg {
  width: 24px;
  height: 24px;
}

@media (width <= 768px) {
  .news-list-page .news-list-page__list-item {
    flex-direction: column;
    gap: 15px;
  }

  .news-list-page .news-list-page__list-item > [itemprop="item"] {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .news-list-page .news-list-page__list-item-image {
    width: 210px;
    height: 210px;
  }

  .news-list-page .news-list-page__list-item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
  }

  .news-list-page .news-list-page__list-item-meta {
    margin-bottom: 25px;
  }

  .news-list-page .news-list-page__list-item-date {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px;
    letter-spacing: 0.12px;
  }

  .news-list-page .news-list-page__list-item-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: 16px;
    letter-spacing: 0.14px;
    max-height: 130px;
    -webkit-line-clamp: 9;
    line-clamp: 9;
  }

  .news-list-page .news-list-page__list-item-actions {
    padding-top: 15px;
  }

  .news-list-page .news-list-page__list-item-read,
  .news-list-page .news-list-page__more {
    padding: 8px 12px;
    gap: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 128.023%;
    letter-spacing: 0.16px;
  }

  .news-list-page__pagination {
    gap: 6px;
  }

  .news-list-page__pagination-link {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 0.13px;
  }
}
