/**
 * Block Styles: POM: Promo Video Embed
 */

.pom-video-block {
    --brand-navy-dark: #0a0e27;
    --brand-navy-med: #10163a;
    --brand-navy-light: #161e4f;
    --brand-gold: #CDAC65;
    --brand-gold-soft: rgba(205, 172, 101, 0.15);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-muted: #a0a5c0;

    background-color: var(--brand-navy-med) !important;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.pom-video-block .pom-video-shell {
    background-color: var(--brand-navy-light) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pom-video-block .pom-video-shell:hover {
    border-color: var(--brand-gold) !important;
    box-shadow: 0 30px 60px rgba(205, 172, 101, 0.15);
    transform: scale(1.01);
}

.pom-video-block .ratio {
    background: #000;
}

.pom-video-block .text-gold {
    color: var(--brand-gold) !important;
}

.pom-video-block .text-muted {
    color: var(--text-muted) !important;
}

