/* Список новостей news2026 — стиль сайта 2026 */

.news-list-section {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.news-list-section__title {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Сетка карточек */
.news-list-section .news-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.news-list-section .news-list__item {
  background: #f2faf4;
  border: 1.5px solid rgba(139, 224, 158, .45);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  align-items: stretch;
  transition:
    box-shadow 200ms cubic-bezier(.4, 0, .2, 1),
    border-color 200ms cubic-bezier(.4, 0, .2, 1),
    transform 200ms cubic-bezier(.4, 0, .2, 1);
}

.news-list-section .news-list__item:not(:has(.news-list__image-link)) {
  grid-template-columns: 1fr;
}

@media (hover: hover) {
  .news-list-section .news-list__item:hover {
    box-shadow: 0 8px 30px rgba(30, 128, 73, .10);
    border-color: #8be09e;
    transform: translateY(-2px);
  }
}

/* Изображение */
.news-list-section .news-list__image-link {
  display: block;
  line-height: 0;
  min-height: 100%;
}

.news-list-section .news-list__image {
  height: 100%;
  min-height: 180px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Тело карточки */
.news-list-section .news-list__body {
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Дата */
.news-list-section .news-list__time {
  margin-bottom: .85rem;
}

.news-list-section .news-list__time time {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: clamp(.8rem, 1.1vw, .9rem);
  color: rgba(21, 36, 26, .55);
}

.news-list-section .news-list__time i {
  color: #8be09e;
  font-size: .95em;
}

/* Заголовок */
.news-list-section .news-list__title {
  margin: 0 0 .85rem;
  font-family: "Cygre", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.25;
}

.news-list-section .news-list__title a {
  color: #15241a;
  text-decoration: none !important;
  transition: color 200ms cubic-bezier(.4, 0, .2, 1);
}

.news-list-section .news-list__title a:hover {
  color: #1fa637;
}

/* Анонс */
.news-list-section .news-list__text {
  margin-bottom: 1rem;
  font-size: clamp(.9rem, 1.3vw, 1rem);
  line-height: 1.6;
  color: rgba(21, 36, 26, .72);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.news-list-section .news-list__text > :last-child {
  margin-bottom: 0;
}

/* Ссылка «Читать полностью» */
.news-list-section .news-list__more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  font-weight: 600;
  font-size: clamp(.85rem, 1.2vw, .95rem);
  color: #1e8049;
  text-decoration: none !important;
  transition:
    color 200ms cubic-bezier(.4, 0, .2, 1),
    gap 200ms cubic-bezier(.4, 0, .2, 1);
}

.news-list-section .news-list__more:hover {
  color: #1fa637;
  gap: .6rem;
}

.news-list-section .news-list__more i {
  font-size: .85em;
}

/* Пустой список */
.news-list-section .news-list__empty {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: rgba(21, 36, 26, .65);
  margin: 0;
}

/* Мобильная версия */
@media (max-width: 767px) {
  .news-list-section .news-list__item {
    grid-template-columns: 1fr;
  }

  .news-list-section .news-list__image {
    min-height: 160px;
    height: 160px;
  }
}
