@charset "UTF-8";

.interesting__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  inset: 0;
  z-index: -999;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  overflow-x: hidden;
  overflow-y: auto;
  color: #fff;  
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  top: -100%;
  opacity: 0;
}

.interesting__modal.visible {
  top: 0;
  z-index: 9999;
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.interesting__modal .modal-wrapper {
  position: relative;
  width: 1180px;
  padding: 20px;
  margin: auto;
  border-radius: 20px;
  cursor: default;
  /* background: rgba(150, 0, 255, 0.4); */
	background: #2d3d89;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.interesting__modal .modal-close-button {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 7px;
}

.interesting__modal .slide {
  height: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.interesting__modal .slide__images {
  min-width: 560px;
  max-width: 560px;
}

.interesting__modal .slide__image {
  height: 730px;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.interesting__modal .slide__image:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.interesting__modal .slide__information {
  height: 720px;
  margin-top: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 200, 255, 0.6) #280046;
  padding-right: 20px;
}

.interesting__modal .slide__information::-webkit-scrollbar {
  width: 8px;
}

.interesting__modal .slide__information::-webkit-scrollbar-track {
  background: none;
}

.interesting__modal .slide__information::-webkit-scrollbar-thumb {
  background-color: rgba(180, 200, 255, 0.6);
  border-radius: 20px;
  border: 3px solid transparent;
}

.interesting__modal .slide__title {
  font-size: 32px;
  line-height: 40px;  
  margin-bottom: 40px;
}

.interesting__modal .slide__description p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 24px;
}

.interesting__modal .slide__description p:last-child {
  margin-bottom: 0;
}

.interesting__modal .slide__description h3 {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.interesting__modal .slide__description a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.interesting__modal .slide__description a:hover {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .interesting__modal .modal-wrapper {
    max-width: 90%;
  }

  .interesting__modal .slide {
    height: 420px;
    gap: 20px;
  }
  .interesting__modal .slide__image {
    height: 400px;
  }
  .interesting__modal .slide__images {
    min-width: 350px;
    max-width: 350px;
  }
  .interesting__modal .slide__information {
    height: 420px;
    margin-top: 0;
    padding-right: 10px;
  }
  .interesting__modal .slide__title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .interesting__modal .slide__description p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 700px) {
  .interesting__modal .slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .interesting__modal .slide__images {
    min-width: 100%;
  }
}