/* =====================================================================
   COMPONENTS — buttons, cards, fields, pills, choice, notices
   ===================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: var(--fs-15);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  background: var(--paper-bright);
  color: var(--ink);
  transition: background var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--ink);
  color: var(--paper-bright);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--navy); border-color: var(--navy); color: var(--paper-bright); }

.btn-accent {
  background: var(--navy);
  color: var(--paper-bright);
  border-color: var(--navy);
}
.btn-accent:hover { background: var(--deep); border-color: var(--deep); color: var(--paper-bright); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper-bright); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
  padding: 8px 14px;
}
.btn-ghost:hover { background: var(--paper-deep); color: var(--ink); }

.btn-sm { padding: 8px 16px; font-size: var(--fs-13); border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 30px; font-size: var(--fs-16); }
.btn-block { width: 100%; }

.btn .arrow {
  display: inline-block;
  transition: transform var(--motion-fast);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Cards */
.card {
  background: var(--paper-bright);
  border-radius: var(--radius);
  padding: var(--space-5);
  border: 1px solid rgba(11, 23, 36, 0.06);
}
.card-flat { box-shadow: none; }

.card-rule {
  position: relative;
  padding-left: var(--space-5);
  border: 0;
  border-left: var(--rule);
  background: transparent;
  border-radius: 0;
}
.card-rule h3 { font-size: var(--fs-24); }

/* Editorial product card */
.product-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  background: var(--paper-bright);
  border: 1px solid rgba(11, 23, 36, 0.08);
  border-radius: var(--radius-lg);
  transition: transform var(--motion), box-shadow var(--motion), border-color var(--motion);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ink);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--ink);
}
.product-card .index {
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  color: var(--slate);
  letter-spacing: 0.08em;
}
.product-card h3 { font-size: var(--fs-32); letter-spacing: -0.025em; }
.product-card .desc { color: var(--ink-soft); font-size: var(--fs-16); line-height: 1.55; }
.product-card .metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(11, 23, 36, 0.08);
}
.product-card .metrics .v {
  font-family: var(--font-display);
  font-size: var(--fs-32);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.product-card .metrics .l {
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-top: 6px;
}
.product-card .cta-row { padding-top: var(--space-2); }

/* Numbered chapter row (editorial) */
.chapter-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5) 0;
  border-top: var(--rule-hair);
}
.chapter-row:last-child { border-bottom: var(--rule-hair); }
.chapter-row .num {
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  color: var(--slate);
  letter-spacing: 0.08em;
}
.chapter-row h3 { font-size: var(--fs-24); margin-bottom: 4px; }
.chapter-row .meta { color: var(--ink-soft); font-size: var(--fs-14); }
.chapter-row .cta { white-space: nowrap; }

@media (max-width: 600px) {
  .chapter-row {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
  }
  .chapter-row .cta { grid-column: 1 / -1; }
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--fs-12);
  font-weight: 600;
  background: var(--paper-deep);
  color: var(--ink);
  border: 1px solid transparent;
  letter-spacing: 0.04em;
}
.pill-primary { background: var(--sky); color: var(--navy); }
.pill-success { background: var(--success-bg); color: var(--success); }
.pill-warn    { background: var(--warn-bg);    color: var(--warn);    }
.pill-danger  { background: var(--danger-bg);  color: var(--danger);  }

/* Forms */
.field { display: block; margin-bottom: var(--space-4); }
.field-label {
  display: block;
  font-size: var(--fs-13);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field-help {
  font-size: var(--fs-12);
  color: var(--slate);
  margin-top: 4px;
}
.input, .textarea, .select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 23, 36, 0.16);
  background: var(--paper-bright);
  color: var(--ink);
  font-size: var(--fs-15);
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 23, 36, 0.10);
}
.textarea { min-height: 96px; resize: vertical; }
.search-input { position: relative; max-width: 360px; }
.search-input .input { padding-left: 38px; }
.search-input::before {
  content: '';
  position: absolute; left: 14px; top: 50%;
  width: 16px; height: 16px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1724' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>") no-repeat center / contain;
}

