.support-page {
  display: flex;
  width: min(100%, 680px);
  min-height: calc(100svh - 220px);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
  letter-spacing: 0;
}

.support-page h1 {
  margin: 0;
  color: var(--headline);
  font-size: 38px;
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.support-intro {
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  font-size: 16px;
  line-height: 1.55;
}

.support-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-email {
  min-width: 0;
  color: var(--headline);
  font-size: 21px;
  font-weight: 560;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.support-email:hover {
  color: var(--accent);
}

.commerce-main .support-action {
  min-height: 42px;
  padding-inline: 18px;
  color: #fff;
  background: var(--accent);
}

.commerce-main .support-action:hover {
  color: #fff;
  background: var(--accent-hover);
}

.support-footer-nav {
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .support-page {
    min-height: calc(100svh - 196px);
    justify-content: flex-start;
    padding: 48px 0;
  }

  .support-page h1 {
    font-size: 32px;
  }

  .support-contact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-email {
    font-size: 19px;
  }

  .commerce-main .support-action {
    width: fit-content;
  }
}
