.carousel {
    --swiper-theme-color: var(--zm-bg-surface);
    --swiper-pagination-bullet-inactive-color: var(--zm-surface-text-color);
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 10px;
}

.carousel .swiper-slide img {
    border-radius: 26px;
    width: 100%;
    height: auto;
}

.carousel .swiper-pagination-bullet {
    border: 1px solid var(--swiper-theme-color);
}

.carousel :is(.swiper-button-next, .swiper-button-prev)::after {
    display: none;
}

.carousel :is(.swiper-button-next, .swiper-button-prev) {
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: transform;
    transition-duration: 0.3s;
}

.carousel
    :is(.swiper-button-next, .swiper-button-prev):is(:focus-visible, :hover) {
    transform: scale(1.1);
}

.carousel :is(.swiper-button-next, .swiper-button-prev) svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.carousel :is(.swiper-button-next, .swiper-button-prev):active {
    transform: scale(0.9);
}
