.slider-container {
  position: relative;
  max-width: 1024px;
  width: 100%;
  margin: 40px auto;
  padding-left: 16px;
  padding-right: 16px;
  background: #fff; /* Remove black lines by forcing white background */
  border-radius: 20px;
}

.slide-wrapper {
  position: relative;
  aspect-ratio: 16 / 6.5;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill area, no black bars */
  display: block;
  background: none;
  border-radius: 20px;
  border: none;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 18px 24px;
  cursor: pointer;
  border-radius: 40px;
  z-index: 10;
  height: 80px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}

.dot.active {
  background-color: #0d41ea;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .arrow {
    font-size: 2rem;
    padding: 8px 12px;
    height: 48px;
    min-width: 36px;
  }
}
