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

