.carousel-container {
  width: 90%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  margin-block: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  width: 100%;
  max-width: 300px;
  margin: 0 10px;
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  text-align: center;
  background-color: #32373b;
  color: white;

  .partner-link {
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem;
    color: white !important;
  }
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0;
}

.carousel-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: white;
  border: none;
  height: 48px;
  width: 48px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  opacity: 0.8;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  opacity: 1;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

@media (max-width: 600px) {
  .card {
    min-width: 200px;
  }
}
