/* =================== auth-social.css =================== */
/* Quick channel row on auth screens. */

.auth-social {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 6px;
}

.auth-social--links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 12px 0 10px;
}

.auth-social__link {
  color: var(--hc-accent-dark, #6a573f);
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-social__link:hover {
  color: var(--hc-ink, #1a1714);
}

/* Premium chip treatment for the channel row on auth screens. */
.auth-social--links .auth-social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 11px;
  border: 0.5px solid var(--hc-gold-border, rgba(180, 151, 115, 0.4));
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(248, 244, 237, 0.68));
  color: var(--hc-ink, #1a1714);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.auth-social--links .auth-social__link::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-gold-1, #d4b896), var(--hc-accent, #8b7355));
}
.auth-social--links .auth-social__link:hover {
  border-color: var(--hc-accent, #8b7355);
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.2), rgba(184, 154, 111, 0.1));
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(139, 115, 85, 0.45);
  color: var(--hc-ink, #1a1714);
}

.auth-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 0.5px solid rgba(180, 151, 115, 0.26);
  background: rgba(255, 255, 255, 0.65);
  color: var(--hc-ink, #1a1714);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.auth-social__btn:hover {
  border-color: rgba(180, 151, 115, 0.48);
  background: rgba(212, 184, 150, 0.14);
}

@media (max-width: 560px) {
  .auth-social {
    grid-template-columns: 1fr;
  }
  .auth-social--links {
    display: grid;
    gap: 8px;
  }
}
