/* WEKA Hero Section 2025 */
.wk-hero{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 116px 0 var(--spacing-48);
    overflow: hidden;
}
.wk-hero .hero-content{
    max-width: 1024px;
    margin: 0 auto;
    gap: var(--spacing-32);
}
.wk-hero .hero-content .hero-video-container{
    display: flex;
    flex-direction: column;
    border-radius: var(--spacing-16);
    background: rgba(255, 255, 255, 0.05);
    max-width: 672px;
    width: 100%;
    padding: var(--spacing-16);
    margin: var(--spacing-none) auto;
    gap: var(--spacing-16);
}
.wk-hero .hero-content .hero-video-container .wistia-video-wrapper{
    border-radius: var(--spacing-12);
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.10);
}
.wk-hero .hero-content .hero-video-container .video-control-wrapper{
    display: flex;
    justify-content: center;
    gap: var(--spacing-16);
    flex-wrap: wrap;
}
.wk-hero .hero-content .hero-video-container .video-control-wrapper .play-link{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-mono);
    font-size: var(--fs-12);
    color: var(--weka-off-white);
    transition: .3s ease-in-out;
}
.wk-hero .hero-content .hero-video-container .video-control-wrapper .play-link svg{
    width: 20px;
    height: 20px;
}
.wk-hero .hero-content .hero-video-container .video-control-wrapper .play-link svg path{
    stroke: var(--weka-off-white);
    transition: .3s ease-in-out;
}
.wk-hero .hero-content .hero-video-container .video-control-wrapper .play-link:hover{
    color: var(--weka-magenta);;
}
.wk-hero .hero-content .hero-video-container .video-control-wrapper .play-link:hover svg path{
    stroke: var(--weka-magenta);
}
.wk-hero .object-wrapper{
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
    position: relative;
    top: 6px;
    margin: 60px auto 0 auto;
}
.wk-hero .object-wrapper .inner-wrapper{
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}
.wk-hero .object-wrapper img{
    max-width: 100%;
}
@media (max-width: 991px){
    .wk-hero .hero-content .hero-video-container .video-control-wrapper .one{
        flex: 1 1 100%
    }
}
@media(max-width: 767px){
    .wk-hero .hero-content .hero-video-container .video-control-wrapper{
        gap: var(--spacing-20);
        justify-content: center ;
    }
}
@media(max-width: 575px){
    .wk-hero{
        padding-top: var(--spacing-96);
    }
}