.promo-banner {
  display: grid;
  grid-template-columns: 1fr 409px;
  border-radius: 20px;
  background-color: #152051;
  color: #fff;
  overflow: hidden;
}

.promo-banner__content {
  display: grid;
  gap: 34px;
  padding: 32px 0 32px 32px;
}

.promo-banner__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 131.333%;
}

.promo-banner__button {
  width: fit-content;
  border-radius: 60px;
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  color: #08102f;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.promo-banner__button:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.promo-banner__media {
  max-width: 409px;
  position: relative;
  justify-self: flex-end;
  align-self: flex-end;
}

.promo-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-banner__discount {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 12px;
  border-radius: 50%;
  font-size: 78.338px;
  font-weight: 600;
  line-height: 81.37%;
  letter-spacing: -3.134px;
  background-color: #718bff;
  color: #fff;
  right: 0;
  bottom: 0;
  translate: 16px 40px;
  rotate: -9.908deg;
}

@media (max-width: 767px) {
  .promo-banner {
    grid-template-columns: 1fr;
  }

  .promo-banner__content {
    padding: 20px;
  }

  .promo-banner__title {
    font-size: 20px;
  }

  .promo-banner__button {
    margin: 0 auto;
  }

  .promo-banner__discount {
    font-size: 50px;
    translate: 14px 20px;
  }
}
