/* "How it works" step cards: bordered glow card per step, icon + text.
   Re-presents the existing 3-step icon+text explainer visually; no new
   copy is introduced (see scripts/inject-step-diagram.mjs). Values (border
   color/width/radius, box-shadow, padding, gaps, icon size, text size/
   line-height/color) measured directly from the real staging render via
   getComputedStyle — this widget's own per-instance Elementor CSS isn't
   captured by the mirror, so it renders unstyled without this file. */

.cc-step-diagram {
  margin: 28px 0 12px;
  font-family: 'Open Sans', Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cc-step-diagram-track {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
}

.cc-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex: 1 1 360px;
  max-width: 400px;
  box-sizing: border-box;
  padding: 40px 20px;
  border: 1px solid rgb(34, 58, 177);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.22);
}

.cc-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-step-icon img {
  max-width: 110px;
  width: 100%;
  height: auto;
}

.cc-step-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.cc-step-text {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  font-weight: 400;
  max-width: 320px;
}
