/* ============================================================
   components/info-box.css
   Soft background info box
   ============================================================ */

.info-box {
  padding: var(--space-4);
  background: var(--bg-soft);
  border-radius: var(--radius);
  line-height: 1.8;
  color: var(--text-mid);
  font-size: var(--font-base);
}
.info-box--primary {
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
}
.info-box--warn {
  background: #fffaf0;
  border-left: 3px solid #e8a04a;
  font-size: var(--font-sm);
  color: #665;
}
.info-box__title {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}
