/* SONARA — Richieste open (artista) */

/* ============= QUOTA HEADER ============= */
.req-quota {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(123,85,208,0.10) 0%, transparent 60%),
    var(--card);
}
.req-quota-left {
  display: flex; align-items: center; gap: 18px;
  min-width: 0;
}
.req-quota-ring {
  width: 56px; height: 56px;
  flex-shrink: 0;
  position: relative;
}
.req-quota-ring svg { transform: rotate(-90deg); }
.req-quota-ring .num {
  position: absolute; inset: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--foreground);
  letter-spacing: -0.02em;
}
.req-quota-meta { min-width: 0; }
.req-quota-meta .t {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 4px;
}
.req-quota-meta .s {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.req-quota-cta {
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--violet, #7b55d0);
  color: white;
  font-weight: 500;
  font-size: 13.5px;
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: inherit;
  white-space: nowrap;
  transition: all 150ms;
  box-shadow: var(--shadow-violet-sm);
}
.req-quota-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-violet-md); }
.req-quota-cta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============= LAYOUT ============= */
.req-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1080px) { .req-layout { grid-template-columns: 320px minmax(0, 1fr); } }
@media (max-width: 880px) { .req-layout { grid-template-columns: 1fr; } }

/* ============= LIST PANEL ============= */
.req-list-panel {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 880px) { .req-list-panel { position: static; max-height: none; } }

.req-list-head {
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.req-list-head .t {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.req-list-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 8px;
  background: var(--muted);
  border: 1px solid var(--border);
}
.req-list-tab {
  padding: 4px 9px;
  font-size: 11.5px;
  border-radius: 6px;
  color: var(--muted-foreground);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  transition: all 150ms;
}
.req-list-tab.active {
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.req-list { overflow-y: auto; flex: 1; }
.req-list::-webkit-scrollbar { width: 6px; }
.req-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.req-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 120ms;
  position: relative;
}
.req-item:last-child { border-bottom: 0; }
.req-item:hover { background: var(--muted); }
.req-item.active {
  background: rgba(123,85,208,0.08);
}
.req-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--violet, #7b55d0);
}
.req-item-row1 {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.req-item-status {
  width: 8px; height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.req-item-status.open { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.req-item-status.closed { background: var(--muted-foreground); }
.req-item-status.accepted { background: var(--violet, #7b55d0); }
.req-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.req-item-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}
.req-item-meta .sep { opacity: 0.5; }
.req-item-meta .badge {
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.req-item-meta .badge.offers {
  background: rgba(123,85,208,0.14);
  color: var(--violet-bright, #7b55d0);
  border: 1px solid rgba(123,85,208,0.28);
}
.req-item-meta .badge.urgent {
  background: rgba(245,158,11,0.14);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.32);
}

/* ============= DETAIL PANEL ============= */
.req-detail {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}
.req-detail-head {
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--border);
}
.req-detail-status-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.req-status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.req-status-pill.open {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.28);
}
.req-status-pill.closed {
  background: var(--muted);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}
.req-status-pill.accepted {
  background: rgba(123,85,208,0.14);
  color: var(--violet-bright, #7b55d0);
  border: 1px solid rgba(123,85,208,0.28);
}
.req-status-pill .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: currentColor;
}
.req-status-pill.open .dot { box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.req-detail-meta-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--muted-foreground);
  background: var(--muted);
  border: 1px solid var(--border);
}
.req-detail-meta-chip.urgent {
  color: #f59e0b;
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.28);
}

.req-detail-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  line-height: 1.15;
  margin: 0 0 8px;
}
.req-detail-subtitle {
  font-size: 13.5px;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.req-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--muted) 30%, transparent);
}
@media (max-width: 600px) { .req-detail-stats { grid-template-columns: repeat(2, 1fr); } }

.req-detail-stat .l {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 4px;
}
.req-detail-stat .v {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 3px;
}
.req-detail-stat .v .ccy { font-size: 11px; color: var(--muted-foreground); font-weight: 500; }
.req-detail-stat .v.urgent { color: #f59e0b; }

.req-detail-section {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}
.req-detail-section:last-child { border-bottom: 0; }
.req-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.req-section-title .count {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--muted-foreground);
  text-transform: none;
  letter-spacing: 0;
}

