/* =========================
   VIDEO MODAL (ONLY FOR VIDEOS)
========================= */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;

    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-modal-content iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}
.video-card {
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
}

.video-card .thumb {
    position: relative;
}

.video-card .thumb img {
    width: 100%;
    display: block;
}

.video-card .play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card .play-icon i {
    font-size: 45px;
    color: white;
    background: rgba(0,0,0,0.55);
    padding: 14px 18px;
    border-radius: 50%;
}

.video-card h4 {
    padding: 12px;
    font-size: 15px;
    margin: 0;
    color: #0b2b40;
}