/**
 * Results Page — Anonymized Outcome Patterns
 */

/* Hero */
.results-hero {
    background: linear-gradient(135deg, var(--bs-primary-dark, #001a3d) 0%, var(--bs-primary, #002b5c) 100%);
    padding: 5rem 0 3.5rem;
    color: #f1f5f9;
}

.results-hero h1 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.results-hero .lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
}

/* Sections */
.results-body {
    padding: 0;
}

.results-section {
    padding: 3.5rem 0;
    background: #fff;
}

.results-section-alt {
    background: #f8fafc;
}

.results-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.results-section-intro {
    font-size: 0.95rem;
    color: #64748b;
    max-width: none;
    margin-bottom: 0;
}

/* Metric Cards */
.metric-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.results-section-alt .metric-card {
    background: #fff;
}

.metric-card:hover {
    border-color: var(--bs-primary, #002b5c);
    box-shadow: 0 4px 16px rgba(0,43,92,0.06);
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bs-primary, #002b5c);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    min-height: 2.4em;
}

.metric-detail {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: none;
}

/* CTA */
.results-cta {
    background: var(--bs-primary, #002b5c);
    color: #fff;
    padding: 3.5rem 0;
}

.results-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.results-cta p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 1.75rem;
    max-width: none;
}

/* Responsive */
@media (max-width: 768px) {
    .results-hero { padding: 3.5rem 0 2.5rem; }
    .results-section { padding: 2.5rem 0; }
    .metric-number { font-size: 1.6rem; }
    .metric-label { min-height: auto; }
    .results-cta { padding: 2.5rem 0; }
}
