/**
 * wc-next-step.css
 * Styles for the WC Next Step section and card components.
 */

/* ============================================================
   SECTION SHELL
   ============================================================ */
.wc-next-step {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow top-right */
.wc-next-step::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 140, 132, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.wc-next-step__heading {
    font-family: 'Playfair Display', serif;
    font-size: var(--t-h2);
    font-weight: 900;
    font-style: italic;
    color: var(--red-mid);
    line-height: 1.2;
    margin-bottom: var(--sp-xs);
}

.wc-next-step__subheading {
  font-size: var(--t-body);
  color: var(--body-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   STEPS GRID
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   STEP CARD
   ============================================================ */
.step-card {
  background: var(--white);
  padding: var(--sp-md);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-body);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: var(--sp-xs);
}

.step-desc {
  font-size: var(--t-small);
  color: var(--body-text);
  line-height: 1.65;
  overflow-wrap: break-word;
}

/* ============================================================
   CTA
   ============================================================ */
.wc-next-step__cta-wrap {
  margin-top: var(--sp-lg);
}

.wc-next-step__cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 4px;
  background: var(--red-bright);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.wc-next-step__cta:hover {
  background: var(--red-mid);
}

@media (max-width: 480px) {
  .wc-next-step__cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
