/* Print-optimised report stylesheet (feature 7). Light, paper-friendly.
   Used by /report/region/{slug}/ and /report/electorate/{slug}/. */
* { box-sizing: border-box; }
body {
  margin: 0; background: #f3f4f6; color: #111827;
  font-family: Inter, system-ui, -apple-system, sans-serif; line-height: 1.5;
}
.rp-toolbar {
  position: sticky; top: 0; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 10px 18px; background: #111827; color: #fff;
}
.rp-toolbar a, .rp-toolbar button {
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 7px;
  border: 0; cursor: pointer; text-decoration: none;
}
.rp-print { background: #1fdfb0; color: #04241c; }
.rp-back { background: transparent; color: #cbd5e1; border: 1px solid #374151; }

.rp-page {
  max-width: 820px; margin: 18px auto; background: #fff; padding: 40px 48px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.rp-head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid #111827; padding-bottom: 14px; margin-bottom: 22px; }
.rp-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.rp-brand img { height: 26px; }
.rp-date { font-size: 12px; color: #6b7280; text-align: right; }
h1 { font-size: 26px; margin: 0 0 4px; }
.rp-sub { color: #6b7280; margin: 0 0 22px; }
h2 { font-size: 15px; margin: 26px 0 10px; text-transform: uppercase; letter-spacing: .06em; color: #374151; }

.rp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 8px; }
.rp-stat { border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px; text-align: center; }
.rp-stat b { display: block; font-size: 20px; }
.rp-stat span { font-size: 11px; color: #6b7280; }

table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
th, td { text-align: left; padding: 7px 8px; border-bottom: 1px solid #e5e7eb; vertical-align: top; }
th { background: #f9fafb; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: #6b7280; }
.rp-band { display: inline-block; min-width: 18px; text-align: center; font-weight: 800; color: #fff; padding: 1px 6px; border-radius: 4px; }
.rp-risk-high { color: #b91c1c; font-weight: 700; }

.rp-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.rp-fact { font-size: 13px; }
.rp-fact b { color: #374151; }

.rp-sources { margin-top: 30px; padding-top: 16px; border-top: 1px solid #e5e7eb; font-size: 11px; color: #6b7280; }

@media print {
  .rp-toolbar { display: none; }
  body { background: #fff; }
  .rp-page { box-shadow: none; margin: 0; max-width: none; padding: 0 12px; }
  table { font-size: 11px; }
  tr { page-break-inside: avoid; }
}
