/* 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-editorial — dt label width responsive (TW md:w-40 has no BS flex util) */
@media (min-width: 768px) {
    .contact-editorial__dt {
        width: 10rem;
        flex-shrink: 0;
    }
}

/* contact-editorial — decorative background symbol (inherited text color + opacity) */
.contact-editorial__decor::before {
    content: '@';
    font-size: 40vw;
    font-weight: 900;
    opacity: 0.04;
    position: absolute;
    top: -10%;
    right: -5%;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.google-map__iframe {
    width: 100%;
    min-height: 440px;
}

@media (min-width: 768px) {
    .google-map__iframe {
        min-height: 600px;
    }
}

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

@media (min-width: 768px) {
    .google-map__iframe {
        height: 600px;
        min-height: 600px;
    }
}


