.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-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: 400;
  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: 400;
  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: 300;
  line-height: 16px;
  letter-spacing: 0.14px;
  margin: 0;
  max-height: 130px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  white-space: pre-line;
  word-break: break-word;
  padding: 0;
  list-style: none;
  margin: 0;
}

.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: 300;
  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 .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-image {
    width: 210px;
    height: 210px;
  }

  .news-list-page .news-list-page__list-item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    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: 400;
    line-height: 12px;
    letter-spacing: 0.12px;
  }

  .news-list-page .news-list-page__list-item-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0.14px;
    max-height: 130px;
    -webkit-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: 300;
    line-height: 128.023%;
    letter-spacing: 0.16px;
  }
}
