.video-feature-widget {
    position: relative;
    min-height: 720px;
    padding: 140px 0;
    overflow: hidden;
    color: #fff;
    background: #202428;
}

.video-feature-bg,
.video-feature-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-feature-bg {
    object-fit: cover;
}

.video-feature-bg-image {
    background-size: cover;
    background-position: center;
}

.video-feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 24, 24, .68);
    z-index: 1;
}

.video-feature-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 45px;
    align-items: center;
}

.video-feature-card {
    max-width: 520px;
    border-radius: 8px;
    padding: 38px;
    background: rgba(32, 36, 40, .84);
    backdrop-filter: blur(5px);
}

.video-feature-tag {
    display: inline-flex;
    background: #ed1c24;
    color: #fff;
    border-radius: 50px;
    padding: 10px 18px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.video-feature-content h1,
.video-feature-content h2,
.video-feature-content h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
}

.video-feature-content p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.55;
}

.video-feature-content p:last-child {
    margin-bottom: 0;
}

.video-feature-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.video-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ed1c24;
    color: #fff;
    border-radius: 9px;
    padding: 15px 24px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    transition: background .2s ease, transform .2s ease;
}

.video-feature-btn:hover {
    background: #b3131b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.video-feature-youtube {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
    cursor: pointer;
}

.video-feature-youtube img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.video-feature-youtube iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

.video-feature-play {
    pointer-events: none;
}

.video-feature-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 54px;
    transform: translate(-50%, -50%);
    background: #ff0000;
    border-radius: 14px;
}

.video-feature-play::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 16px;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

@media (max-width: 991px) {
    .video-feature-widget {
        min-height: auto;
        padding: 80px 0;
    }

    .video-feature-inner {
        grid-template-columns: 1fr;
    }

    .video-feature-card {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .video-feature-card {
        padding: 28px 22px;
    }

    .video-feature-content h1,
    .video-feature-content h2,
    .video-feature-content h3 {
        font-size: 34px;
    }

    .video-feature-content p {
        font-size: 16px;
    }

    .video-feature-buttons {
        flex-direction: column;
    }

    .video-feature-btn {
        width: 100%;
    }
}
