@charset "utf-8";
/* 팝업 */

#portfolioPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

#portfolioPopup .popup_inner {
  background: #fff;
  box-sizing: border-box;
  padding: 35px 40px 30px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border-radius: 30px;
}

#portfolioPopup h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

#portfolioPopup p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

#portfolioPopup .btn_close {
  font-size: 16px;
  margin-top: 30px;
  padding: 15px 30px;
  background: #124331;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  width: 100%;
}

/* 모바일 전용 */
@media (max-width: 768px) {

  #portfolioPopup {
    padding: 20px;
  }

  #portfolioPopup .popup_inner {
    width: 100%;
    max-width: none;
    padding: 30px 20px 25px;
    border-radius: 40px;
  }

  #portfolioPopup h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  #portfolioPopup p {
    font-size: 14px;
    line-height: 1.5;
    word-break: keep-all;
  }

  #portfolioPopup .btn_close {
    width: 100%;
    margin-top: 25px;
    padding: 14px 0;
    font-size: 15px;
  }

}