.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-shrink: 0;
  padding: 0.88rem 1.95rem;
  border-radius: 999px;
  background: var(--pink-cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 1.25vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.cta-pill img {
  width: 1.35rem;
  height: auto;
  flex-shrink: 0;
  max-width: none;
}

.cta-pill:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.06);
}

.cta-pill--block {
  width: 100%;
}
