
.banner-container {
    width: 100%;
    max-width: 100%;
    background: #f2f4f8;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.banner-skeleton {
    width: 100%;
    padding-top: 54.67%;
    background: #f2f4f8;
}

.banner-carousel {
    width: 100%;
    height: 0;
    padding-top: 54.67%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    touch-action: pan-y;
}

.banner-carousel .banner-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.banner-carousel .banner-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.banner-carousel .banner-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    pointer-events: none;
}

.banner-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.banner-dots span {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-dots span.active {
    width: 20px;
    background: #ffffff;
}

[v-cloak] {
    display: none !important;
}
