.apps-row {
  display: grid;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

/* Desktop - 3 columns */
@media (min-width: 768px) {
  .apps-row {
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(2, 1fr);
  }

  .app-downloads {
    width: 80% !important;
    height: auto;
  }
}

/* Mobile - 1 column */
@media (max-width: 767px) {
  .apps-row {
    grid-template-columns: 1fr;
  }

  .app-downloads {
    width: 80% !important;
    height: auto;
  }
}