.banner {
    margin: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.embla__viewport {
    width: 100%;
    overflow: hidden;
}

.embla__container {
    display: flex;
    backface-visibility: hidden;
}

.embla__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.embla__slide-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.658);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.carousel-button--prev { left: 20px; }
.carousel-button--next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .banner { margin: 20px; }
    .embla__slide-img { height: 250px; }
    .carousel-button { width: 40px; height: 40px; }
    .carousel-button svg { width: 20px; height: 20px; }
    .carousel-button--prev { left: 10px; }
    .carousel-button--next { right: 10px; }
}

@media (max-width: 480px) {
    .banner { margin: 10px; border-radius: 8px; }
    .embla__slide-img { height: 200px; }
    .carousel-button { width: 36px; height: 36px; }
    .carousel-button svg { width: 18px; height: 18px; }
    .carousel-button--prev { left: 5px; }
    .carousel-button--next { right: 5px; }
}
