.block-categories-row {
  margin: 20px 0;
}
.block-categories-row__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.block-categories-row__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.275;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  flex: 1;
  max-width: 312px;
  width: 100%;
}

.block-categories-row__button:hover {
  opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
  .block-categories-row__list {
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .block-categories-row__list {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 10px;
  }
  .block-categories-row__list::-webkit-scrollbar {
    display: none;
  }
  .block-categories-row__container {
    padding: 0;
  }
  .block-categories-row {
    margin: 10px 0;
  }
  .category .header {
    margin-bottom: 10px;
  }
}
@media (max-width: 478px) {
  .hero-news-card__container {
    padding-inline: 0;
  }
}
