/* 기본 설정 */
body {
    margin: 0;
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Pretendard Variable', sans-serif;
    color: #111;
    line-height: 1.6;
    text-align: center;
  }
  
  .sub-page {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* 제목 */
  h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  /* 세로 갤러리 */
  .vertical-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding-bottom: 60px;
  }
  
  /* 이미지 */
  .vertical-gallery img {
    width: 400px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .vertical-gallery img:hover {
    transform: scale(1.03);
  }
  
  /* 라이트박스 오버레이 */
  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
  }
  
  /* 라이트박스 이미지 */
  .lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0;
  }
  
  /* 닫기 버튼 */
  .lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }
  