/* v34 — background image needs object-fit (no BS utility) */
.contact-spotlight__img {
    object-fit: cover;
}

/* v34 — glass card backdrop blur (no BS utility) */
.contact-spotlight__card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* v34 — readable placeholders on dark glass inputs (BS has no placeholder utility) */
.contact-spotlight__field::placeholder,
.contact-spotlight__field::-webkit-input-placeholder {
    color: rgba(var(--bs-white-rgb), 0.55);
    opacity: 1;
}

.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-numbered-steps-how-to-find-us__iframe { width: 100%; min-height: 400px; }
@media (min-width: 768px) { .google-map-with-numbered-steps-how-to-find-us__iframe { min-height: 600px; } }

.google-map-route-steps__layout > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (min-width: 992px) {
    .google-map-route-steps__aside {
        width: calc(40% - 0.75rem);
    }

    .google-map-route-steps__media {
        width: calc(60% - 0.75rem);
    }
}

/* iframe-normalized */
.google-map-with-numbered-steps-how-to-find-us__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-numbered-steps-how-to-find-us__iframe {
        height: 600px;
        min-height: 600px;
    }
}


