/**
 * CTA
 */


.cta {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: var(--color-secondary--1);

  color : var(--color-primary--3);
  z-index: 0;

  position: relative;
  width: fit-content;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  border: 2px solid var(--color-primary--2);
  transform: rotate(-1.306deg);
  transform-origin: bottom right;
  pointer-events: none;
  z-index: -2;
  transition: transform 0.3s ease;
}

.cta::before {
  opacity: 0;
  content:   '';
  background-image: url('../../images/cta/chevron.svg');
  background-position: center;
  background-repeat: no-repeat;
  width: 0;
  height: 24px;
  transition: all 0.3s ease;
}

.cta:hover::before {
  opacity: 1;
  width: 12px;
}

.cta:hover::after {
  transform: rotate(1.306deg);
  transform-origin: bottom left;
}


.cta:hover {
  text-decoration: none;
}

.cta a,
.cta .cta__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


