.marketing-popup-bg {
  display: flex;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(255,255,255,.5);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.marketing-popup {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 2rem;
  background: white;
  max-width: 1000px;
  width: 100%;
  border-radius: 32px;
  border: 7px solid black;
  border-color: var(--marketing-popup-color);
  padding: 2rem;
  overflow: auto;
  margin-top: 100px;
  transition: margin-top 0.5s ease;
}

.marketing-popup-bg.active {
  opacity: 1;
  pointer-events: auto;
}

.marketing-popup-bg.active .marketing-popup {
  margin-top: 0;
}

.marketing-popup-art {
  position: relative;
  flex-basis: 50%;
}

.marketing-popup-art img {
  display: block;
  width: 100%;
  height: auto; 
}

.marketing-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 35px;
  padding-top: 5px;
  font-size: 24px;
  line-height: 35px;
  text-align: center; 
  align-items: center;
  background: black;
  background-color: var(--marketing-popup-color);
  color: white;
  color: var(--marketing-popup-text);
  cursor: pointer;
  transition: filter 0.2s;
}

.marketing-popup-close:hover {
  filter: brightness(1.5);
}

.marketing-popup-text {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  text-align: left;
  justify-content: center;
  font-size: 26px;
  line-height: 30px;
}

.marketing-popup-text h1 {
  margin-top: 0;
  font-size: 42px;
  line-height: 48px;
  font-weight: 800;
  text-align: left;
}

.marketing-popup-text h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: initial;
  text-align: left;
}

.marketing-popup-text p {
  margin: 30px 0;
}

.marketing-popup-action a {
  display: inline-block;
  padding: 15px 50px;
  background: black;
  background-color: var(--marketing-popup-color);
  color: white;
  color: var(--marketing-popup-text);
  transition: filter 0.2s;
}

.marketing-popup-action a:hover {
  filter: brightness(1.5);
}



@media screen and (max-width: 799px) {
  
  .marketing-popup-bg {
    padding: 1rem; 
  }
  
  .marketing-popup {
    flex-direction: column;
    padding: 1rem;
    border-radius: 20px;
  }
  
  .marketing-popup-text {
    font-size: 20px;
    line-height: 24px;
  }
  
  .marketing-popup-text h1 {
    font-size: 30px;
    line-height: 33px;
  }
  
  .marketing-popup-text h2 {
    font-size: 18px;
    line-height: 21px;
  }
  
  .marketing-popup-text p {
    margin: 20px 0;
  }
  
  .marketing-popup-action {
    padding: 10px 0 20px;
    text-align: center;
  }
  
  .marketing-popup-action a {
    padding: 12px 40px;
  }
  
}