.ctac {
  display: flex;
  flex-wrap: wrap;
  gap:24px;
  align-items: baseline;

  &.-left   { justify-content: flex-start; }
  &.-center { justify-content: center; }
  &.-right  { justify-content: flex-end; }
}




.cta {
  text-decoration: none;

  &:has(.cta--icon) {
    white-space: nowrap;
    display: inline-flex;
    align-items:center;
    gap:32px;
  }

  &.-cta {
    border:1px solid currentColor;
    border-radius:500px;
    padding:17px 32px;

    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:.25s;
    background: var(--blanc-casse);
    &:hover {
      background: var(--blanc);
    }
    .columns.-bg-blanc & {
      background: var(--blanc);
      &:hover {
        background: var(--blanc-casse);
      }
    }
  }
  &.-link {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;

    --hoverunderlineDecal:0em;
    --hoverunderlinePosY:100%;
    --hoverunderlineThickness:1.5px;
  }
  &.-arrow {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
  }
  &.-arrowround {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    .cta--icon svg path {
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cta--icon svg path:nth-child(2) { transition-delay: 0.04s; }
    &:hover .cta--icon svg path:nth-child(1) { transform: translateX(3px); }
    &:hover .cta--icon svg path:nth-child(2) { transform: translateX(5px); }
  }
  &.-arrowmore {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  &.-download {
    gap:16px;

    --hoverunderlineDecal:0em;
    --hoverunderlinePosY:100%;
    --hoverunderlineThickness:1.5px;


    .cta--text {animation:hoverunderline-leave var(--hoverunderlineEase);}
    &:hover {
      .cta--text {animation:hoverunderline-enter var(--hoverunderlineEase);}
    }
  }

  .cta--icon {
    svg {
      display: block;
    }
  }
}
