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

/* contact-accordion — UA reset for <summary> disclosure triangle */
.contact-accordion__summary {
    list-style: none;
    cursor: pointer;
}

.contact-accordion__summary::-webkit-details-marker {
    display: none;
}

/* contact-accordion — chevron rotation when details is open */
.contact-accordion__chevron {
    transition: transform 0.2s ease;
}

details[open] .contact-accordion__chevron {
    transform: rotate(180deg);
}

.google-map-with-social-links-footer-bar__iframe { width: 100%; min-height: 400px; }
@media (min-width: 768px) { .google-map-with-social-links-footer-bar__iframe { min-height: 600px; } }

/* iframe-normalized */
.google-map-with-social-links-footer-bar__iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
    min-height: 400px;
    display: block;
    border: 0;
    box-sizing: border-box;
    vertical-align: bottom;
}

@media (min-width: 768px) {
    .google-map-with-social-links-footer-bar__iframe {
        height: 600px;
        min-height: 600px;
    }
}


