.c-banner-promo {
  padding: 4rem 0;
  background-color: var(--banner-promo-bg);
  color: var(--banner-promo);
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-banner-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.c-banner-promo__suptitle {
  font-weight: 700;
  color: var(--banner-promo);
  max-width: 55rem;

  @media (min-width: 1024px) {
    opacity: 0;
    font-size: 2.4rem;
    line-height: 2.9rem;

    .visible & {
      animation: slideUp 600ms ease both;
    }
  }

  @media (max-width: 1023px) {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

.c-banner-promo__title-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  max-width: 63rem;

  @media (min-width: 1024px) {
    opacity: 0;

    .visible & {
      animation: slideUp 600ms 450ms ease both;
    }
  }

  svg path {
    fill: var(--banner-promo-svg);
  }
}

.c-banner-promo__title {
  font-weight: 700;
  line-height: normal;
  position: relative;

  &::before {
    content: '';
    mask-image: url('../../assets/images/title-deco.svg');
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    background-color: var(--promo-banner-svg);
    display: block;
    width: 56px;
    height: 53px;
    margin: 0 auto 2rem;
  }

  @media (min-width: 1024px) {
    font-size: 4.2rem;
  }

  @media (max-width: 1023px) {
    font-size: 2.8rem;
  }
}

.c-banner-promo__text {
  font-weight: 700;
  position: relative;

  @media (min-width: 1024px) {
    font-size: 2.4rem;
    line-height: 2.9rem;
  }

  @media (max-width: 1023px) {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.c-banner-promo__mentions {
  font-size: 1.2rem;
  line-height: 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;

  @media (min-width: 1024px) {
    opacity: 0;

    .visible & {
      animation: slideUp 600ms 850ms ease both;
    }
  }

  a {
    color: var(--banner-promo);
    text-decoration: underline;
    font-weight: 700;

    &:hover {
      text-decoration: none;
    }
  }
}

.c-banner-promo__gift {
  width: 100%;
  position: absolute;
  left: calc(100% + 2rem);
  bottom: -111px;

  svg path {
    fill: var(--banner-promo-gift-svg);
  }
}

.c-banner-promo__btn {
  position: relative;

  @media (min-width: 1024px) {
    opacity: 0;

    .visible & {
      animation: slideUp 600ms 650ms ease both;
    }
  }
}