.route-info {
    overflow: hidden;
    margin-top: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: #fff;
    color: #1e2d24;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
}

.route-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: #f7faf7;
}

.route-info-kicker {
    display: block;
    margin-bottom: 0.35rem;
    color: #0e270e;
    font-weight: 700;
}

.route-info-kicker i,
.route-metrics i {
    color: #ff3b16;
}

.route-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    font-size: 0.92rem;
}

.route-status {
    max-width: 42%;
    color: #657168;
    font-size: 0.82rem;
    text-align: right;
}

.route-status.is-error {
    color: #b42318;
}

.route-map {
    width: 100%;
    height: 280px;
    background: #e8ece9;
}

@media (max-width: 576px) {
    .route-info-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .route-status {
        max-width: 100%;
        text-align: left;
    }

    .route-map {
        height: 235px;
    }
}
