/* Общий контейнер поп-апа с PDF */
.pdf-wrapper {
  width: 100%;
  max-width: 900px;
  height: 80vh;
  margin: 0 auto;
}

.pdf-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* По умолчанию показываем десктопный вариант */
.pdf-mobile {
  display: none;
}

/* На мобиле скрываем iframe и показываем кнопку */
@media screen and (max-width: 768px) {
  .pdf-desktop {
    display: none;
  }

  .pdf-mobile {
    display: block;
    text-align: center;
    padding: 20px;
  }

  /* Поп-ап на весь экран, чтобы не было странных отступов */
  .t-popup.t-popup_show {
    padding: 0 !important;
  }

  .t-popup .t-popup__container {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }

  .t-popup__close {
    top: 10px !important;
    right: 10px !important;
    z-index: 9999;
  }
}
