.promo-banner {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin: 40px 0;
}
.promo-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #8b8884 0%, #585552 50%, #444240 100%);
  padding: 16px 16px 16px 40px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.promo-banner--has-image .promo-banner__inner {
  background: linear-gradient(90deg, rgba(139, 136, 132, 0.8) 0%, rgba(88, 85, 82, 0.85) 50%, rgba(68, 66, 64, 0.9) 100%);
}
.promo-banner__text {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
}
.promo-banner__action {
  margin-left: auto;
  padding-left: 20px;
  flex-shrink: 0;
}

.promo-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  margin-left: 14px;
  color: #333;
  transition: transform 0.3s ease;
}

.promo-banner__button:hover .promo-banner__icon {
  transform: translateX(2px);
}

.promo-banner__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .promo-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    border-radius: 24px;
  }
  .promo-banner__action {
    margin-left: 0;
    margin-top: 20px;
    padding-left: 0;
  }
}

/*# sourceMappingURL=style.css.map */
