/* reports/index.html — page-specific rules. Nav + basic :root aus _nav.css. */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { line-height: 1.6; }
.container { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
h1 { font-size: 2.4rem; color: #fff; margin: 3rem 0 1rem; letter-spacing: -0.02em; }

/* Report cards */
.report-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    transition: background 0.4s ease;
    cursor: pointer;
}
.report-card:hover { background: rgba(255, 255, 255, 0.03); }
.report-card h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.report-card .h2-slash {
    display: inline-block;
    opacity: 0.35;
    transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
.report-card:hover .h2-slash { color: var(--accent2); opacity: 0.85; }
.report-card .meta { color: rgba(200,220,255,0.5); font-size: 0.8rem; margin-bottom: 0.8rem; }
.report-card p { font-size: 0.9rem; opacity: 0.8; }

footer { text-align: center; padding: 2rem 0; font-size: 0.75rem; opacity: 0.4; border-top: 1px solid var(--border); margin-top: 3rem; }
footer a { color: var(--accent); text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 768px) {h1 { font-size: 1.8rem; }
    .report-card h2 { font-size: 1.3rem; }
    .report-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
    .report-card { padding: 1.2rem; margin-bottom: 1.5rem; }
    .report-card h2 { font-size: 1.1rem; }
    footer { line-height: 2.2; }
}
