/* Support-page refinements only; privacy typography and layout are unchanged. */
.support-page {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 48px;
  min-height: 60vh;
  padding: 48px 0 64px;
}
.support-page .intro {
  margin-bottom: 24px;
  max-width: 42em;
}
.support-page .contact {
  padding: 0;
}
.support-page .contact-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 84px;
  padding: 20px 28px;
  border-radius: 11px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  transition: color 160ms ease, background-color 160ms ease;
}
.support-page .contact-link:hover {
  background: var(--surface);
}
.support-page .contact-link span[aria-hidden] {
  flex: 0 0 auto;
  color: var(--secondary);
  font-size: 18px;
}
.support-page .section {
  margin-top: 32px;
}
.support-page ul {
  list-style: disc;
  padding-left: 1.25em;
}
.support-page li::marker {
  color: var(--secondary);
  font-size: .75em;
}
.support-page .rule {
  margin: 28px 0;
}
@media (max-width: 700px) {
  .support-page {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: auto;
    padding: 32px 0 44px;
  }
  .support-page .contact-link {
    min-height: 76px;
    padding: 18px 20px;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .support-page .contact-link { transition: none; }
}
@media print {
  .support-page { display: block; min-height: auto; padding: 24px 0; }
}
