.white-case-carousel-track {
  scroll-behavior: smooth;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.white-case-carousel-track::-webkit-scrollbar {
  display: none;
}

.white-case-carousel-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  max-width: 300px;
  min-height: 340px;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.white-case-card-arrow {
  border: none;
  background: linear-gradient(135deg, #1C3442, #2A7041);
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.white-case-card-arrow.dark-arrow {
  background: #99c455 !important;
}

.white-case-card-arrow.dark-arrow:hover {
  background: #88b545 !important;
}


.white-case-card-arrow svg {
    width: 80%;
    height: 80%;
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
}

.white-case-card-arrow:hover {
  background: linear-gradient(135deg, #16303b, #1e5e36);
}

.white-case-card-img-container {
  padding: 12px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-case-card-img-container img {
  max-width: 100%;
  border-radius: 12px;
}

.white-case-carousel-btn {
  border: none;
  background: #99c455;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.white-case-carousel-btn:hover {
  background: #2a7041;
}

.white-case-carousel-scrollbar-container {
  position: relative;
  height: 6px;
  background: #d6d6d6;
  border-radius: 3px;
  overflow: hidden;
}

.white-case-carousel-scrollbar-thumb {
  position: absolute;
  height: 100%;
  background: #000;
  border-radius: 3px;
  width: 60px;
  transition: left 0.3s ease;
}

