.featured-reports { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 26px; }
.featured-card {
  display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px; text-decoration: none; color: var(--ink); box-shadow: 0 4px 20px rgba(16,24,40,.06);
  border-top: 3px solid #9c7020; transition: box-shadow .15s, transform .15s;
}
.featured-card:hover { box-shadow: 0 10px 28px rgba(16,24,40,.12); transform: translateY(-3px); }
.featured-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.featured-card-head h2 { font-size: 15px; margin: 0; color: var(--ink); }
.featured-card-arrow { font-size: 11.5px; font-weight: 700; color: #9c7020; white-space: nowrap; }
.featured-card-body { display: flex; align-items: center; gap: 16px; }
.featured-pie { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px var(--line); }
.featured-stats { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.featured-stat { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.featured-stat-num { font-size: 15px; font-weight: 800; color: var(--ink); }
.featured-stat-lbl { font-size: 11px; color: var(--ink-faint); }

.parskati-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.preset-chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-size: 13px; font-weight: 600; color: var(--brand-dark);
  text-decoration: none; transition: box-shadow .15s, border-color .15s;
}
.preset-chip:hover { box-shadow: var(--shadow-sm); border-color: var(--brand); }

.parskati-filter, .parskati-quickjump {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.parskati-quickjump h2 { font-size: 14px; margin: 0 0 12px; color: var(--ink-soft); }

.pf-row { display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap; }
.pf-field { display: flex; flex-direction: column; gap: 5px; min-width: 150px; }
.pf-field label { font-size: 11px; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .03em; }
.pf-field input, .pf-field select {
  padding: 9px 10px; font-size: 14px; font-weight: 500; color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--canvas); font-family: inherit;
}
.pf-field input:focus, .pf-field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }

.btn-primary, .btn-secondary {
  border: none; border-radius: var(--radius-sm); padding: 10px 22px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.btn-primary { background: linear-gradient(135deg, #e0ac4a, #9c7020); color: #1a1204; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary { background: var(--brand-tint); color: var(--brand-dark); }
.btn-secondary:hover { background: var(--line-soft); }

.era-table td.era-label { font-weight: 600; }
.era-table .era-gap-note { font-size: 12px; color: var(--ink-faint); }

.era-pie-wrap { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.era-pie {
  width: 160px; height: 160px; border-radius: 50%; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px var(--line);
}
.era-legend { display: flex; flex-direction: column; gap: 8px; min-width: 220px; flex: 1; }
.era-legend-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; }
.era-legend-swatch { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.era-legend-pct { font-weight: 700; color: var(--ink); min-width: 44px; }
.era-legend-label { color: var(--ink-soft); flex: 1; }
.era-legend-count { color: var(--ink-faint); font-size: 12px; }

.methodology-note {
  background: var(--brand-tint); border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 10px 0 22px;
}

.parskati-filter-detail {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.parskati-filter-detail .pf-row { gap: 10px; }
.parskati-filter-detail .pf-field { min-width: 130px; }

@media (max-width: 640px) {
  .pf-row { flex-direction: column; align-items: stretch; }
  .pf-field { min-width: 0; }
}
