#ecr-call-cta {
    position: fixed;
    top: var(--ecr-cta-top, 110px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    max-width: calc(100% - 24px);
    margin: 0;
    padding: 6px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.3;
    animation: ecr-cta-appear 240ms ease-out both;
}
#ecr-call-cta[hidden] { display: none !important; }
#ecr-call-cta .ecr-call-cta__link {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 44px;
    min-width: 0;
    padding: 6px 12px;
    box-sizing: border-box;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
#ecr-call-cta .ecr-call-cta__link:hover { background: #1d4ed8; }
#ecr-call-cta .ecr-call-cta__icon { flex: 0 0 22px; }
#ecr-call-cta .ecr-call-cta__number { letter-spacing: 0.01em; }
#ecr-call-cta .ecr-call-cta__close {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
    font-family: inherit;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}
#ecr-call-cta .ecr-call-cta__close:hover { background: rgba(0, 0, 0, 0.3); }
#ecr-call-cta a:focus-visible,
#ecr-call-cta button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@keyframes ecr-cta-appear {
    from { opacity: 0; transform: translate(-50%, -8px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
@media (max-width: 420px) {
    #ecr-call-cta { font-size: 14px; }
    #ecr-call-cta .ecr-call-cta__link { gap: 7px; padding-inline: 8px; }
    #ecr-call-cta .ecr-call-cta__icon { width: 18px; height: 18px; flex-basis: 18px; }
}
@media (max-width: 340px) {
    #ecr-call-cta .ecr-call-cta__icon { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    #ecr-call-cta { animation: none; }
}
@media print {
    #ecr-call-cta { display: none !important; }
}
/* The current Elite theme uses a tighter hero on small phones. */
@media (max-width: 480px) {
    body.home.ecr-cta-active .hero-cinematic { padding-top: 6rem !important; }
}
