.support-contacts {
  margin: 22px 0 8px;
}

.support-contacts-intro {
  margin: 0 0 12px;
  color: var(--text-muted, #a8a7a2);
  font-size: 14px;
  line-height: 1.45;
}

.support-contact-list {
  display: grid;
  gap: 9px;
}

.support-channel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  min-height: 64px;
  gap: 11px;
  padding: 10px 14px 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.support-channel:active {
  transform: scale(0.992);
}

.support-channel:focus-visible {
  outline: 2px solid var(--accent, #f06432);
  outline-offset: 2px;
}

@media (hover: hover) {
  .support-channel:hover {
    border-color: rgba(240, 100, 50, 0.36);
    background: rgba(255, 255, 255, 0.055);
  }
}

.support-channel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(240, 100, 50, 0.12);
  color: var(--accent, #f06432);
}

.support-channel-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.support-channel-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.support-channel-copy strong {
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.01em;
}

.support-channel-copy > span {
  overflow: hidden;
  color: var(--text-muted, #a8a7a2);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-channel-arrow {
  color: var(--text-muted, #a8a7a2);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .support-channel {
    transition: none;
  }
}
