.modal-more-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-more-overlay.show {
  display: flex;
}

.modal-more-content {
  position: relative;
  background: linear-gradient(180deg, rgb(42, 158, 216), rgb(70, 190, 255));
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
}

.modal-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.modal-more-wrapper img {
  width: 25%;
  height: auto;
}

.modal-more-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  transition: color 0.2s;
}
.modal-more-close:hover {
  color: #626161;
}

.modal-more-text {
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .modal-more-wrapper {
    flex-direction: column;
  }
  .modal-more-wrapper img {
    width: 50%;
    height: auto;
  }
}

/*# sourceMappingURL=modalMore.css.map */
