/**
 * wc-hc-cta-block.css
 * Health Condition primary CTA block.
 * Dark red background, two-column layout.
 */

/* ── Outer block ── */
.cta-block {
  background: var(--red-dark);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* ── Decorative radial glow bottom-right ── */
.cta-block::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 36, 42, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Top accent line ── */
.cta-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright) 0%, var(--salmon) 50%, var(--red-bright) 100%);
}

/* ── Two-column inner layout ── */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .cta-inner {
    grid-template-columns: 1fr;
  }
}

/* ── Headline — white with em in salmon ── */
.cta-headline {
  color: var(--white);
  font-weight: 700;
  margin-bottom: var(--sp-xs);
}

.cta-headline em {
  color: var(--salmon);
  font-style: italic;
}

/* ── Body copy ── */
.cta-body {
  font-size: var(--t-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  overflow-wrap: break-word;
}

/* ── CTA actions column ── */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* ── Primary button ── */
.btn-primary {
  display: inline-block;
  background: var(--red-bright);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--azuki);
}
