.image-product-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.block {
  flex: 1;
}

.product-card {
  display: flex;
  flex-direction: column;

  a {
    flex: 1;
  }
  
  .product-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;

    .product-title {
      text-transform: uppercase;
    }
  }
}

img {
  height: auto;
  width: 100%;
}