/* ============================================================
   Family Game Videos — Frontend Styles
   ============================================================ */

/* ── Video Grid ─────────────────────────────────────────── */
.fgv-list {
    margin: 2em 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
}

@media (min-width: 700px) {
    .fgv-list {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}

/* ── Video Item ─────────────────────────────────────────── */
.fgv-item {
    margin: 0;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s ease;
}

.fgv-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

/* ── Responsive Embed ───────────────────────────────────── */
.fgv-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

/* ── Video Title ────────────────────────────────────────── */
.fgv-title {
    margin: 0;
    padding: 0.6em 0.9em 0.7em;
    font-size: 0.95em;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    border-top: 1px solid #e0e0e0;
    background: #fff;
}

/* ── Admin Notices (inline in post) ─────────────────────── */
.fgv-admin-notice {
    padding: 8px 12px;
    margin: 1em 0;
    border-left: 4px solid #ccc;
    background: #f7f7f7;
    font-size: 0.88em;
    font-style: italic;
}

.fgv-notice-info    { border-color: #0073aa; background: #e8f4fb; }
.fgv-notice-warning { border-color: #d98500; background: #fef8e7; }
.fgv-notice-error   { border-color: #cc0000; background: #fef0f0; }
