/* ==========================================================================
   Попап «Первый номер журнала "Предвестник будущих технологий"»
   Подключается из /local/popup/magazine-popup.php
   Базовые классы .popup / .popup__overlay / .popup__container / .popup__close
   уже описаны в css/style.css шаблона — здесь только оформление этого попапа.
   ========================================================================== */

.magazine-popup .popup__container {
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  background:
    radial-gradient(680px 420px at 8% 0%, rgba(161, 101, 64, .42) 0%, rgba(161, 101, 64, 0) 62%),
    linear-gradient(135deg, #2B1D14 0%, #1A1411 55%, #120F0D 100%);
  border: 1px solid rgba(161, 101, 64, .5);
}

/* декоративная спираль в левом нижнем углу */
.magazine-popup .popup__container::before {
  content: '';
  position: absolute;
  left: -90px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  z-index: 0;
  opacity: .5;
  background: url('/local/popup/spiral2.svg') no-repeat center / contain;
  pointer-events: none;
}

.magazine-popup__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: stretch;
}

.magazine-popup__text {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.magazine-popup__title {
  font-family: 'Mulish-Black';
  text-transform: uppercase;
  color: var(--color-white);
  font-size: 1.9rem;
  line-height: 1.18;
  max-width: 480px;
}

.magazine-popup__title span {
  color: var(--color-primary1);
}

.magazine-popup__desc {
  font-family: 'IBMPlexSans-Regular';
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(230, 230, 230, .8);
  max-width: 460px;
}

.magazine-popup__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 64px;
  padding: 0 40px;
  border: 3px solid var(--color-primary1);
  border-radius: 100px;
  font-family: 'Mulish-Black';
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--color-pr-color3);
  transition: background-color .4s ease;
}

.magazine-popup__btn:hover {
  background-color: var(--color-primary1);
}

.magazine-popup__cover {
  position: relative;
  min-height: 520px;
  background: #3f4a86;
}

.magazine-popup__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

/* мягкая стыковка обложки с тёмной панелью */
.magazine-popup__cover::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 90px;
  background: linear-gradient(90deg, rgba(26, 20, 17, .95), rgba(26, 20, 17, 0));
  pointer-events: none;
}

@media screen and (max-width: 900px) {
  .magazine-popup__inner {
    grid-template-columns: 1fr;
  }

  .magazine-popup__cover {
    order: -1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .magazine-popup__cover::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 80px;
    background: linear-gradient(0deg, rgba(26, 20, 17, .95), rgba(26, 20, 17, 0));
  }

  .magazine-popup__text {
    padding: 32px 24px 40px;
    gap: 20px;
    text-align: center;
    align-items: center;
  }

  .magazine-popup__title {
    font-size: 1.4rem;
  }

  .magazine-popup__desc {
    font-size: .98rem;
  }

  .magazine-popup__btn {
    align-self: center;
    height: 56px;
    font-size: 1rem;
    min-width: 200px;
  }
}
