/* ============================================================
   Kids Kingdom - YouTube Learning Video Grid
   2 columns per row on desktop, 1 column on mobile.
   Reusable for all "Watch & Learn" style video pages.
   ============================================================ */

.video-grid-section {
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 20px 0px 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card-title {
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-dark);
    text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
