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

.homepage-product {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}
.homepage-product::before {
  z-index: -1;
  position: absolute;
  content: "";
  height: 100%;
  width: 1202px;
  top: 0;
  bottom: 0;
  left: -200px;
  right: 0;
  background-image: url('../../images/texture.png');
  background-position: center top;
  background-repeat: no-repeat;
}
.homepage-product__header {
  margin-bottom: 3rem;
}
.homepage-product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.homepage-product__empty {
  margin: 3rem;
  text-align: center;
}
.homepage-product__infos {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--color-primary--1);
  color: var(--color-white);
  padding: 32px 24px;
  border-radius: 2px;
}
.text-homepage-monument {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
h3.text-homepage-monument__title {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  font-family: 'Figtree';
  margin: 0;
}
.text-homepage-monument__text {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}
.text-homepage-monument__text p {
  margin: 0;
}

@media all and (min-width: 800px) {
  .homepage-product {
    padding: 96px 0;
  }
  .homepage-product__wrapper {
    flex-direction: row;
    gap: 32px;
  }
  h3.text-homepage-monument__title {
    font-size: 28px;
  }
  .homepage-product__infos {
    padding: 32px;
    width: 356px;
    min-height: 471px;
  }
  .homepage-product::before {
    left: -200px;
    right: 0;
    background-position: center left;
  }
}
@media all and (min-width: 1400px) {
  .homepage-product-alignment .layout{
    align-items: end;
  }
}
