/* v29 — terminal cursor blink on inputs (animation, no color) */
.contact-terminal__input:focus {
    caret-color: auto;
    animation: terminal-caret 1s step-end infinite;
}

@keyframes terminal-caret {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* v29 — monospace body font override inside terminal (no color) */
.contact-terminal__body {
    font-family: 'Courier New', Courier, monospace;
}

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

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

/* contact-split — full-height image needs object-fit (no BS util) */
.contact-split__img {
    object-fit: cover;
    min-height: 16rem;
    max-height: 28rem;
}

/* contact-split — icon cell size (TW rounded padding has no fixed-size BS util) */
.contact-split__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 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;
    }
}


