/* Manufacturing Page Styles */

.mb-xl {
  margin-bottom: 4rem;
}

.mt-lg {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.rounded-lg {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  background-color: var(--color-surface, #fff);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-top: 4px solid var(--color-primary, #2b4c3b);
}

.process-step__number {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold, #cda75a);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-text, #333);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted, #666);
}
