.scroll-section {
  margin-bottom: 28px;
}
.scroll-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.scroll-section-header .count {
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-right: auto;
}
.scroll-question {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.scroll-question .q-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.scroll-question .q-id {
  font-size: var(--font-label);
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.scroll-question .q-text {
  font-family:
    Georgia,
    'Iowan Old Style',
    'Palatino Linotype',
    'URW Palladio L',
    serif;
  font-size: var(--font-question);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.55;
  color: var(--text);
}
.scroll-question .q-meta {
  font-size: var(--font-help);
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-question textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  min-height: 72px;
  outline: none;
  transition: all 0.2s;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  margin-top: 8px;
}
.scroll-question textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 189, 189, 0.1);
  background: rgba(255, 255, 255, 0.06);
}
.scroll-question textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}