/* Notices */
.notice {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  font-size: var(--fs-15);
  background: var(--paper-bright);
  border: 1px solid rgba(11, 23, 36, 0.08);
  border-left: 4px solid var(--ink);
  margin-bottom: var(--space-4);
}
.notice-info    { background: var(--sky); border-left-color: var(--navy); color: var(--navy); }
.notice-success { background: var(--success-bg); border-left-color: var(--success); color: var(--success); }
.notice-warn    { background: var(--warn-bg); border-left-color: var(--warn); color: var(--warn); }
.notice-danger  { background: var(--danger-bg); border-left-color: var(--danger); color: var(--danger); }

/* Empty state */
.empty {
  padding: var(--space-7) var(--space-5);
  text-align: center;
  border: 1px dashed var(--mist);
  border-radius: var(--radius);
  background: var(--paper-bright);
}
.empty h3 { margin-bottom: var(--space-2); }
.empty p { color: var(--slate); }

/* Error Collection ------------------------------------------------------ */
.error-collection { max-width: 980px; margin: 0 auto; }
.error-collection-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-4);
}
.error-collection-title .eyebrow { margin-bottom: var(--space-2); }
.error-collection-title h2 { margin: 0 0 var(--space-2); font-size: var(--fs-32); }
.error-collection-title p { margin: 0; color: var(--slate); font-size: var(--fs-14); }
.error-collection-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: flex-end; }
.error-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(11, 23, 36, 0.10);
  border-radius: var(--radius);
  background: var(--paper-bright);
}
.error-filter-label {
  color: var(--slate);
  font-size: var(--fs-13);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.error-filter-options { display: inline-flex; gap: var(--space-2); flex-wrap: wrap; }
.error-filter-option {
  border: 1px solid var(--mist);
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: var(--fs-14);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}
.error-filter-option:hover { border-color: var(--navy); color: var(--ink); transform: translateY(-1px); }
.error-filter-option:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.error-filter-option[aria-pressed="true"] { border-color: var(--navy); background: var(--navy); color: var(--paper-bright); }
.error-item {
  margin-bottom: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: var(--shadow-sm);
}
.error-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.error-item-kicker {
  display: block;
  color: var(--navy);
  font-size: var(--fs-13);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.error-item-date { color: var(--slate); font-size: var(--fs-12); white-space: nowrap; }
.error-item .question-stem { max-width: none; }
.error-choices { margin-top: var(--space-5); }
.error-choice { pointer-events: none; }
.error-answer {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-left: 3px solid var(--danger);
  background: var(--danger-bg);
  color: var(--ink-soft);
}
.error-answer strong { color: var(--danger); font-size: var(--fs-13); text-transform: uppercase; letter-spacing: 0.06em; }
.error-controls { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); }
.error-hint { margin-top: var(--space-3); padding: var(--space-4); border-radius: var(--radius-sm); }
.error-hint-correct { display: flex; gap: var(--space-2); align-items: baseline; background: var(--success-bg); color: var(--success); }
.error-hint-correct strong, .error-hint-label { font-size: var(--fs-13); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.error-hint-analysis { background: var(--paper-deep); }
.error-hint-label { margin-bottom: var(--space-2); color: var(--slate); }

@media (max-width: 620px) {
  .error-collection-head { grid-template-columns: 1fr; align-items: start; }
  .error-collection-actions { justify-content: flex-start; }
  .error-filter-bar { align-items: flex-start; flex-direction: column; }
  .error-filter-options { width: 100%; }
  .error-filter-option { flex: 1 1 auto; }
  .error-item { padding: var(--space-4); }
  .error-item-head { flex-direction: column; gap: var(--space-2); }
  .error-item-date { white-space: normal; }
}

/* Progress bar */
.progress {
  height: 6px;
  background: var(--paper-deep);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  transition: width var(--motion);
}

/* Table */
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-15); }
.table th, .table td { padding: var(--space-3) var(--space-4); text-align: left; }
.table thead th {
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  border-bottom: var(--rule-hair);
}
.table tbody tr { border-bottom: var(--rule-hair); }
.table tbody tr:last-child { border-bottom: 0; }

