  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: left;
  }

  .product-card {
    width: 30%;
    border: 1px solid #ddd;
	cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #fff;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-card img {
    width: 40%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    display: block;
  }

  .product-card-content {
    padding: 0.75rem;
    flex-grow: 1;
  }

  .product-card-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
  }

  .product-card-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 0.75rem 0;
  }

  .product-card-content a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    background: #0366d6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
  }
  
  .product-card {
	text-align: center;
  }

  /* Make the grid responsive */
  @media (max-width: 768px) {
    .product-grid {
      justify-content: left; /* Center the cards on smaller screens */
    }

    .product-card {
      width: 45%;
    }
  }