/* Video Card Caption */
.video-item .card-body {
    background: #f8fafc;
    /* light gray for contrast */
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-item .card-body h6.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d465e;
    margin: 0;
}

.video-item:hover .card-body {
    background: #e4eaf2;
    /* subtle hover effect */
    transform: translateY(-2px);
}

/* Footer caption below gallery */
.gallery-footer-caption {
    font-size: 0.875rem;
    color: #6b7b8c;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}