﻿
/* ==========================================
       VIDEO MODAL
    ========================================== */

.story-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.story-modal {
    cursor: default;
}

.story-modal::before {
    cursor: pointer;
}

.story-modal.active {
    display: flex;
}

.story-modal-content {
    position: relative;
    width: 60vw;
    max-width: 1100px;
    cursor: default;
}

/* ==========================================
    YOUTUBE IFRAME
========================================== */

.story-modal-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 20px;
    background: #000;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

/* ==========================================
       CLOSE BUTTON
    ========================================== */

.story-close {
    position: absolute;
    top: -55px;
    right: 0;
    border: none;
    background: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: .3s ease;
}

.story-close:hover {
    transform: scale(1.15);
}

/* ==========================================
       TABLET ❤️
    ========================================== */

@@media (max-width:1024px) {
    .story-modal-content {
        width: 90vw;
    }
}

/* ==========================================
       MOBILE
    ========================================== */

@@media (max-width:768px) {

    .story-modal-content {
        width: 95vw;
    }

    .story-close {
        top: -45px;
        font-size: 2rem;
    }
}
