/* Make the Vimeo lightbox thumbnail fill its container */
.video_lightbox_anchor_image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* Center the anchor container */
#6a139287a0247 {
    display: block;
    text-align: center;
}

/* Mobile optimization (kept for safety) */
@media (max-width: 768px) {
    .video_lightbox_anchor_image {
        width: 100%;
    }
}


/**********************************************
 * FINAL CV BUTTON — ICON NEXT TO TEXT + BIGGER
 **********************************************/

.cv-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;   /* vertical centering */
    justify-content: center !important;

    width: 175px !important;          /* slightly wider */
    height: 46px !important;          /* slightly taller */
    border: 1px solid #ff264a !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.10em !important;
    color: #ff264a !important;
    text-decoration: none !important;

    padding: 0 48px !important;       /* more breathing room */
    background: none !important;
    box-sizing: border-box !important;

    gap: 10px !important;             /* spacing between icon + text */
}

/* SVG icon next to text */
.cv-btn::before {
    content: "" !important;

    width: 16px !important;           /* slightly bigger icon */
    height: 16px !important;

    background-image: url("http://morgananimation.com/wp-content/uploads/2026/05/download-minimalistic-svgrepo-com.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;

    /* color the SVG red */
    filter: invert(28%) sepia(94%) saturate(3000%) hue-rotate(330deg) brightness(95%) contrast(105%);
}

/* kill any theme icon */
.cv-btn::after {
    content: none !important;
}