/* Страница статей */
.articles-page__header { margin: 32px 0 20px; }
.articles-page__title { margin: 0 0 10px; font-weight: 700; line-height: 1.2; }

/* Сетка */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0 32px;
}
@media (max-width: 1024px) { .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .articles-grid { grid-template-columns: 1fr; } }

/* Карточка без изображения */
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.10); }

.article-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

/* Дата как бейдж (без абсолютного позиционирования) */
.article-card__date {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #2c5cff;            /* цвет кнопок темы */
  box-shadow: 0 2px 8px rgba(44,92,255,.35);
}

/* Заголовок и выдержка */
.article-card__title { margin: 0; font-size: 20px; line-height: 1.25; }
.article-card__title a { text-decoration: none; }
.article-card__title a:hover { text-decoration: underline; }

.article-card__excerpt {
  color: #475569;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.0em;
}

/* Кнопка */
.article-card__more.btn-blue {
  align-self: flex-start;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Пагинация */
.articles-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 40px;
}
.articles-pagination .page-numbers {
