/* ============================================================
   BAN — banner photo + description + price/CTA
   Figma: visible card 1190x400 at page (269,1539); section top 1493
   ============================================================ */
.ban {
  position: relative;
  width: 1728px;
  height: 470px;
  background: var(--color-bg);
}
.ban__card {
  position: absolute;
  left: 269px;
  top: 46px;
  width: 1190px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  background: #3b3431;
}
.ban__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/png/ban-photo.jpg');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, #000 55%, transparent 100%);
  mask-image: linear-gradient(to right, #000 55%, transparent 100%);
}
.ban__text {
  position: absolute;
  left: 610px;
  top: 101px;
  width: 535px;
  font-size: 20px;
  line-height: 34px;
  color: var(--color-white);
}
.ban__price {
  position: absolute;
  left: 610px;
  top: 236px;
}
.ban__price-from {
  position: absolute;
  left: 0;
  top: 39px;
  font-size: 20px;
  color: var(--color-accent-text);
}
.ban__price-value {
  position: absolute;
  left: 43px;
  top: -3px;
  font-family: var(--font-display);
  font-size: 71px;
  line-height: 1;
  color: var(--color-accent-text);
  white-space: nowrap;
}
.ban__price-rub { position: absolute; left: 174px; top: 23px; width: 23px; height: 32px; }
.ban__price-period { position: absolute; left: 200px; top: 39px; font-size: 20px; color: var(--color-accent-text); white-space: nowrap; }
.ban__cta { left: 899px; top: 236px; }
