/* v26 — progress connector fill transition (no BS util for custom transition) */
.hstep-bar__fill {
    transition: width 0.5s ease;
}

/* v26 — step node state transition */
.hstep-bar__node {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.google-map-minimal__iframe {
    width: 100%;
    min-height: 500px;
}

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

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

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


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

