/* Короткие вертикальные видео — блок short_videos */
.short_videos_block {
    margin-top: 0;
}
.short_videos_block .short_videos_slider {
    overflow: hidden;
    padding-bottom: .5rem;
}
.short_videos_block .short_videos_head {
    margin-bottom: 1.5rem;
}
.short_videos_block .short_videos_head p {
    max-width: 40rem;
    margin: 0;
}
.short_video_slide {
    width: 16rem !important;
    flex-shrink: 0;
}
.short_video_card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
}
.short_video_card video,
.short_video_card img.short_video_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
}
.short_video_card .short_video_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 107, 0, .92);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.short_video_card .short_video_play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: .55rem 0 .55rem .9rem;
    border-color: transparent transparent transparent #fff;
    margin-left: .15rem;
}
.short_video_card.is-playing .short_video_play {
    opacity: 0;
    pointer-events: none;
}
.short_video_card .short_video_title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem 1rem .9rem;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    z-index: 1;
    pointer-events: none;
}
.short_video_card.is-playing .short_video_title {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .short_videos_block .short_videos_slider .swiper-wrapper {
        flex-wrap: nowrap !important;
        gap: 0;
        justify-content: flex-start;
    }
    .short_video_slide {
        width: 14rem !important;
    }
    .short_videos_block .serv_slider-nav {
        display: flex;
        padding-top: 1rem;
        width: 100%;
        justify-content: flex-end;
        gap: .75rem;
    }
}
@media screen and (max-width: 480px) {
    .short_video_slide {
        width: 12.5rem !important;
    }
}
