.gpx-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gpx-download-btn:hover {
    background: var(--aloha-red, #e30613);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.gpx-download-btn i {
    font-size: 0.8rem;
}

.strecke-bewerb-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.strecke-bewerb-head__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--aloha-red, #e30613);
    text-decoration: none;
}

.strecke-bewerb-head__link:hover {
    text-decoration: underline;
}

.strecke-disciplines {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.strecke-discipline-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.45fr);
    align-items: stretch;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
}

.strecke-discipline-row__info {
    padding: 1.4rem 1.5rem;
    border-right: 1px solid #e5e7eb;
    min-width: 0;
}

.strecke-discipline-row--text-only {
    grid-template-columns: 1fr;
}

.strecke-discipline-row--text-only .strecke-discipline-row__info {
    border-right: none;
}

.strecke-discipline-row__map {
    position: relative;
    min-height: 360px;
    background: #eef2f6;
    display: flex;
    flex-direction: column;
}

.strecke-discipline-row__map > [id^="map_"] {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

@media (max-width: 992px) {
    .strecke-discipline-row {
        grid-template-columns: 1fr;
    }

    .strecke-discipline-row__info {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .strecke-discipline-row__map {
        order: -1;
        min-height: 320px;
    }

    .strecke-discipline-row__map > [id^="map_"] {
        min-height: 320px;
    }
}
