/*
All styles inherited from main page CSS:

.how-section - Navy background section with background image overlay
.how-inner - Centered max-width container
.how-hero - Two-column grid layout for hero content
.how-hero-img - Hero image container
.s-eyebrow.gold - Gold eyebrow text
.s-title.white - White title text
.btn-gold - Gold CTA button
.how-divider - Horizontal divider line
.how-three - Four-column grid for steps
.how-item - Individual step container with gold left border
.how-item-num - Step number label

Responsive breakpoints handled in main page CSS.
*/
}

.lp-how-it-works__number {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
}

.lp-how-it-works__step h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.lp-how-it-works__step p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

.lp-how-it-works__connector {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 36px;
}

@media (max-width: 960px) {
  .lp-how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .lp-how-it-works__connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .lp-how-it-works {
    padding: 64px 20px;
  }
  
  .lp-how-it-works__header {
    margin-bottom: 56px;
  }
}
