.support-shell {
  min-height: 100vh;
}

.support-main {
  width: min(100%, 42rem);
  margin-inline: auto;
  padding: var(--space-6) var(--space-4);
  flex: 1;
}

.support-panel {
  display: grid;
  justify-items: center;
  gap: var(--space-5);
  padding: var(--space-5);
  background: rgba(255, 241, 219, 0.35);
}

.support-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.support-intro-box {
  width: min(100%, 19rem);
  margin-inline: auto;
}

.support-grid {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: var(--space-5);
}

.support-item {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}

.support-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.support-shape:hover,
.support-shape:focus-visible {
  transform: translate(2px, 2px) scale(1.03);
  filter: brightness(1.05);
}

.support-shape-icon {
  display: block;
  width: 8rem;
  height: auto;
}

.support-label {
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
}

@media (min-width: 48rem) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(8rem, 1fr));
    align-items: start;
    column-gap: var(--space-6);
  }
}

@media (max-width: 47.99rem) {
  .support-main {
    padding: var(--space-5) var(--space-3);
  }

  .support-panel {
    padding: var(--space-4);
    gap: var(--space-4);
  }

  .support-title {
    font-size: 1.9rem;
  }

  .support-shape-icon {
    width: 7rem;
  }
}