@charset "UTF-8";
.article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: transform 0.3s;
}
.article:hover {
  transform: translateY(-5px);
}
.article__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #2c3e50;
}
.article__date {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 15px;
  display: block;
}
.article__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Ограничение до 4 строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--amc-black);
}
.article__excerpt p {
  margin: 0 0 10px;
}
.article.swiper-slide {
  height: auto;
}

.articles__list-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.article__info-footer {
  margin-top: 20px !important;
}/*# sourceMappingURL=style.css.map */