/* Блок постов категории */
.category-posts__container {
  width: 100%;
}
.title--category {
  margin-bottom: 0;
}
.category-posts__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.category-posts__list--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-posts__list--grid.category-posts__list--bonuses {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Пагинация */
.category-posts__pagination .page-numbers {
  margin: 0;
}

/* Кнопка "Показать еще" */
.category-posts__load-more {
  text-align: center;
  margin: 32px 0;
}

.category-load-more-btn {
  width: 100%;
  margin: 0;
  font-weight: 400;
}

/* Адаптивность */
@media (max-width: 768px) {
  .category-posts__list {
    gap: 16px;
    margin-bottom: 12px;
  }

  .category-posts__list--grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-posts__load-more {
    margin: 12px 0;
  }
}
