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

/* Обгортка тримає висоту, якщо iframe з’їжджає в 0 у flex/bootstrap */
.google-map-stats-row__media {
    min-height: 450px;
}

@media (min-width: 768px) {
    .google-map-stats-row__media {
        min-height: 520px;
    }
}

.google-map-stats-row__iframe {
    width: 100%;
    height: 450px;
    min-height: 450px;
    display: block;
    border: 0;
    vertical-align: bottom;
}

@media (min-width: 768px) {
    .google-map-stats-row__iframe {
        height: 520px;
        min-height: 520px;
    }
}

/* iframe-normalized */
.google-map-stats-row__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-stats-row__iframe {
        height: 520px;
        min-height: 520px;
    }
}


