/* Disputes section — reuses the install-step + step-list + field-list patterns
   established in the Pay By Link CSS, plus the video frame from Hyvä. */

/* ── Real Vimeo embeds, framed to match the design system ───────── */
.video-frame {
  margin: 24px 0 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  box-shadow: 0 12px 32px rgba(15,42,68,0.10), 0 2px 6px rgba(15,42,68,0.06);
  background: #0f1a2e;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ── Numbered install-step list ─────────────────────────────────── */
.install-steps { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 0; }
.install-step {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 16px; align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.install-step .num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brippo-blue-50); color: var(--brippo-blue-600);
  border: 1px solid var(--brippo-blue-100);
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  display: grid; place-items: center; flex-shrink: 0;
}
.install-step .body { min-width: 0; }
.install-step h3 {
  margin: 4px 0 0;
  font-size: 15px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.005em; line-height: 1.45;
}
.install-step p {
  margin: 12px 0 0;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-700);
}
.install-step strong { color: var(--ink-900); font-weight: 600; }

/* ── Labelled field list (for "Steps to Win" / Prevention strategies) ── */
.field-list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.field-list > li {
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  background: var(--ink-50);
  font-size: 13.5px; line-height: 1.55; color: var(--ink-700);
}
.field-list > li > .term {
  color: var(--ink-900); font-weight: 600; margin-right: 4px;
}

/* ── Section heading + lede tweaks for these guides ─────────────── */
.section-title.dispute-h {
  margin: 28px 0 0;
  font-size: 18px; font-weight: 700;
  color: var(--ink-900); letter-spacing: -0.01em;
}
.section-lede {
  margin: 6px 0 0;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-700);
}
