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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.report-results-filter-range {
    color: #627689;
    font-size: 0.98rem;
}

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

.report-results-reset,
.report-results-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-results-reset {
    border: 1px solid #ccdae8;
    background: #fff;
    color: #34506e !important;
}

.report-results-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-results-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.report-results-kpi {
    padding: 24px;
}

.report-results-kpi__label {
    display: block;
    color: #688095;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.report-results-kpi__value {
    display: block;
    margin-top: 14px;
    color: #22374b;
    font-size: 1.8rem;
    line-height: 1.2;
}

.report-results-kpi__meta {
    display: block;
    margin-top: 8px;
    color: #718497;
    line-height: 1.65;
}

.report-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.report-results-card {
    overflow: hidden;
}

.report-results-card--wide {
    grid-column: 1 / -1;
}

.report-results-card__header {
    padding: 26px 28px 0;
}

.report-results-card__header h2 {
    margin: 0;
    color: #273a4f;
    font-size: 1.7rem;
    line-height: 1.2;
}

.report-results-chart {
    min-height: 360px;
    padding: 10px 10px 18px;
}

.report-results-chart--wide {
    min-height: 420px;
}

@media only screen and (max-width: 980px) {
    .report-results-hero,
    .report-results-filter-actions,
    .report-results-grid,
    .report-results-kpis,
    .report-results-filter-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .report-results-hero__summary {
        min-width: 0;
    }

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

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

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

    .report-results-hero h1 {
        font-size: 2.2rem;
    }

    .report-results-hero__summary,
    .report-results-filter-panel,
    .report-results-kpi,
    .report-results-card__header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .report-results-card__header h2 {
        font-size: 1.4rem;
    }

    .report-results-chart {
        min-height: 320px;
        padding-left: 0;
        padding-right: 0;
    }
}
