/* Metro Police - Report/Press Release Pages */

.report-page {
    padding: 40px 0 80px;
}

.report-header {
    background: var(--bg-dark);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.report-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.report-badge {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.report-badge.incident { background: #c53030; }
.report-badge.statement { background: #2b6cb0; }
.report-badge.advisory { background: #975a16; }
.report-badge.update { background: #276749; }

.report-number {
    font-family: monospace;
    opacity: 0.8;
}

.report-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.report-date {
    opacity: 0.8;
}

.report-content {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 900px;
}

.report-section {
    margin-bottom: 30px;
}

.report-section h2 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report-section p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.report-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.report-section li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.report-facts {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
}

.report-facts h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
}

.report-facts dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 10px;
}

.report-facts dt {
    font-weight: 600;
    color: var(--text-muted);
}

.report-facts dd {
    color: var(--text-dark);
}

.report-warning {
    background: #fed7d7;
    border: 1px solid #c53030;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.report-warning h3 {
    color: #c53030;
    margin-bottom: 10px;
}

.report-contact {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 20px;
    margin-top: 30px;
}

.report-contact h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-method .icon {
    font-size: 1.5rem;
}

.report-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.report-footer p {
    margin-bottom: 10px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .report-content {
        padding: 20px;
    }
    
    .report-facts dl {
        grid-template-columns: 1fr;
    }
    
    .report-header h1 {
        font-size: 1.5rem;
    }
}
