/* ── CALLOUT / NOTICE BOXES ─────────────────────────────── */

.callout-box {
  border-left: 3px solid var(--red);
  background: var(--panel);
  padding: 18px 24px;
  margin: 24px 0;
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--accent2);
  font-style: italic;
  position: relative;
}

.callout-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(139,37,37,0.05), transparent);
  pointer-events: none;
}

.callout-icon {
  display: inline-block;
  margin-right: 8px;
  font-style: normal;
}

/* ── COMPLETION STEP ───────────────────────────────────── */

.step-complete {
  border: 1px solid #2d7a3a;
  background: rgba(45,122,58,0.06);
  padding: 28px 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-complete-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid #2d7a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d7a3a;
  font-size: 18px;
  font-weight: 700;
}

.step-complete-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d7a3a;
  margin-bottom: 4px;
}

.step-complete-desc {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--accent2);
}
