.outline-button.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 7px;
  line-height: 1.25;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.outline-button.cta-button svg {
  display: block;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outline-button.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.outline-button.cta-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .outline-button.cta-button {
    width: 100%;
    min-height: 50px;
  }
}
