@import url('./common.css');

.support-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 104, 255, 0.12);
  color: var(--brand);
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.support-main {
  padding-top: 3rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 12px 28px rgba(23, 42, 102, 0.06);
}

.support-card h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.support-card p {
  margin: 0;
  color: var(--sub);
}

.tips-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--sub);
  display: grid;
  gap: 0.65rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.contact-row .label {
  min-width: 92px;
  color: #3f4b66;
  font-weight: 700;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
}

.contact-row a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.contact-row a:hover {
  text-decoration: underline;
}

.small-note {
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.secondary-grid {
  align-items: stretch;
}

.action-group {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: #2f3e63;
  box-shadow: none;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #b8c7ea;
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}
