/* v23 — chat messages scroll and bubble slide-in */
.contact-chat__messages {
    scroll-behavior: smooth;
}

.contact-chat__bubble--bot {
    animation: chat-slide-in 0.25s ease-out;
}

@keyframes chat-slide-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.google-map-strip__iframe {
    width: 100%;
    min-height: 450px;
}

@media (min-width: 768px) {
    .google-map-strip__iframe {
        min-height: 550px;
    }
}

/* iframe-normalized */
.google-map-strip__iframe {
    width: 100%;
    max-width: 100%;
    height: 450px;
    min-height: 450px;
    display: block;
    border: 0;
    box-sizing: border-box;
    vertical-align: bottom;
}

@media (min-width: 768px) {
    .google-map-strip__iframe {
        height: 550px;
        min-height: 550px;
    }
}


