.popup {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background-color: rgba(30, 28, 35, 0.4);
  font-family: expoSans, sans-serif;
  z-index: 9999;
}

.popup * {
  box-sizing: border-box;
}

.popup__inner {
  position: relative;
  overflow: auto;
  width: 100%;
  max-width: 1120px;
  max-height: 100%;
  background-color: #FDFDFD;
  border-radius: 16px;
}

.popup__close {
  all: unset;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 8px 10px -6px #1018280A, 0px 20px 25px -5px #1018280A;
}

.popup__image {
  display: block;
  width: 100%;
  max-height: 400px;
  aspect-ratio: 1.4;
  object-fit: cover;
}

.popup__content {
  padding: 20px 20px 30px;
  background: url('/-/media/flower-small.png') no-repeat top -210px right;
}

.popup__title {
  margin-top: 30px;
  font-size: 25px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -3%;
}

.popup__text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.popup__link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 17px 30px;
  border-radius: 9999px;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(90deg, #F1A40E 0%, #FBBB03 59.36%);
}

.popup__link::before {
  content: '';
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 4px solid #FDFDFD;
  border-radius: inherit;
}

.popup__link-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.popup__link-text--large {
  display: none;
}

.popup__link-icon {
  margin-inline-start: 10px;
}

[dir="rtl"] .popup__close {
    right: auto;
    left: 20px;
}

[dir="rtl"] .popup__link-icon {
    transform: rotate(180deg);
}

@media screen and (max-height: 820px) {
  .popup__image {
    aspect-ratio: 2;
  }
}

@media screen and (max-height: 700px) {
  .popup__image {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .popup {
    padding: 50px 32px;
  }

  .popup__inner {
    display: flex;
  }

  .popup__image {
    max-width: 45%;
    max-height: none;
    aspect-ratio: unset;
  }

  .popup__content {
    padding: 40px 54px 60px;
    background: url('/-/media/flower.png') no-repeat top right;
  }

  .popup__logo {
    width: 160px;
    margin-inline-start: -14px;
  }

  .popup__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.03em;
  }

  .popup__text {
    margin-top: 20px;
  }

  .popup__link-text--small {
    display: none;
  }

  .popup__link-text--large {
    display: inline;
  }
}