/* Steps List Widget Styles — Scoped under .common-steps */
.common-steps {
  --steps-bg: oklch(99% 0.002 240);
  --steps-surface: oklch(100% 0 0);
  --steps-fg: oklch(18% 0.02 250);
  --steps-muted: oklch(54% 0.01 250);
  --steps-border: oklch(92% 0.005 250);
  --steps-exclusive: oklch(25% 0.04 255);
  --steps-accent: oklch(58% 0.20 30);
  --steps-accent-hover: oklch(52% 0.20 30);
  --steps-font-display: 'Playfair Display', Georgia, serif;
  --steps-font-strong: 'Montserrat', sans-serif;
  --steps-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --steps-font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

.common-steps.py {
  padding: 100px 0;
  border-bottom: 1px solid var(--steps-border);
}

.common-steps .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.common-steps .section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 48px;
  margin-bottom: 12px;
}

.common-steps .section-header-text {
  min-width: 0;
  flex: 1;
}

.common-steps .section-label {
  font-family: var(--steps-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--steps-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.common-steps .section-title {
  font-family: var(--steps-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--steps-exclusive);
  margin-bottom: 24px;
}

.common-steps .section-title strong {
  font-family: var(--steps-font-strong);
  font-weight: 800;
}

.common-steps .section-title em {
  font-family: var(--steps-font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--steps-exclusive);
}

.common-steps .section-title .accent-dot {
  color: var(--steps-accent);
}

.common-steps .section-desc {
  font-size: 16px;
  color: var(--steps-muted);
  max-width: 650px;
  margin-bottom: 48px;
}

/* Interactive Steps List */
.common-steps .steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding: 0;
}

.common-steps .step-item {
  position: relative;
  background: var(--steps-surface);
  border: 1px solid var(--steps-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.common-steps .step-item:hover {
  border-color: var(--steps-exclusive);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.common-steps .step-num {
  font-family: var(--steps-font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--steps-border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
  display: block;
}

.common-steps .step-item:hover .step-num {
  color: var(--steps-exclusive);
}

.common-steps .step-item h3 {
  font-family: var(--steps-font-display);
  font-size: 18px;
  color: var(--steps-fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.common-steps .step-item p {
  font-size: 14px;
  color: var(--steps-muted);
  line-height: 1.6;
  margin: 0;
}
