.window-list-type1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.window-list-type1__content {
  color: #ffffff;
}
.window-list-type1__item {
  position: relative;
  height: 380px;
  width: 270px;
  display: flex;
  align-items: end;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding: 0 44px 25px 30px;
  border-radius: 6px;
  overflow: hidden;
}
.window-list-type1__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(360deg, rgba(35, 31, 32, 0.8) 26.12%, rgba(35, 31, 32, 0) 67.67%);
  z-index: 1;
}
.window-list-type1__title {
  display: flex;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  position: relative;
  z-index: 1;
}
.window-list-type1__price {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  align-items: center;
}
.window-list-type1__price span {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}
.window-list-type1__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  height: 380px;
}
@media (max-width: 1200px) {
  .window-list-type1 {
    overflow-x: auto;
    width: 100%;
  }
}
