.carousel-container {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 50%;
  overflow: hidden;
  color: var(--color-primary);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* [dir="rtl"] .carousel-container {
  flex-direction: column-reverse;
} */

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

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.secondary {
  background-color: var(--color-secondary);
}

.carousel-dot.active {
  background-color: var(--color-accent);
}
