

/* Start:/local/templates/webdoka/styles/pages/promotion.css?17701293381503*/
.promotion-list {
  padding: 100px 0;
  background-color: var(--grey-light);
}

.promotion-list__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.promotion-item {
  display: flex;
  flex-direction: column;
}

.promotion-item__img-wrap {
  height: 250px;
  position: relative;
}

.promocard__img-note {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 18px;
    border-radius: 21px;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.promotion-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promotion-item__descr {
  height: 100%;
  padding: 18px 24px 24px;
  background-color: var(--white);
}

.promotion-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promotion-item__link {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (max-width: 1199px) {
  .promotion-list__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .promotion-list__wrap {
    grid-template-columns: 1fr;
  }

  .promotion-item__img-wrap {
    height: 200px;
  }

  .promotion-item__link {
    font-size: 19px;
  }
}
/* End */
/* /local/templates/webdoka/styles/pages/promotion.css?17701293381503 */
