/* ================================================================
   OBITUARY VIDEOS
   ================================================================ */

.videos-card {
    overflow: hidden;
}

/* ================================================================
   VIDEO GRID
   ================================================================ */

.obituary-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ================================================================
   VIDEO ITEM
   ================================================================ */

.obituary-video-grid iframe,
.obituary-video-grid video {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background: #000;
}

/* ================================================================
   YOUTUBE EMBED WRAPPER
   ================================================================ */

.obituary-video-grid .video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.obituary-video-grid .video-wrapper iframe {
    display: block;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */

.video-empty-state {
    grid-column: 1 / -1;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
}

.video-empty-state i {
    font-size: 50px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.video-empty-state p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 768px) {

    .obituary-video-grid {
        grid-template-columns: 1fr;
    }

    .obituary-video-grid iframe,
    .obituary-video-grid video {
        height: 240px;
    }

}