/* 상단 공통 배경 이미지 교체 */
body.ax-site .wrapper .container .area-visual {
  --visual-image: url(/_res/postech/ax/img/postech3.jpg);
}

/* 배경 이미지 위에 어두운 오버레이 */
body.ax-site .wrapper .container .area-visual::after {
  content: '';                          /* 가상요소 생성 (필수) */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);       /* 어두운 반투명 막 (0.4 = 어둡기) */
  z-index: -1;                          /* 글자보다 뒤, 배경보다 앞 */
}

/* 배경 이미지에서 보여줄 위치 (세로 가운데) */
body.ax-site .wrapper .container .area-visual h2::before {
  background-position: center 10% !important;
}

@media only screen and (min-width: 1025px) {
  body.ax-site .wrapper .container {
    --linemap-fontSize: 1.9rem;   /* 글자 크기 */
    --linemap-height: 8rem;       /* 영역 높이 */
  }
}