.carousel-wrapper{
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
.carousel-track {
  max-width: 1280px;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-card h3 {
	margin-top:0px !important;
}
.carousel-card {
  min-width: 304px;
  max-width: 304px;
  width: 304px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.carousel-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.carousel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #e5e7eb;
  padding: 8px;
}

.carousel-btn:not(:disabled) {
  background: #2563eb;
  color: white;
}

.carousel-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
	margin-bottom:16px;
}
