/* 팝업 공통 css는 modal.css에 작성 -> modal.css는 프론트페이지, contact페이지 둘 다 적용
뉴스팝업에만 들어가는 css는 news-modal.css에 작성 -> news-modal.css는 프론트페이지에만 적용 */
body.popup-open {
  overflow-y: hidden;
}

.popup-btn {
  cursor: pointer;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px;
}
.popup-content {
  margin: 55px auto;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 6px;
  width: 100%;
  max-width: 750px;
  position: relative;
}
.popup-content .close-btn {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.popup .popup-content .content {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.popup .popup-content .content .tit {
  font-size: 3.2rem;
  font-weight: 700;
}

.popup .popup-content .content .paragraph {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75;
}

.popup .popup-content .content img {
  width: 100%;
}

@media (max-width: 768px) {
}
