/* 대문 메인 타이틀 글자 크기 줄이기 (한 줄 맞춤용) */
.intro-header .page-heading h1, 
.intro-header .site-heading h1 {
  font-size: 40px !important; /* 기본 약 55~70px ➔ 40px로 축소 */
}

/* 모바일 화면에서도 예쁘게 깨지지 않도록 자동 조절 */
@media only screen and (max-width: 768px) {
  .intro-header .page-heading h1, 
  .intro-header .site-heading h1 {
    font-size: 28px !important;
  }
}
