/* Report page specific styles */

.report-main {
    background:
        radial-gradient(circle at 18% 10%, rgba(244, 185, 66, 0.18) 0, rgba(244, 185, 66, 0) 34%),
        linear-gradient(150deg, #f7fbff 0%, #eef7f6 100%);
}

.report-main .container {
    max-width: 1080px;
}

.report-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
    gap: 1rem;
}

.report-info-card,
.report-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(18, 52, 77, 0.08);
    box-shadow: 0 14px 32px rgba(18, 52, 77, 0.1);
    padding: clamp(1rem, 3.6vw, 1.6rem);
}

.report-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #fff1d6;
    color: #b36a00;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.report-info-card h2,
.report-form-card h2 {
    color: #12344d;
    margin-bottom: 0.7rem;
}

.report-info-card p,
.report-info-card li,
.report-form-card p {
    color: #3f566b;
    line-height: 1.7;
}

.report-points {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0.65rem 0 0.8rem;
}

.report-points li {
    margin-bottom: 0.4rem;
}

.report-meta {
    margin-bottom: 0.4rem;
}

.report-help-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

@media (max-width: 900px) {
    .report-layout {
        grid-template-columns: 1fr;
    }
}
