/* Fortschrittsnavigation der Anfrage-Strecke */
.anfrage-progress {
    max-width: 900px;
    margin: 1.25rem auto 0;
    padding: 0 1.5rem;
}
.anfrage-progress ol {
    display: flex;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}
.anfrage-progress li {
    position: relative;
    flex: 1;
    text-align: center;
}
.anfrage-progress li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}
.anfrage-progress li.is-complete:not(:last-child)::after,
.anfrage-progress li.is-active:not(:last-child)::after {
    background: var(--color-accent);
}
.anfrage-progress a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--color-muted);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 600;
    background: var(--color-bg);
    padding: 0 .45rem;
}
.anfrage-progress a:hover { color: var(--color-accent); }
.anfrage-progress li.is-active a,
.anfrage-progress li.is-complete a { color: var(--color-accent); }
.anfrage-progress-number {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-muted);
}
.anfrage-progress li.is-active .anfrage-progress-number,
.anfrage-progress li.is-complete .anfrage-progress-number {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
}
.anfrage-progress-hint {
    margin: .6rem 0 0;
    text-align: center;
    color: var(--color-muted);
    font-size: .78rem;
}
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
@media (max-width: 600px) {
    .anfrage-progress { padding: 0 .75rem; }
    .anfrage-progress a { display: flex; flex-direction: column; gap: .2rem; font-size: .72rem; }
    .anfrage-progress li:not(:last-child)::after { top: 1rem; }
}
