.video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
	margin-bottom: 10px;
}

.video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb::after {
    content: "▶";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
/*    font-size: 60px; */
    color: #fff;
    background: rgba(0,0,0,0.4);
}

/* MODAL */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    resize: both;
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
