/* steps — section styles (loaded from <head> by build.py) */

#vp-steps, #vp-steps * { box-sizing:border-box; }
#vp-steps { width:100vw; margin-left:calc(50% - 50vw); padding:96px 0 0; background:var(--color-bg); color:var(--color-text); font-family:var(--font-body); }
#vp-steps .vp-steps__inner { width:var(--vp-page); margin:auto; }
#vp-steps h2 { margin:0 0 34px; font-family:var(--font-heading); font-weight:var(--font-heading-weight); font-size:36px; line-height:1.06; }

#vp-steps .vp-steps__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:0; padding:0; list-style:none; }
#vp-steps .vp-step { padding:30px 28px; border-radius:var(--radius-lg); background:var(--color-neutral-200); }
#vp-steps .vp-step__no { width:44px; height:44px; margin-bottom:20px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:var(--color-accent-2-300); color:var(--color-accent-2-800); font-family:var(--font-heading); font-weight:var(--font-heading-weight); font-size:19px; }
#vp-steps .vp-step h3 { margin:0 0 8px; font-family:var(--font-heading); font-weight:var(--font-heading-weight); font-size:21px; line-height:1.2; }
#vp-steps .vp-step p { margin:0; color:color-mix(in srgb, var(--color-text) 72%, transparent); font-size:15px; line-height:1.55; }

@media (max-width:980px) {
  #vp-steps { padding-top:64px; }
  #vp-steps .vp-steps__grid { grid-template-columns:1fr; gap:14px; }
  #vp-steps .vp-step { display:grid; grid-template-columns:44px 1fr; gap:4px 18px; padding:22px 24px; }
  #vp-steps .vp-step__no { grid-row:1 / span 2; margin:0; }
  #vp-steps .vp-step h3 { align-self:center; margin:0; }
}

@media (max-width:780px) {
  #vp-steps { padding-top:48px; }
  #vp-steps .vp-steps__inner { width:calc(100% - 32px); }
  #vp-steps h2 { margin-bottom:20px; font-size:26px; }
  #vp-steps .vp-step h3 { font-size:19px; }
  #vp-steps .vp-step p { font-size:14px; }
}
