/* ─────────────────────────────────────────────────────────────
   ANDERSEN BRAND SYSTEM — supplementary overrides & RFP doc styles
   Primary tokens & component styles live in layout.ts <style>
   ───────────────────────────────────────────────────────────── */

/* File count badge — rebrand */
.file-count-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #020D1C;
  background: #FFFCE0;
  border: 1px solid #E9DCC4;
  border-radius: 100px;
  padding: 3px 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.file-count-badge:hover {
  background: #E9DCC4;
  border-color: #FFDB00;
}
.file-count-badge i { font-size: 11px; }

/* Panel section title */
.panel-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  color: #020D1C;
  margin-bottom: 10px;
}
.panel-section-title i { font-size: 11px; }
