.other__events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 1024px) {
  .other__events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 480px) {
  .other__events-grid {
    gap: 1rem;
  }
}
