.promo-banner {
  padding: 0;
  width: 100%;
  height: auto;
  margin: 0px auto;
  box-sizing: border-box;
  max-width: 1900px;
  margin: 0 auto;
}

.promo-banner__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
}

.promo-banner__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-gray-500);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  padding: 5px 14px;
  border-radius: 12px;
  pointer-events: none;
}

.promo-banner__info {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.promo-banner__popup {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  display: flex;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

.promo-banner__popup-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px;
  text-align: center;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

.promo-banner__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner__popup-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-500);
  line-height: var(--line-height-tight);
}

.promo-banner__popup-info {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-500);
  line-height: var(--line-height-tight);
  text-decoration: none;
}

.promo-banner__link {
  display: block;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.promo-banner__img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1700px) {
  .promo-banner__link {
    border-radius: 20px;
  }

  .promo-banner__wrapper {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .promo-banner {
      max-width: 360px;
      height: 220px;
  }

  .promo-banner__link {
    border-radius: 10px;
  }

  .promo-banner__wrapper {
    border-radius: 10px;
  }
}
