.products-grid-manufacturer {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 1fr; 
    gap: 1rem;
}

.products-grid-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: 1fr; 
    gap: 1rem;
}

.product-miniature.product-featured {
    grid-column: span 2;
    grid-row: span 2;
  
    display: flex;
    flex-direction: column;
    position: relative; 
  }
  
  .product-miniature.product-featured article {
    height: 100%;
  }
  
  .product-miniature.product-featured .thumbnail-container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  
  .product-miniature.product-featured .thumbnail-top {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start; 
    justify-content: center; 
    overflow: hidden;
    height: 100%;
  }

  .product-miniature.product-featured .thumbnail-top a {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .product-miniature.product-featured .thumbnail-top img {
    /*width: 200%;*/
    height: auto;
    max-width: none;
    margin-top: 0; 
  }
  
  .product-miniature.product-featured .product-description {
    flex: 0 0 auto;
    margin-bottom: 25px;
  }
