@charset "UTF-8";
/* ==========================================================================
   Mobiluma Korea - Travel insurance page
   Referral / guidance model only. Mobiluma is not the insurer.
   ========================================================================== */

.guidecard {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--ml-mist);
  border-radius: var(--ml-radius-md);
  box-shadow: var(--ml-shadow-md);
}
.guidecard svg { width: 22px; height: 22px; color: var(--ml-blue); flex: none; }
.guidecard b { display: block; font-size: 13px; color: var(--ml-navy); }
.guidecard span { display: block; font-size: 11.5px; color: var(--ml-slate); }

/* how it works, 5 step rail already covered by .steprail from shared.css */

/* three-column guidance panels near the bottom */
.guidegrid { display: grid; gap: 16px; }
.guideitem { padding: 20px; }
.guideitem__icon { margin-bottom: 14px; }
.guideitem__title { margin-bottom: 6px; }
@media (min-width: 780px) { .guidegrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