/* Choice (test) — pure editorial styling */
.choice {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  background: var(--paper-bright);
  cursor: pointer;
  transition: border-color var(--motion-fast), background var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
  text-align: left;
  width: 100%;
  font: inherit;
  color: var(--ink);
}
.choice-with-input { grid-template-columns: 22px 40px minmax(0, 1fr); }
.choice:hover { border-color: var(--navy); background: var(--sky); box-shadow: 0 4px 0 rgba(23, 58, 89, 0.10); transform: translateY(-1px); }
.choice[data-selected="true"] { border-color: var(--navy); background: var(--sky); box-shadow: inset 4px 0 var(--navy), 0 4px 0 rgba(23, 58, 89, 0.10); }
.choice[data-correct="true"] { border-color: var(--success); background: var(--success-bg); }
.choice[data-incorrect="true"] { border-color: var(--danger); background: var(--danger-bg); }
.choice[data-correct-reveal="true"] { border-color: var(--success); }
.choice[disabled] { cursor: default; }
.choice[disabled]:hover { transform: none; box-shadow: none; }
.choice-input {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid var(--slate);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.choice-input::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper-bright);
  transform: scale(0);
  transition: transform var(--motion-fast);
}
.choice-input:checked { border-color: var(--navy); background: var(--navy); }
.choice-input:checked::before { transform: scale(1); }
.choice:focus-within { outline: 3px solid rgba(201, 220, 233, 0.95); outline-offset: 3px; }
.choice-letter {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
  border: 1px solid rgba(11, 23, 36, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-14);
  color: var(--ink);
}
.choice[data-selected="true"] .choice-letter { background: var(--navy); color: var(--paper-bright); border-color: var(--navy); }
.choice[data-correct="true"] .choice-letter { background: var(--success); color: #fff; }
.choice[data-incorrect="true"] .choice-letter { background: var(--danger); color: #fff; }
.choice-body { min-width: 0; line-height: 1.5; }
.choice-body .eq, .choice-body img { max-width: 100%; }

/* Bluebook-inspired question tools ------------------------------------- */
.test-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.test-icon svg { width: 100%; height: 100%; display: block; }
.annotation-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  padding: 8px;
  border: 1px solid rgba(11, 23, 36, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
}
.annotation-toolbar-title {
  margin: 0 6px 0 4px;
  color: var(--slate);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.annotation-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: var(--fs-13);
  font-weight: 600;
  cursor: pointer;
}
.annotation-tool:hover { background: var(--paper-deep); color: var(--ink); }
.annotation-tool[aria-pressed="true"] { border-color: var(--navy); background: var(--sky); color: var(--navy); }
.annotation-tool-clear { margin-left: auto; color: var(--slate); }
.annotation-clear-mark { font-size: var(--fs-20); line-height: 0.8; }
.annotation-status { flex: 1 1 100%; padding: 3px 4px 0; color: var(--slate); font-size: var(--fs-12); }
.omf-annotation-highlight { background: #f7df84; color: inherit; border-radius: 2px; box-shadow: 0 0 0 2px rgba(247, 223, 132, 0.2); }
.omf-annotation-underline { text-decoration: underline 2px var(--navy); text-underline-offset: 3px; }
.test-bookmark-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-5);
  padding: 10px 14px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: var(--fs-14);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}
.test-bookmark-button:hover { background: var(--sky); transform: translateY(-1px); }
.test-bookmark-button[aria-pressed="true"] { background: var(--navy); color: var(--paper-bright); }
.test-question-meta { margin-top: var(--space-4); color: var(--slate); font-size: var(--fs-12); }

.free-response input.input { font-family: var(--font-mono); font-size: var(--fs-18); }
.site-footer .brand-mark { background: var(--paper-bright); color: var(--ink); }

/* Admin progress drill-down ------------------------------------------- */
.admin-progress-panel {
  margin-top: var(--space-5);
  padding: var(--space-5);
  border: 1px solid rgba(11, 23, 36, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.admin-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: var(--rule-hair);
}
.admin-progress-head h3 { margin-top: 6px; font-size: var(--fs-24); }
.admin-progress-subtitle { margin: 4px 0 0; color: var(--slate); font-size: var(--fs-14); }
.admin-progress-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-3);
  margin: var(--space-4) 0 var(--space-5);
}
.admin-progress-summary .kpi { padding: var(--space-3); background: var(--paper-bright); }
.admin-progress-summary .kpi .v { font-size: var(--fs-24); }
.admin-progress-section { margin-top: var(--space-5); }
.admin-progress-section h4 {
  margin-bottom: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.admin-progress-table-wrap { overflow-x: auto; }
.admin-progress-table { min-width: 680px; }
.admin-progress-table td,
.admin-progress-table th { vertical-align: top; }
.admin-progress-details {
  margin-top: var(--space-5);
  border-top: var(--rule-hair);
  padding-top: var(--space-4);
}
.admin-progress-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
}
.admin-progress-question-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  margin-top: var(--space-3);
  padding-right: 4px;
}
.admin-progress-question {
  padding: 9px 11px;
  border: 1px solid rgba(11, 23, 36, 0.1);
  border-radius: var(--radius-sm);
  background: var(--paper-bright);
  font-size: var(--fs-13);
}
.admin-progress-question strong { display: block; font-family: var(--font-mono); font-size: var(--fs-12); }
.admin-progress-question span { display: block; color: var(--slate); margin-top: 3px; }
.admin-progress-status { white-space: nowrap; }
.admin-table-wrap { min-width: 0; overflow-x: auto; }
.admin-table-wrap .table { min-width: 780px; }
@media (max-width: 620px) {
  .admin-progress-panel { padding: var(--space-4); }
  .admin-progress-head { flex-direction: column; }
  .score-poster { box-shadow: 6px 6px 0 rgba(23, 58, 89, 0.14); }
}

