.hl-product-cards-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 20px;
}

.hl-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 6px 20px;
    border: 2px solid var( --e-global-color-211253f );
    gap: 10px;
	justify-content: space-between;
}
.hl-product-card h3, .hl-product-card p{
    padding: 0 10px;
    text-align: center;
}
.hl-product-card a.hl-product-button {
    margin-top: 10px;
}

.hl-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
  .hl-product-cards-grid {
    grid-template-columns: repeat(var(--columns-t), 1fr);
  }
}

@media (max-width: 767px) {
  .hl-product-cards-grid {
    grid-template-columns: repeat(var(--columns-m), 1fr);
	gap: 10px;
  }
}
/* add any additional style overrides as needed */
