.hv-2979919f-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    background-color: #0e0c0b;
}

/* Subtle dark gradient overlay (bottom-to-top) */
.hv-2979919f-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(14, 12, 11, 0.8) 0%, rgba(14, 12, 11, 0.3) 50%, rgba(14, 12, 11, 0.7) 100%);
    z-index: 1;
    transition: background-color 0.4s ease;
}

.hv-2979919f-container:hover .hv-2979919f-overlay {
    background-color: rgba(14, 12, 11, 0.45);
}

.hv-2979919f-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    padding: 20px;
}

/* Play button: 1px gold outline, minimal play mark */
.hv-2979919f-play-circle {
    width: 80px;
    height: 80px;
    border: 1px solid #c9a25e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.hv-2979919f-play-triangle {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #c9a25e;
    margin-left: 4px; /* visually center the triangle */
    transition: border-left-color 0.4s ease;
}

/* Hover scales up and brightens stroke */
.hv-2979919f-container:hover .hv-2979919f-play-circle {
    transform: scale(1.05);
}

/* Typography styling */
.hv-2979919f-title {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-top: 20px;
    letter-spacing: 1px;
}

.hv-2979919f-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #c9a25e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* Lightbox Modal */
.hv-modal-2979919f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 12, 11, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.admin-bar .hv-modal-2979919f {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .hv-modal-2979919f {
        top: 46px;
    }
}

.hv-modal-2979919f.active {
    opacity: 1;
    visibility: visible;
}

.hv-modal-content-2979919f {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hv-modal-content-2979919f iframe,
.hv-modal-content-2979919f video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Custom Plyr Gold/Dark Theme Overrides */
.hv-modal-content-2979919f .plyr {
    width: 100%;
    height: 100%;
    --plyr-color-main: #c9a25e; /* Gold primary theme */
    --plyr-video-controls-background: rgba(14, 12, 11, 0.95); /* Deep black controls */
    --plyr-menu-background: #0e0c0b;
    --plyr-menu-color: #ffffff;
    --plyr-font-family: 'Inter', sans-serif;
}

.hv-modal-content-2979919f .plyr__control--overlaid {
    background: rgba(201, 162, 94, 0.15) !important;
    border: 1px solid #c9a25e !important;
    color: #c9a25e !important;
}

.hv-modal-content-2979919f .plyr__control--overlaid:hover {
    background: #c9a25e !important;
    color: #0e0c0b !important;
}

.hv-modal-content-2979919f .plyr__control:hover {
    background: #5c1d24 !important; /* Elegant oxblood red hover control background */
    color: #ffffff !important;
}

.hv-modal-close-2979919f {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #c9a25e;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.hv-modal-close-2979919f::after {
    content: '×';
    font-size: 1.8rem;
    line-height: 1;
    color: #5c1d24; /* deep oxblood accent */
    transition: color 0.3s ease;
}

.hv-modal-close-2979919f:hover {
    color: #dfb975;
}

.hv-modal-close-2979919f:hover::after {
    color: #8c2a34;
}

@media (max-width: 768px) {
    .hv-2979919f-container {
        height: 45vh;
    }
    .hv-2979919f-title {
        font-size: 1.8rem;
    }
}
