/**
 * Promotion section styles.
 * SCSS: assets/css/section/promotion.scss
 * CSS: assets/css/section/promotion.css
 */
.promotion {
  position: relative;
  margin: 20px 0;
  padding: 30px 0 40px 30px;
  border-radius: 10px;
}
.promotion__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promotion__title {
  margin: 0;
  color: var(--promotion-title-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.promotion__text {
  color: var(--promotion-text-color, var(--text-color));
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}
.promotion__text p:last-child {
  margin-bottom: 0;
}
.promotion__button {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--promotion-button-bg, var(--button-bg));
  color: var(--button-text-color);
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .promotion {
    padding: 20px;
  }
}/*# sourceMappingURL=promotion.css.map */