.ss-help-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.ss-help-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ss-help-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ss-help-card:before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ss-cyan), var(--ss-purple));
}

.ss-help-card h3,
.ss-help-card p {
  color: inherit;
}

.ss-help-card p {
  margin-bottom: 18px;
}

.ss-help-card-link {
  margin-top: auto;
  color: var(--ss-cyan-soft);
  font-weight: 800;
}

.ss-help-card:hover,
.ss-help-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(112, 207, 240, .55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .3), 0 0 0 1px rgba(112, 207, 240, .08);
}

.ss-help-note {
  margin-top: 22px;
  color: #7b8a93;
  font-size: 14px;
}

@media (max-width: 920px) {
  .ss-help-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ss-help-card-grid {
    grid-template-columns: 1fr;
  }

  .ss-help-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-help-card {
    transition: none;
  }
}
