.sale-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 30px;
  margin-bottom: 40px;
}
.sale-section .sale-list {
  margin-bottom: 0;
}
.sale-item {
  position: relative;
  display: flex;
  border: 1px solid #D2D7E4;
  background-color: #FFFFFF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 20px;
}
.sale-item__img {
  width: 150px;
  flex: 0 0 150px;
  height: 190px;
  object-fit: cover;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-right: 20px;
}
.sale-item__date {
  display: inline-flex;
  align-items: center;
  background: #EEF7FF;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #758296;
  padding: 8px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 10px;
}
.sale-item__date svg {
  margin-right: 8px;
}
.sale-item__title {
  font-size: 16px;
  line-height: 24px;
  max-width: 80%;
}
.sale-item__title a,
.sale-item__title a:hover {
  color: var(--text);
  text-decoration: none;
}
.sale-item__text {
  font-size: 14px;
  line-height: 21px;
  color: #758296;
  margin-bottom: 7px;
}
.sale-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sale-item__link {
  font-weight: 500;
  text-underline-offset: 4px;
  margin-top: auto;
}
.sale-item__link svg {
  margin-left: 15px;
}
.sale-item__sticker {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  align-items: center;
  background-color: #FFE3C1;
  color: #FFA031;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.sale-item__sticker.B {
  background: #D1FFC1;
  color: #53A42D;
}
.sale-item__sticker.B svg path {
  fill: #53A42D;
}
.sale-item__sticker.A {
  background: #FFC1C1;
  color: #D4343C;
}
.sale-item__sticker.A svg path {
  fill: #D4343C;
}
.sale-item__sticker svg {
  margin-right: 6px;
}
.swiper.sale-carousel {
  display: none;
}
@media (max-width: 1200px) {
  .sale-list {
    grid-gap: 20px;
  }
}
@media (max-width: 991px) {
  .sale-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .sale-list {
    margin-bottom: 20px;
  }
  .sale-item {
    display: block;
  }
  .sale-item__img {
    position: relative;
    width: 100%;
    margin-right: 0;
    padding-bottom: 61%;
    height: auto;
    margin-bottom: 15px;
  }
  .sale-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .sale-item__title {
    font-size: 14px;
    line-height: 21px;
  }
  .sale-item__content {
    position: relative;
  }
  .sale-item__sticker {
    top: 0;
    right: -20px;
  }
  .sale-section .sale-list {
    display: none;
  }
  .swiper.sale-carousel {
    display: block;
  }
}