@charset "utf-8";
/* copyright(c) WEBsiting.co.kr */

/* 공통 레이아웃 */
#ctWrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto !important;
}

.image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.image-container:hover .overlay {
  opacity: 1;
}

/* 공통 텍스트 스타일 */
.overlay-text {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 2.8vw;
  font-weight: bold;
  z-index: 2;
  line-height: 1.5;
  max-width: 90%;
  word-break: keep-all;
  white-space: normal;
  padding: 10px;
  box-sizing: border-box;
}

/* 개별 정렬 클래스들 */
.center-text {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.left-text {
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
}

.right-text {
  right: 5%;
  transform: translateY(-50%);
  text-align: right;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .overlay-text {
    font-size: 4vw;
  }

  /* center만 중앙정렬 유지, 나머지는 건드리지 말 것 */
  .center-text {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
  }
}

