.about-grid {
  display: grid;
  gap: 0.95rem;
}

.about-card {
  background: linear-gradient(140deg, rgba(16, 20, 25, 0.82), rgba(16, 20, 25, 0.42));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.about-card i {
  width: 2.6rem;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  color: #061409;
  background: linear-gradient(145deg, var(--accent) 0%, #b5ff8c 100%);
  margin-bottom: 0.8rem;
}

.about-card h3 {
  margin-bottom: 0.5rem;
}

@media (min-width: 48rem) {
  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
