.psc-banner-component {
    margin-top: 16px;
}

.psc-banner-component__slider {
    max-width: 1180px;
    margin: 0 auto;
}

.psc-banner-component__viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.psc-banner-component__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    transition: transform 0.45s ease;
}

.psc-banner-component__track::-webkit-scrollbar {
    display: none;
}

.psc-banner-component__item {
    display: block;
    color: inherit;
    text-decoration: none;
    scroll-snap-align: start;
}

.psc-banner-component__content {
    position: relative;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 34%);
    align-items: center;
    background: linear-gradient(135deg, #1657f0 0%, #1d49df 100%);
    overflow: hidden;
}

.psc-banner-component__copy {
    display: grid;
    gap: 12px;
    color: #fff;
}

.psc-banner-component__title {
    font-size: clamp(26px, 4vw, 48px);
    line-height: 1.16;
    word-break: keep-all;
}

.psc-banner-component__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.psc-banner-component__badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.psc-banner-component__media {
    position: relative;
    align-self: stretch;
    min-height: 166px;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.psc-banner-component__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.psc-banner-component__count {
    position: absolute;
    right: 16px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
}

.psc-banner-component__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.psc-banner-component__nav {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #eff3ff;
    position: relative;
    cursor: pointer;
}

.psc-banner-component__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #1d49df;
    border-right: 2px solid #1d49df;
    transform: translate(-60%, -50%) rotate(45deg);
}

.psc-banner-component__nav--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.psc-banner-component__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.psc-banner-component__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0;
    background: #c9d6ff;
    opacity: 1;
}

.psc-banner-component__pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 999px;
    background: #1d49df;
}

.psc-banner-component.is-swiper-ready .psc-banner-component__track {
    display: flex;
    gap: 0;
    overflow: visible;
}

.psc-banner-component.is-fallback-ready .psc-banner-component__viewport {
    overflow: hidden;
}

.psc-banner-component.is-fallback-ready .psc-banner-component__track {
    display: flex;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
}

.psc-banner-component.is-fallback-ready .psc-banner-component__item {
    flex: 0 0 100%;
}

@media (max-width: 767px) {
    .psc-banner-component__content {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 10px;
    }

    .psc-banner-component__subtitle {
        font-size: 14px;
    }

    .psc-banner-component__media {
        min-height: 180px;
    }
}
