.report-map-shell {
    padding: 26px 0 48px;
}

.report-map-page {
    color: #22354a;
}

.report-map-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.report-map-hero__copy {
    max-width: 760px;
}

.report-map-hero__eyebrow {
    margin: 0 0 10px;
    color: #1f66aa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.report-map-hero h1 {
    margin: 0;
    color: #2b3f56;
    font-size: 3rem;
    line-height: 1.05;
}

.report-map-hero__lead {
    margin: 14px 0 0;
    color: #677b8f;
    font-size: 1.04rem;
    line-height: 1.75;
}

.report-map-hero__summary,
.report-map-filter-panel,
.report-map-stage,
.report-map-empty-state {
    border: 1px solid #d9e5ef;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 42px rgba(25, 54, 87, 0.08);
}

.report-map-hero__summary {
    min-width: 220px;
    padding: 28px;
    text-align: center;
}

.report-map-hero__summary-value {
    display: block;
    color: #135f99;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.report-map-hero__summary-label {
    display: block;
    margin-top: 8px;
    color: #6c8094;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-map-filter-panel {
    margin-bottom: 22px;
    padding: 24px;
}

.report-map-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) repeat(4, minmax(160px, 1fr));
    gap: 18px;
}

.report-map-filter-field label {
    display: block;
    margin-bottom: 10px;
    color: #294059;
    font-size: 0.86rem;
    font-weight: 700;
}

.report-map-filter-field input,
.report-map-filter-field select {
    width: 100% !important;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #cfdae6;
    border-radius: 18px;
    background: #fdfefe;
    color: #22364d;
    font-size: 1rem;
}

.report-map-filter-field input:focus,
.report-map-filter-field select:focus {
    outline: none;
    border-color: #2972b7;
    box-shadow: 0 0 0 4px rgba(41, 114, 183, 0.12);
}

.report-map-filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
}

.report-map-filter-count {
    color: #627689;
    font-size: 0.98rem;
}

.report-map-filter-count strong {
    color: #22364d;
}

.report-map-filter-buttons {
    display: flex;
    gap: 12px;
}

.report-map-filter-reset,
.report-map-filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
}

.report-map-filter-reset {
    border: 1px solid #ccdae8;
    background: #fff;
    color: #34506e !important;
}

.report-map-filter-submit {
    border: 0;
    background: linear-gradient(135deg, #0f5e9f 0%, #1d7bc4 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(23, 101, 164, 0.22);
}

.report-map-stage {
    padding: 22px;
    margin-bottom: 24px;
}

.report-map-canvas {
    width: 100%;
    height: 560px;
    border-radius: 24px;
    overflow: hidden;
    background: #dbe6ef;
}

.report-map-empty-state {
    padding: 56px 20px;
    text-align: center;
}

.report-map-empty-state h3 {
    margin: 0 0 10px;
    color: #29425c;
}

.report-map-empty-state p {
    margin: 0;
    color: #718498;
}

.report-map-popup {
    max-width: 280px;
    color: #2a4055;
}

.report-map-popup__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf3fb;
    color: #135996;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-map-popup h4 {
    margin: 12px 0 10px;
    color: #20374f;
    font-size: 1.05rem;
    line-height: 1.35;
}

.report-map-popup p {
    margin: 0 0 8px;
    color: #61778a;
    line-height: 1.6;
}

.report-map-popup__meta {
    font-size: 0.86rem;
    color: #385570 !important;
}

.report-map-popup__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #113b61;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    margin-top: 8px;
}

@media only screen and (max-width: 1180px) {
    .report-map-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 900px) {
    .report-map-hero,
    .report-map-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .report-map-hero__summary {
        width: 100%;
        min-width: 0;
    }

    .report-map-filter-buttons {
        width: 100%;
        flex-direction: column;
    }

    .report-map-filter-reset,
    .report-map-filter-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 680px) {
    .report-map-shell {
        padding-top: 14px;
    }

    .report-map-hero h1 {
        font-size: 2.35rem;
    }

    .report-map-filter-grid {
        grid-template-columns: 1fr;
    }

    .report-map-filter-panel,
    .report-map-stage {
        padding: 18px;
        border-radius: 24px;
    }

    .report-map-canvas {
        height: 420px;
        border-radius: 20px;
    }
}
