.web-map-main {
    width: var(--site-page);
    margin: 0 auto;
    padding: clamp(42px, 6vw, 76px) 0 72px;
}

.web-map-intro {
    max-width: 940px;
}

.web-map-eyebrow,
.web-map-count {
    margin: 0 0 9px;
    color: var(--site-accent-warm);
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.web-map-intro h1 {
    max-width: 780px;
    margin: 0;
    font-family: var(--site-heading-font);
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    font-weight: 320;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.web-map-lede {
    max-width: 780px;
    margin: 24px 0 0;
    color: var(--site-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
}

.web-map-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    max-width: 820px;
    margin: 32px 0 0;
}

.web-map-stats div {
    padding: 14px 16px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-panel);
}

.web-map-stats dt {
    color: var(--site-muted);
    font-size: 0.77rem;
    line-height: 1.35;
}

.web-map-stats dd {
    margin: 5px 0 0;
    color: var(--site-accent-strong);
    font-size: 1.55rem;
    font-weight: 720;
}

.web-map-stats dd.has-issues {
    color: var(--site-accent-warm);
}

.web-map-search {
    display: grid;
    gap: 8px;
    max-width: 620px;
    margin-top: 28px;
    color: var(--site-muted);
    font-size: 0.8rem;
    font-weight: 650;
}

.web-map-search input {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--site-line);
    border-radius: 7px;
    outline: 0;
    background: var(--site-panel);
    color: var(--site-text);
    font: inherit;
    font-size: 0.95rem;
}

.web-map-search input:focus {
    border-color: var(--site-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--site-accent) 18%, transparent);
}

.web-map-meta {
    margin: 16px 0 0;
    color: var(--site-muted);
    font-size: 0.76rem;
    line-height: 1.55;
}

.web-map-group {
    padding-top: clamp(44px, 6vw, 72px);
}

.web-map-group > header {
    max-width: 680px;
    margin-bottom: 20px;
}

.web-map-group h2 {
    margin: 0;
    font-family: var(--site-heading-font);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 390;
    letter-spacing: -0.025em;
}

.web-map-group > header > p:last-child {
    margin: 8px 0 0;
    color: var(--site-muted);
    line-height: 1.55;
}

.web-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.web-map-card {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-panel);
}

.web-map-card-heading {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.web-map-card h3 {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.45;
}

.web-map-card h3 a {
    color: var(--site-text);
    text-decoration-thickness: 1px;
    text-decoration-color: color-mix(in srgb, var(--site-accent) 52%, transparent);
    text-underline-offset: 4px;
}

.web-map-status {
    flex: 0 0 auto;
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--site-accent-soft);
    color: var(--site-accent-strong);
    font-size: 0.68rem;
    font-weight: 720;
    white-space: nowrap;
}

.web-map-status-warning {
    color: var(--site-accent-warm);
}

.web-map-url {
    overflow-wrap: anywhere;
    margin: 9px 0 0;
    color: var(--site-muted);
    font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
    font-size: 0.73rem;
    line-height: 1.5;
}

.web-map-card details {
    margin-top: 12px;
    color: var(--site-muted);
    font-size: 0.75rem;
}

.web-map-card summary {
    width: fit-content;
    cursor: pointer;
}

.web-map-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    line-height: 1.55;
}

.web-map-empty {
    margin: 42px 0 0;
    padding: 18px;
    border: 1px dashed var(--site-line);
    border-radius: 8px;
    color: var(--site-muted);
}

[hidden] {
    display: none !important;
}

@media (max-width: 760px) {
    .web-map-stats,
    .web-map-grid {
        grid-template-columns: 1fr 1fr;
    }

    .web-map-main {
        padding-top: 36px;
    }
}

@media (max-width: 520px) {
    .web-map-grid {
        grid-template-columns: 1fr;
    }

    .web-map-card-heading {
        display: grid;
    }

    .web-map-status {
        width: fit-content;
    }
}

@supports not (background: color-mix(in srgb, black 50%, white)) {
    .web-map-search input:focus {
        box-shadow: none;
    }

    .web-map-card h3 a {
        text-decoration-color: var(--site-accent);
    }
}
