/**
 * wc-reg-block.css
 * Styles for the WC Reg Block component.
 */

/* ── Section shell ── */
.wc-reg-block {
  background: var(--red-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.wc-reg-block::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(225, 36, 42, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Inner wrapper ── */
.wc-reg-block__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

/* ── Heading ── */
.wc-reg-block__heading {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-h1);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
}

/* ── Body ── */
.wc-reg-block__body {
  font-size: var(--t-body);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Primary CTA button ── */
.wc-reg-block__cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  background: var(--white);
  color: var(--red-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

.wc-reg-block__cta:hover {
  background: var(--salmon);
  color: var(--red-dark);
}

/* ── Secondary text link ── */
.wc-reg-block__secondary-link {
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--salmon);
  text-decoration: none;
  transition: color 0.2s;
}

.wc-reg-block__secondary-link:hover {
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .wc-reg-block__cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
