/* 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); }
}

.contact-us-flex__min {
    min-width: 0;
}

.contact-us-media__cover {
    object-fit: cover;
}

