.fl-article-cta {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}

.fl-article-cta-button {
  border-radius: 200px;
  font-family: Montserrat;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  padding: 19px 42px;
  display: inline-block;
  box-shadow: 0 -2px rgba(0,0,0,0.1) inset;
  transition: color .45s cubic-bezier(0.25,1,0.33,1), background-color .45s cubic-bezier(0.25,1,0.33,1);
}

.fl-article-cta-button span {
  position: relative;
  display: flex;
  column-gap: 8px;
  align-items: center;
  transform: translateX(15.25px);
  transition: transform .45s cubic-bezier(0.25,1,0.33,1);
  line-height: 1.5;
}

.fl-article-cta-button:hover span {
  transform: translateX(0);
}

.fl-article-cta-button i {
  font-size: 18px;
  opacity: 0;
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1);
}

.fl-article-cta-button:hover i {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .fl-article-cta-button span {
    transform: translateX(0);
  }

  .fl-article-cta-button i {
    display: none !important;
  }
}
