.tyc-button-group{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:1.5rem;
  justify-content:center;
}

.tyc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.625rem;
  min-height:48px;
  padding:.9rem 1.4rem;
  border:1px solid transparent;
  border-radius:999px;
  font-weight:800;
  line-height:1;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.tyc-btn:hover{
  transform:translateY(-2px);
}

.tyc-btn--primary{
  background:var(--c1);
  color:#fff;
  box-shadow:0 10px 22px rgba(14,165,183,.25);
}

.tyc-btn--outline{
  border-color:rgba(255,255,255,.46);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.tyc-btn--dark{
  background:var(--c3);
  color:#fff;
}

.tyc-btn--ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.24);
}

.tyc-button-group--cta{
  justify-content:flex-start;
}

@media (max-width: 767px){
  .tyc-button-group,
  .tyc-button-group--cta{
    justify-content:flex-start;
  }

  .tyc-btn{
    width:100%;
  }
}
