.video-card {
        flex: 0 0 auto;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: width 0.4s ease;
    }

    .video-frame {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        overflow: hidden;
        background: #000;
        cursor: pointer;
    }

    .video-frame img.yt-thumb {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .video-frame:hover img.yt-thumb {
        transform: scale(1.04);
    }

    .yt-play-btn {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        height: 52px;
        background: rgba(211, 17, 17, 0.92);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        transition: background 0.2s, transform 0.2s;
        box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    }

    .video-frame:hover .yt-play-btn {
        background: #D31111;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .yt-play-btn svg {
        width: 22px;
        height: 22px;
        margin-left: 4px;
        fill: #fff;
    }

    .video-frame iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        border: none;
        z-index: 10;
    }

    .video-card h6 {
        padding: 10px 10px 12px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--brand-grey);
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0;
    }

    .video-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--brand-red);
        background: #fff;
        color: var(--brand-red);
        font-size: 1.1rem;
        cursor: pointer;
        line-height: 1;
        flex-shrink: 0;
    }

    .video-nav-btn:hover {
        background: var(--brand-red);
        color: #fff;
    }

    .yt-channel-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #FF0000;
        color: #fff;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 10px 22px;
        border-radius: 8px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
        margin-top: 1rem;
    }

    .yt-channel-btn:hover {
        background: #cc0000;
        color: #fff;
        transform: translateY(-1px);
    }

    .yt-channel-btn svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    /* ── Mobile playing state ────────────────────────────────────
       When a card is actively playing on mobile, expand it to the
       full outer width so YouTube controls have proper room.      */
    @media (max-width: 767px) {
        .video-card.is-playing {
            /* width is set inline by JS to outer.offsetWidth */
            border-radius: 10px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.18);
        }

        .video-card h6 {
            font-size: 0.72rem;
            padding: 7px 8px 10px;
        }

        .yt-play-btn {
            width: 40px;
            height: 40px;
        }

        .yt-play-btn svg {
            width: 17px;
            height: 17px;
        }

        .video-nav-btn {
            width: 34px;
            height: 34px;
            font-size: 0.95rem;
        }

        .yt-channel-btn {
            font-size: 0.85rem;
            padding: 9px 16px;
        }
    }