
/* Контейнер с прокруткой */
.cardsСontainer {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  overflow-x: auto;
  scrollbar-color: #a6caff #ffffff;
  /* scrollbar-width: thin;
  scrollbar-color: #f5f7fa #f5f7fa;
  -webkit-overflow-scrolling: touch; */
}

/* Карточка */
.cards {
  min-width: 280px;
  border-radius: 12px;
  padding: 20px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
      text-decoration: none;
}

.cards:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.card-icon {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.card-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Кнопки навигации */
.nav-buttons {
  display: flex;
  gap: 12px;
  justify-content: left;
  margin-top: 3px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 41%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
  background: #dfdfdf;
  color: white;
  border-color: #dfdfdf;
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn:disabled:hover {
  background: white;
  color: #4a5568;
  border-color: #e2e8f0;
  transform: scale(1);
}
