/**
 * @file
 * Related Product styles
 *
 */

.homepage-product {
  position: relative;
}
.homepage-product__header {
  margin-bottom: 3rem;
}
.homepage-product__content {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: baseline;
}
.homepage-product__empty {
  margin: 3rem;
  text-align: center;
}
@media all and (min-width: 600px) {
  .homepage-product__content {
    grid-template-columns: repeat(2, calc(50% - 0.9125rem));
    gap: 1.875rem;
  }
}
@media all and (min-width: 900px) {
  .homepage-product__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media all and (min-width: 1400px) {
  .homepage-product__content {
    grid-template-columns: repeat(2, calc(50% - 0.9125rem));
  }
}
@media all and (min-width: 1400px) {
  .homepage-product-alignment .layout{
    align-items: end;
  }
}
