.hero-section {
    position: relative;
    overflow: visible;
}

.hero-swiper {
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    overflow: visible;
}

.hero-slide {
    z-index: 1;
    height: 156px;
    margin-top: 10px;
    transition: height 0.24s ease, margin-top 0.24s ease;
}

.hero-slide.swiper-slide-active {
    z-index: 3;
    height: 166px;
    margin-top: 0;
}

.hero-slide img {
    height: 156px;
    overflow: hidden;
    border-radius: 6px;
    transition: height 0.24s ease;
}

.hero-slide.swiper-slide-active img {
    height: 166px;
}

.hero-slide span {
    right: 2px;
    left: 2px;
    height: 64px;
    padding: 18px 9px 0;
    border-radius: 0 0 6px 6px;
    font-size: 16px;
    line-height: 24px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
}

.focus-shadow {
    position: absolute;
    top: 0;
    z-index: 6;
    width: 29px;
    height: 166px;
    pointer-events: none;
}

.left-shadow {
    left: 0;
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0));
}

.right-shadow {
    right: 0;
    background: linear-gradient(270deg, var(--white), rgba(255,255,255,0));
}

.focus-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 10px;
    border-radius: 6px;
    transform: translateX(-50%);
}

.focus-dots span {
    width: 4px;
    height: 4px;
    margin: 0 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.62);
}

.focus-dots span.active {
    background: var(--white);
}
