.carousel-container {
  position: relative;
  width: 100%;
  height: 90px;
  margin: -24px auto 16px auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fcc359;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #000949;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 90px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 40px;
  border-radius: 8px;
}
