.productGrid .card {
  height: 100%;
  position: relative;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  flex-flow: column wrap; }
  .productGrid .card .card-figure {
    padding: 0;
    flex: 1 1 auto;
    max-height: 136px; }
    .productGrid .card .card-figure a.card-figure__link {
      display: flex;
      height: 140px;
      align-items: center; }
    .productGrid .card .card-figure .card-img-container {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 100%;
      /* Maintain aspect ratio (1:1) for square container */
      overflow: hidden; }
      .productGrid .card .card-figure .card-img-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        margin: 0; }
      .productGrid .card .card-figure .card-img-container::before {
        content: "";
        display: block;
        padding-bottom: 100%;
        /* Maintain aspect ratio (1:1) for square container */ }
      .productGrid .card .card-figure .card-img-container::after {
        content: none; }
  .productGrid .card .card-body {
    flex: 1;
    display: flex;
    flex-flow: column wrap; }
    .productGrid .card .card-body .card-title {
      /* Paragraph / Bold 14px */
      font-family: Open Sans;
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 20px;
      /* 142.857% */
      width: 100%;
      flex: 1; }
  .productGrid .card .card-text[data-test-info-type="price"] {
    font-family: Open Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    width: 100%; }
