:root {
    --bg: #f7f9fc;
    --paper: #fff;
    --ink: #0f172a;
    --muted: #5b6472;
    --line: #e5e7eb;
    --accent: #0ea5e9;
    --r: 18px;
    --shadow: 0 10px 28px rgba(2, 6, 23, .10);
}

.wrap {
    width: min(1100px, 94vw);
    margin: 0 auto
}

.head {
    text-align: center;
    margin: 22px 0 12px
}

.head h1 {
    margin: 0;
    font-size: clamp(30px, 3.8vw, 44px);
    color: var(--ink)
}

.head .sub {
    margin: 8px auto 0;
    color: var(--muted);
    max-width: 720px
}

.tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 12px 0 14px;
    flex-wrap: wrap
}

.tab {
    appearance: none;
    border: 1px solid var(--line);
    background: #fff;
    color: #0b4a6f;
    padding: 14px 17px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.tab:hover {
    transform: translateY(-1px)
}

.tab.active {
    background: linear-gradient(180deg, #e8f5ff, #d8ecff);
    border-color: #cfe3fb
}

.map-widgets {
    position: relative
}

.map {
    display: none;
    animation: fadeIn .25s ease
}

.map.visible {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: none
    }
}
.map-page{
    margin-top: 60px;
    margin-bottom: 60px;

}
.ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow)
}

.ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--r)
}

.route {
    margin: 14px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 25px 14px;
    box-shadow: var(--shadow);
}

.route .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 0 !important;
}

.route .text strong {
    color: #0b4a6f
}

.route .text .addr {
    color: #475569;
    font-size: 14px
}

.actions {
    display: flex;
    gap: 8px
}

.btn {
    appearance: none;
    border: 1px solid #cfe3fb;
    background: linear-gradient(180deg, #e9f4ff, #d9ecff);
    color: #0b4a6f;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.btn.ghost {
    background: #fff;
    border-color: var(--line);
    color: #334155
}

.facts {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 14px 0 28px;
    padding: 0;
    list-style: none
}

.facts li {
    background: #0b4a6f;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffffff;
    box-shadow: var(--shadow);
    font-weight: 600
}
