@import url('/report/report.css');

body.report-v2 {
    --font-display: 'Overlock', 'Overlock Fallback', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

body.report-v2::before {
    display: none;
}

/* Header-on-light skin centralised in components.css: body:is(.report-v2, …) .header */

.report-page .hero-section {
    padding-top: calc(var(--header-height) + var(--space-3xl));
}

.report-page .hero-section h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--weight-bold);
    color: var(--olive-deep);
    margin-bottom: 1rem;
}

#selected-address {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--sage-mist);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--olive-deep);
}

#change-address-btn {
    display: inline;
    margin-left: 0.75rem;
    background: none;
    border: none;
    color: var(--olive);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    font-family: var(--font-body);
}

#privacy-error {
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.report-cities-list {
    max-width: 1040px;
    margin: 3rem auto 2rem;
    padding: 0 var(--space-xl);
}

.report-cities-list h2 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--olive-deep);
    margin-bottom: 1rem;
    text-align: center;
}

.report-cities-list p {
    text-align: center;
    color: var(--earth);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.report-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    gap: var(--space-md);
}

.report-city-card {
    margin: 0;
}

.report-city-card-link {
    display: block;
    height: 100%;
    padding: var(--space-lg);
    background: var(--cream);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--bark);
    text-decoration: none;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.report-city-card-link:hover,
.report-city-card-link:focus-visible {
    border-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 63, 53, 0.08);
}

.report-city-letter {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sage-mist);
    color: var(--olive-deep);
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-sm);
}

.report-city-card h3 {
    font-size: 1.2rem;
    color: var(--olive-deep);
    margin: 0 0 var(--space-xs);
}

.report-city-card p {
    text-align: left;
    margin: 0 0 var(--space-md);
}

.report-city-cta {
    color: var(--terracotta);
    font-weight: var(--weight-semibold);
}

@media (max-width: 640px) {
    body.report-v2 .header {
        padding: var(--space-md);
    }
}
