    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      width: 900px;
      margin: auto;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }

    .grid-item {
      background-color: #f0f0f0;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 200px;
    }