.req-tag-row {
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.req-tag {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.req-brief {
  font-size: 14px;
  color: var(--foreground);
  line-height: 1.65;
}
.req-brief p { margin: 0 0 10px; }
.req-brief p:last-child { margin: 0; }

.req-attach-row {
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.req-attach {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 10px;
  background: var(--muted);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--foreground);
  cursor: pointer;
  transition: border-color 150ms;
}
.req-attach:hover { border-color: var(--violet-bright, #7b55d0); }
.req-attach .ic {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(123,85,208,0.10);
  color: var(--violet-bright, #7b55d0);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(123,85,208,0.20);
}
.req-attach .meta { line-height: 1.3; }
.req-attach .meta .n { font-weight: 500; color: var(--foreground); }
.req-attach .meta .s { font-size: 11px; color: var(--muted-foreground); }

/* ============= OFFERS ============= */
.req-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.req-offer {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: all 150ms;
}
.req-offer:hover { border-color: rgba(123,85,208,0.40); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(65,34,142,0.20); }
.req-offer.featured {
  border-color: rgba(245,158,11,0.40);
  background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, transparent 60%), var(--background);
}

.req-offer-head {
  display: flex; align-items: center; gap: 10px;
}
.req-offer-av {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6b4bb8, #2e1866);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.req-offer-who { min-width: 0; flex: 1; }
.req-offer-name {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 2px;
}
.req-offer-name .verified { color: var(--violet-bright, #7b55d0); display: inline-flex; }
.req-offer-rating {
  font-size: 11.5px;
  color: var(--muted-foreground);
  display: inline-flex; align-items: center; gap: 4px;
}
.req-offer-rating .star { color: #f59e0b; }
.req-offer-rating strong { color: var(--foreground); font-weight: 600; }

.req-offer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--muted);
  border: 1px solid var(--border);
}
.req-offer-stat .l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 3px;
}
.req-offer-stat .v {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.req-offer-stat .v .ccy { font-size: 11px; color: var(--muted-foreground); font-weight: 500; }

.req-offer-msg {
  font-size: 13px;
  color: var(--foreground);
  line-height: 1.55;
  position: relative;
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

.req-offer-attach {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.req-offer-attach .play {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(123,85,208,0.14);
  color: var(--violet-bright, #7b55d0);
  border: 1px solid rgba(123,85,208,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* Snippet differentiation: has-preview vs text-only */
.req-offers-cta {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(123,85,208,0.30);
  background: linear-gradient(135deg, rgba(123,85,208,0.10), rgba(217,119,87,0.05));
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  margin-bottom: 18px;
  transition: all 160ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.req-offers-cta:hover {
  border-color: rgba(123,85,208,0.50);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(65,34,142,0.32);
}
.req-offers-cta-avs { display: inline-flex; flex-shrink: 0; }
.req-offers-cta-avs .cta-av {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6b4bb8, #2e1866);
  color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--card);
  margin-left: -10px;
}
.req-offers-cta-avs .cta-av:first-child { margin-left: 0; }
.req-offers-cta-meta { flex: 1; min-width: 0; }
.req-offers-cta-meta .t {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--foreground); letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.req-offers-cta-meta .s { font-size: 12.5px; color: var(--muted-foreground); margin-top: 2px; }
.req-offers-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 18px;
  border-radius: 999px;
  background: var(--violet, #7b55d0);
  color: white;
  font-size: 13px; font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(123,85,208,0.5);
}
.new-pill-inline {
  font-size: 10.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  background: #d97757; color: white;
  letter-spacing: 0.02em;
}
.req-no-offers {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 32px 20px;
  border-radius: 14px;
  border: 1px dashed var(--border);
  background: var(--background);
  text-align: center;
  margin-bottom: 18px;
  color: var(--muted-foreground);
}
.req-no-offers svg { color: var(--violet-bright, #7b55d0); opacity: 0.7; }
.req-no-offers .t { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--foreground); }
.req-no-offers .s { font-size: 12.5px; }

/* OFFERS MODAL */
.req-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  animation: req-fade 180ms ease;
}
@keyframes req-fade { from { opacity: 0; } to { opacity: 1; } }
.req-modal {
  width: 100%; max-width: 760px;
  max-height: calc(100vh - 80px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: req-modal-in 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes req-modal-in { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }
.req-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.req-modal-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.015em; color: var(--foreground); }
.req-modal-sub { font-size: 13px; color: var(--muted-foreground); margin-top: 2px; }
.req-modal-close {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--muted); border: 0; color: var(--muted-foreground);
  cursor: pointer; font-size: 14px; flex-shrink: 0;
}
.req-modal-close:hover { background: var(--border); color: var(--foreground); }
.req-modal-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.req-modal-count { font-size: 13px; color: var(--muted-foreground); }
.req-modal-count strong { color: var(--foreground); font-weight: 700; }
.req-modal-count .sep { margin: 0 6px; color: color-mix(in oklab, var(--muted-foreground) 40%, transparent); }
.req-modal-sort { display: inline-flex; gap: 4px; background: var(--muted); border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.req-modal-sortbtn {
  padding: 6px 11px; border-radius: 7px; border: 0; background: transparent;
  font: 500 12px var(--font-sans); color: var(--muted-foreground); cursor: pointer;
}
.req-modal-sortbtn.active { background: var(--card); color: var(--foreground); box-shadow: var(--shadow-sm); }
.req-modal-body { overflow-y: auto; padding: 18px 22px 22px; }
.req-offers-grid.modal { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .req-offers-grid.modal { grid-template-columns: 1fr; } }

/* Snippet differentiation: has-preview vs text-only */
.req-offer-snippet {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 2px;
}
.req-offer-snippet.has {
  background: rgba(123,85,208,0.07);
  border: 1px solid rgba(123,85,208,0.24);
  color: var(--violet-bright, #7b55d0);
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 140ms, border-color 140ms;
}
.req-offer-snippet.has:hover {
  background: rgba(123,85,208,0.12);
  border-color: rgba(123,85,208,0.40);
}
.req-offer-snippet.has .play {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--violet, #7b55d0);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.req-offer-snippet.has .snip-wave {
  flex: 1;
  display: flex; align-items: center; gap: 2px;
  height: 22px;
  min-width: 0;
  overflow: hidden;
}
.req-offer-snippet.has .snip-wave > span {
  flex: 1;
  background: color-mix(in oklab, var(--violet-bright, #7b55d0) 55%, transparent);
  border-radius: 1px;
  min-width: 1px;
}
.req-offer-snippet.has .snip-label {
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.req-offer-snippet.none {
  background: var(--muted);
  border: 1px dashed var(--border);
  color: var(--muted-foreground);
}
.req-offer-snippet.none svg { flex-shrink: 0; opacity: 0.7; }
/* faintly de-emphasize text-only offers vs ones with a preview */
.req-offer:has(.req-offer-snippet.none) { opacity: 0.92; }
.req-offer:has(.req-offer-snippet.has) {
  border-color: rgba(123,85,208,0.30);
}

.req-offer-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 6px;
  margin-top: auto;
}
.req-offer-btn {
  height: 36px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  transition: all 120ms;
  padding: 0 10px;
}
.req-offer-btn:hover { background: var(--muted); }
.req-offer-btn.primary {
  background: var(--violet, #7b55d0);
  color: white;
  border-color: var(--violet, #7b55d0);
}
.req-offer-btn.primary:hover { background: var(--violet-light, #6b4bb8); }
.req-offer-btn.danger {
  color: #ef4444;
}
.req-offer-btn.danger:hover { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.30); }
.req-offer-btn.icon-only { width: 36px; padding: 0; }

/* ============= ACTIONS BAR ============= */
.req-actions-bar {
  padding: 14px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  background: color-mix(in oklab, var(--muted) 40%, transparent);
  border-bottom: 1px solid var(--border);
}
.req-actions-bar .info {
  font-size: 12.5px;
  color: var(--muted-foreground);
}
.req-actions-bar .info strong { color: var(--foreground); font-weight: 500; }
.req-actions-bar-btns {
  display: inline-flex;
  gap: 8px;
}
.req-bar-btn {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 120ms;
}
.req-bar-btn:hover { background: var(--muted); }
.req-bar-btn.danger {
  color: #ef4444;
  border-color: rgba(239,68,68,0.30);
}
.req-bar-btn.danger:hover { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.45); }

/* ============= EMPTY DETAIL ============= */
.req-detail-empty {
  padding: 80px 30px;
  text-align: center;
  color: var(--muted-foreground);
}
.req-detail-empty .ic {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(123,85,208,0.10);
  color: var(--violet-bright, #7b55d0);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(123,85,208,0.25);
}
.req-detail-empty .t {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 6px;
}
.req-detail-empty .s { font-size: 13px; }

/* ============= COMPACT density ============= */
body[data-density="compact"] .req-quota { padding: 14px 18px; }
body[data-density="compact"] .req-detail-head { padding: 16px 22px 12px; }
body[data-density="compact"] .req-detail-section { padding: 16px 22px; }
body[data-density="compact"] .req-detail-stats { padding: 14px 22px; }
body[data-density="compact"] .req-item { padding: 11px 14px; }
body[data-density="compact"] .req-detail-title { font-size: 20px; }