/* Tabs (admin, etc.) */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: var(--rule-hair);
  margin-bottom: var(--space-5);
  overflow-x: auto;
}
.tabs button {
  padding: var(--space-3) var(--space-5);
  border: 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  font-size: var(--fs-15);
  color: var(--slate);
  white-space: nowrap;
  cursor: pointer;
}
.tabs button:hover { color: var(--ink); }
.tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }

/* Section divider w/ index */
.section {
  padding: var(--space-8) 0;
  border-top: var(--rule);
}
.section:first-of-type { border-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-6);
}
.section-head .idx {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--slate);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-head .lede { max-width: 56ch; color: var(--ink-soft); font-size: var(--fs-18); line-height: 1.55; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section { padding: var(--space-7) 0; }
}

/* Banner / callout (editorial) */
.callout {
  background: var(--ink);
  color: var(--paper-bright);
  padding: var(--space-7) var(--space-6);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: center;
}
.callout h3 { color: var(--paper-bright); font-size: var(--fs-32); }
.callout p { color: rgba(251, 252, 247, 0.8); margin: 0; font-size: var(--fs-16); max-width: 56ch; }
.callout .btn-primary { background: var(--paper-bright); color: var(--ink); border-color: var(--paper-bright); }
.callout .btn-primary:hover { background: var(--paper); border-color: var(--paper); }
@media (max-width: 720px) {
  .callout { grid-template-columns: 1fr; }
}

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.stat-band .stat .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-48);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat-band .stat .l {
  font-size: var(--fs-13);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}
@media (max-width: 720px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* Quote / pull-quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: var(--rule);
  padding-left: var(--space-5);
}
.pull-quote cite { display: block; font-style: normal; font-size: var(--fs-13); color: var(--slate); margin-top: var(--space-3); text-transform: uppercase; letter-spacing: 0.08em; }
