.promotions .container {
  margin-top: 0;
}

.products-row .items .items-wrap {
  justify-content: center;
}

.subtitle {
  color: #f28482;
  font-size: 22px;
  font-family: "Comfortaa", cursive;
  font-weight: 300;
}

.block {
  padding: 30px 0;
}

.promotions {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.promotion-card {
  width: 230px;
  border: 1px solid #eee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.promotion-card:hover {
  border-color: #f28482;
}

.promotion-card__link {
  font-family: "Comfortaa", cursive;
  font-weight: 300;
}

.promotion-card__desc {
  font-size: 14px;
}

.promotion-card__date {
  font-size: 12px;
  color: #999;
  margin-top: auto;
}