@charset "UTF-8";

/*
Theme Name: Jill Meschino
Author: Pixel Print Media
Author URI: https://pixelprintmedia.com/
Description: Jill Meschino WordPress Child Theme
Template: ppmblockstarter
Version: 1.0
*/

.spot-embed {
    position: relative;
    margin: 3rem auto;
}
.spot-constrained {
    max-width: 100%;
}
.spot-full-width {
    width: -webkit-fill-available;
	max-width: none;
	margin-left: calc(-1 * var(--wp--style--root--padding-left)) !important;
	margin-right: calc(-1 * var(--wp--style--root--padding-right)) !important;
}
.spot-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.spot-thumb img {
    width: 100%;
    height: auto;
    display: block;
}
.spot-title {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 2.5rem;
    font-weight: 600;
}
.spot-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85); /* dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.spot-video-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.spot-video-container {
    position: relative;
    width: 100%;
    max-width: none;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.spot-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spot-video-popup .spot-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/*******************************************************************************
                         UPPER LIMIT FOR WIDE SCREENS
*********************************************************************************/

@media (min-width: 1440px) {

    body {
        max-width: 1440px;
        margin-right: auto;
        margin-left: auto;
    }

}




