/**
 * Meatbox Family — Quick Guide / How It Works (mockup section).
 */

:root {
  --mb-coral: #e07856;
  --mb-coral-dark: #c25f4e;
  --mb-espresso: #211c19;
  --mb-muted: #7a6f64;
  --mb-kraft: #efe6d8;
  --mb-line: #e3d8c8;
}

.mb-quick-guide {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.75rem 1rem 4.375rem;
}

@media (min-width: 1024px) {
  .mb-quick-guide {
    padding-left: 0;
    padding-right: 0;
  }
}

.mb-quick-guide__card {
  background: var(--mb-kraft);
  border: 1px solid var(--mb-line);
  border-radius: 1.5rem;
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .mb-quick-guide__card {
    padding: 2.5rem;
  }
}

.mb-quick-guide__header {
  text-align: center;
  margin-bottom: 1.875rem;
}

.mb-quick-guide__badge {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mb-coral-dark);
}

.mb-quick-guide__title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.625rem, 3.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mb-espresso);
}

.mb-quick-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .mb-quick-guide__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mb-quick-guide__step {
  text-align: center;
}

.mb-quick-guide__number {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 9999px;
  background: var(--mb-coral);
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
  margin: 0 auto 0.875rem;
}

.mb-quick-guide__step-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--mb-espresso);
}

.mb-quick-guide__step-text {
  font-size: 0.8125rem;
  color: var(--mb-muted);
  margin-top: 0.3125rem;
  line-height: 1.5;
}
