/* Stone Tower's canonical gold ghost buttons. */

.button,
.social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  margin: 0 0 1.5rem !important;
  padding: 0.55rem 1rem;
  border: 2px solid var(--stw-gold) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--stw-gold) !important;
  cursor: pointer;
  font-family: var(--stw-font) !important;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.social-link:hover,
.button:focus-visible,
.social-link:focus-visible {
  background: var(--stw-gold) !important;
  color: var(--stw-paper) !important;
  transform: translateY(-1px);
}

.button:focus-visible,
.social-link:focus-visible {
  outline: 3px solid var(--stw-focus);
  outline-offset: 3px;
}

.button:active,
.social-link:active {
  transform: translateY(0);
}

.button .icon,
.social-link .social-icon {
  display: none !important;
}

.social-link::after {
  content: attr(aria-label);
}

@media (max-width: 34rem) {
  .button,
  .social-link {
    min-height: 3rem;
    margin-bottom: 1.1rem !important;
    font-size: 0.93rem;
  }
}
