/* =========================================================
   수정본 파일명 : index.css
   다운로드용 TXT : index.css.txt
   ---------------------------------------------------------
   적용 프로젝트 : 하우징개봉 청년안심주택 웹사이트
   원본 기준     : 사용자가 업로드한 index.css
   수정일        : 2026-05-03
   ---------------------------------------------------------
   [기존 대화 반영 사항]
   1. 사이트 대표 컬러는 #006655 기준으로 유지합니다.
   2. 정적 리소스 경로는 /assets/... 기준을 유지합니다.
   3. PC / 태블릿 / 모바일 반응형 구조를 유지합니다.
   4. header.css, index.css, footer.css가 함께 로딩되어도 충돌이 적도록 구성합니다.
   5. 서브페이지 상단 비주얼 영역은 과도하게 높아지지 않도록 compact 기준을 유지합니다.
   6. 유지보수자가 CSS 역할을 쉽게 파악할 수 있도록 한글 주석을 보강했습니다.
   7. 사용자의 브라우저 모션 최소화 설정을 고려했습니다.
   ========================================================= */

/* =========================================================
   파일명 : /assets/css/index.css
   설명   : 하나하우징개봉 청년안심주택 메인 본문 스타일

   [이 파일에 포함된 범위]
   1. 메인 콘텐츠 공통
   2. 메인 비주얼 슬라이더
   3. 메인 요약 카드 영역
   4. 큰 콘텐츠 섹션 공통
   5. 모집안내 / 청약안내 / 고객안내 박스
   6. 관심고객 등록 + 오시는길 통합 영역
   7. 오시는길 영역
   8. 스크롤 등장 애니메이션
   9. 스크롤 유도 버튼
   10. 본문 관련 반응형 처리

   [유지보수 참고]
   - 이 파일은 index.php 본문 구조를 기준으로 작성됨
   - header.css 다음에 불러와야 변수와 기본 reset을 그대로 활용 가능
   - footer.css보다 먼저 불러와도 무방함
   ========================================================= */


/* =========================================================
   1. 메인 콘텐츠 공통
   ========================================================= */

.main-content {
    width: 100%;
}


/* =========================================================
   2. 메인 비주얼 슬라이더
   ========================================================= */

/* ---------------------------------------------------------
   메인 비주얼 섹션
   --------------------------------------------------------- */
.hero-section {
    width: 100%;
    padding: 20px 24px 0;
}


/* ---------------------------------------------------------
   슬라이더 외곽 박스
   --------------------------------------------------------- */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    height: 620px;
    border-radius: 28px;
    overflow: hidden;
    background-color: transparent !important;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}


/* ---------------------------------------------------------
   슬라이드 트랙
   - 기본 CSS에서는 3개 슬라이드 기준으로 폭을 지정합니다.
   - index.js에서는 자연스러운 무한 슬라이드를 위해
     첫 번째 슬라이드를 복제한 뒤, 실제 슬라이드 수에 맞춰
     width / flex-basis 값을 인라인으로 다시 계산합니다.
   - transform은 GPU 가속이 가능한 translate3d를 사용하고,
     transition은 ease-in-out보다 더 자연스러운 cubic-bezier를 적용합니다.
   --------------------------------------------------------- */
.hero-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 1100ms cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    backface-visibility: hidden;
}

/* ---------------------------------------------------------
   transition 임시 해제 클래스
   - 마지막 복제 슬라이드에서 첫 번째 실제 슬라이드로
     순간 복귀할 때 화면 깜빡임을 방지하기 위해 JS에서 사용합니다.
   --------------------------------------------------------- */
.hero-slider-track.no-transition {
    transition: none !important;
}


/* ---------------------------------------------------------
   개별 슬라이드
   --------------------------------------------------------- */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 0 0 calc(100% / 3);
    overflow: hidden;
}


/* ---------------------------------------------------------
   슬라이드 이미지
   - display:block을 명시하여 이미지 하단 미세 여백을 제거합니다.
   - transform / backface-visibility는 슬라이드 이동 중
     이미지가 순간적으로 떨리거나 흐릿해지는 현상을 줄입니다.
   --------------------------------------------------------- */
.hero-slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* ---------------------------------------------------------
   슬라이드 전체 위의 약한 오버레이
   --------------------------------------------------------- */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.22) 0%,
            rgba(15, 23, 42, 0.12) 28%,
            rgba(15, 23, 42, 0.05) 55%,
            rgba(15, 23, 42, 0.00) 100%
        );
    pointer-events: none;
}


/* ---------------------------------------------------------
   슬라이드 위 오버레이 컨테이너
   --------------------------------------------------------- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 72px 74px;
    pointer-events: none;
}


/* ---------------------------------------------------------
   텍스트 전체 외곽 셸
   --------------------------------------------------------- */
.hero-content-shell {
    position: relative;
    z-index: 4;
    max-width: 780px;
    pointer-events: auto;
}


/* ---------------------------------------------------------
   실제 텍스트 그룹
   --------------------------------------------------------- */
.hero-text-group {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.35) 60%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(8px);
    padding: 32px 34px;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* ---------------------------------------------------------
   상단 작은 문구
   --------------------------------------------------------- */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 999px;
    background-color: #006655;
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}


/* ---------------------------------------------------------
   메인 제목
   --------------------------------------------------------- */
.hero-title {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -1.6px;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.22),
        0 10px 30px rgba(0, 0, 0, 0.20);
}


/* ---------------------------------------------------------
   메인 설명 문구
   --------------------------------------------------------- */
.hero-description {
    font-size: 21px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.96);
    max-width: 700px;
    margin-bottom: 24px;
    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ---------------------------------------------------------
   버튼 박스
   --------------------------------------------------------- */
.hero-btn-box {
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 22px;
    background-color: transparent;
    border: none;
}


/* ---------------------------------------------------------
   버튼 그룹
   --------------------------------------------------------- */
.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ---------------------------------------------------------
   메인 슬라이드 버튼 공통
   --------------------------------------------------------- */
.hero-main-btn,
.hero-sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 170px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
    backdrop-filter: blur(8px);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-shadow: none;
    white-space: nowrap;
    text-decoration: none;
}


/* ---------------------------------------------------------
   버튼 아이콘
   --------------------------------------------------------- */
.hero-btn-icon {
    font-size: 19px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   버튼 텍스트
   --------------------------------------------------------- */
.hero-btn-text {
    display: inline-block;
    line-height: 1;
}


/* ---------------------------------------------------------
   주 버튼
   --------------------------------------------------------- */
.hero-main-btn {
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--brand-primary-deep);
    border: none;
}

.hero-main-btn:hover {
    transform: translateY(-2px);
    background-color: var(--brand-primary-deep);
    color: #ffffff;
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}


/* ---------------------------------------------------------
   보조 버튼
   --------------------------------------------------------- */
.hero-sub-btn {
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--brand-primary-deep);
    border: none;
}

.hero-sub-btn:hover {
    transform: translateY(-2px);
    background-color: var(--brand-primary-deep);
    color: #ffffff;
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}


/* ---------------------------------------------------------
   슬라이드 인디케이터 그룹
   --------------------------------------------------------- */
.hero-indicator-group {
    position: absolute;
    left: 74px;
    bottom: 52px;
    display: flex;
    gap: 10px;
    pointer-events: auto;
    z-index: 5;
}


/* ---------------------------------------------------------
   인디케이터 버튼
   --------------------------------------------------------- */
.hero-indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.hero-indicator.active {
    background-color: #ffffff;
    transform: scale(1.15);
}


/* =========================================================
   3. 메인 요약 카드 영역
   ========================================================= */

/* ---------------------------------------------------------
   요약 섹션
   --------------------------------------------------------- */
.main-summary-section {
    width: 100%;
    padding: 28px 24px 0;
}


/* ---------------------------------------------------------
   요약 3열 그리드
   --------------------------------------------------------- */
.main-summary-grid {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}


/* ---------------------------------------------------------
   카드 공통
   --------------------------------------------------------- */
.summary-card {
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


/* ---------------------------------------------------------
   카드 상단 타이틀 영역
   --------------------------------------------------------- */
.summary-card-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--brand-bg-light) 0%, var(--brand-bg-soft) 100%);
    border-bottom: 1px solid var(--brand-border);
    min-height: 50px;
}


/* ---------------------------------------------------------
   타이틀 그룹
   --------------------------------------------------------- */
.summary-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}


/* ---------------------------------------------------------
   타이틀 아이콘
   --------------------------------------------------------- */
.summary-title-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 102, 85, 0.10);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 102, 85, 0.12);
}


/* ---------------------------------------------------------
   카드 타이틀
   --------------------------------------------------------- */
.summary-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin: 0;
}


/* ---------------------------------------------------------
   MORE 링크
   --------------------------------------------------------- */
.summary-more-link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand-primary);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.summary-more-link:hover {
    opacity: 0.75;
    transform: translateX(2px);
}


/* ---------------------------------------------------------
   카드 내용 영역 공통
   --------------------------------------------------------- */
.summary-card-content {
    padding: 18px 22px 20px;
    min-height: 308px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* ---------------------------------------------------------
   공지사항 본문 영역
   --------------------------------------------------------- */
.notice-card-content {
    justify-content: flex-start;
}


/* ---------------------------------------------------------
   공지사항 목록
   --------------------------------------------------------- */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}


/* ---------------------------------------------------------
   공지사항 각 행
   --------------------------------------------------------- */
.notice-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 0 0 0 0;
    border-bottom: 1px solid #eef2f7;
}


/* ---------------------------------------------------------
   공지사항 제목 링크
   --------------------------------------------------------- */
.notice-list li a {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    line-height: 1.5;
}

.notice-list li a:hover {
    color: var(--brand-primary);
}


/* ---------------------------------------------------------
   공지사항 날짜
   --------------------------------------------------------- */
.notice-list li span {
    flex-shrink: 0;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1;
}


/* ---------------------------------------------------------
   청약일정 본문 영역
   --------------------------------------------------------- */
.schedule-card-content {
    justify-content: flex-start;
}


/* ---------------------------------------------------------
   청약일정 리스트 래퍼
   --------------------------------------------------------- */
.schedule-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   청약일정 항목
   --------------------------------------------------------- */
.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    border-bottom: 1px solid #eef2f7;
}

.schedule-item:last-child {
    border-bottom: 1px solid #eef2f7;
}


/* ---------------------------------------------------------
   일정 단계명
   --------------------------------------------------------- */
.schedule-step {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   일정 날짜
   --------------------------------------------------------- */
.schedule-date {
    font-size: 15px;
    color: var(--brand-primary);
    font-weight: 700;
    line-height: 1.4;
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   특장점 본문 영역
   --------------------------------------------------------- */
.feature-card-content {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}


/* ---------------------------------------------------------
   특장점 이미지 박스
   --------------------------------------------------------- */
.feature-image-placeholder {
    width: 100%;
    height: 250px;
    min-height: 250px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7fcfa 0%, #edf8f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ---------------------------------------------------------
   특장점 이미지
   --------------------------------------------------------- */
.feature-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* =========================================================
   4. 큰 콘텐츠 섹션 공통
   ========================================================= */

/* ---------------------------------------------------------
   큰 콘텐츠 섹션 공통
   --------------------------------------------------------- */
.large-content-section {
    width: 100%;
    padding: 90px 24px 0;
}


/* ---------------------------------------------------------
   밝은 배경 섹션
   --------------------------------------------------------- */
.large-content-light {
    background-color: #f7fcfa;
    margin-top: 70px;
    padding-top: 90px;
    padding-bottom: 90px;
}


/* ---------------------------------------------------------
   내부 정렬 공통
   --------------------------------------------------------- */
.large-content-inner,
.section-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   섹션 제목 영역
   --------------------------------------------------------- */
.large-content-heading,
.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-kicker {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.6px;
}

.section-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-muted);
}


/* ---------------------------------------------------------
   2열 레이아웃
   --------------------------------------------------------- */
.large-feature-grid {
    display: grid;
    gap: 24px;
}

.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.large-feature-grid.reverse {
    grid-template-columns: repeat(2, 1fr);
}


/* ---------------------------------------------------------
   큰 카드 공통
   --------------------------------------------------------- */
.large-feature-card {
    min-height: 420px;
    border-radius: 26px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}


/* ---------------------------------------------------------
   텍스트 카드
   --------------------------------------------------------- */
.large-feature-card.text-card {
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.large-feature-card.text-card h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 18px;
}

.large-feature-card.text-card p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 22px;
}


/* ---------------------------------------------------------
   큰 이미지 영역
   --------------------------------------------------------- */
.large-feature-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, var(--brand-bg-soft) 0%, #9bcfc3 100%);
    overflow: hidden;
}

.large-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------------------------------------------------------
   특징 목록
   --------------------------------------------------------- */
.feature-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullet-list li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-primary);
}


/* =========================================================
   5. 모집안내 / 청약안내 / 고객안내 박스
   ========================================================= */

/* ---------------------------------------------------------
   3열 강조 박스 그리드
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}


/* ---------------------------------------------------------
   개별 강조 카드
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 350px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 85, 0.18);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

#recruit-guide .wide-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}


/* ---------------------------------------------------------
   카드 전체를 덮는 어두운 오버레이는 사용하지 않음
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card::before {
    display: none;
}


/* ---------------------------------------------------------
   카드 내부 정렬 영역
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    padding: 0;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   패널 위치 제어
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card-overlay.panel-left {
    justify-content: flex-start;
}

#recruit-guide .wide-highlight-card-overlay.panel-right {
    justify-content: flex-end;
}


/* ---------------------------------------------------------
   상단 반투명 정보 패널
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-panel {
    width: 52%;
    min-height: 170px;
    padding: 28px 28px 24px 28px;
    background: rgba(126, 149, 146, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   좌측 패널
   --------------------------------------------------------- */
#recruit-guide .panel-left .wide-highlight-panel {
    border-radius: 0 0 26px 0;
    margin: 0;
}


/* ---------------------------------------------------------
   우측 패널
   --------------------------------------------------------- */
#recruit-guide .panel-right .wide-highlight-panel {
    border-radius: 0 0 0 26px;
    margin: 0;
}


/* ---------------------------------------------------------
   강조 카드 제목 - 좌측형
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card h3 {
    margin: 0 0 18px 0;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
}


/* ---------------------------------------------------------
   강조 카드 제목 - 우측형
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card h4 {
    margin: 0 0 18px 0;
    font-size: 34px;
    font-weight: 800;
    text-align: right;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
}


/* ---------------------------------------------------------
   강조 카드 설명 - 공통 스타일
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    word-break: keep-all;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}


/* ---------------------------------------------------------
   텍스트 왼쪽 정렬
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card p.text-left {
    text-align: left;
}


/* ---------------------------------------------------------
   텍스트 오른쪽 정렬
   --------------------------------------------------------- */
#recruit-guide .wide-highlight-card p.text-right {
    text-align: right;
}


/* ---------------------------------------------------------
   배경 이미지 지정
   --------------------------------------------------------- */
#recruit-guide .recruit-bg-card {
    background-image: url("/assets/images/index/recruit-guide.webp");
}

#recruit-guide .subscription-bg-card {
    background-image: url("/assets/images/index/subscription-guide-flipped.webp");
}

#recruit-guide .customer-bg-card {
    background-image: url("/assets/images/index/customer-guide-flipped.webp");
}


/* =========================================================
   6. 관심고객 등록 + 오시는길 통합 영역
   ========================================================= */

/* ---------------------------------------------------------
   일반 콘텐츠 섹션
   --------------------------------------------------------- */
.content-section {
    width: 100%;
    padding: 90px 24px 0;
}


/* ---------------------------------------------------------
   통합 섹션 전용 그리드
   --------------------------------------------------------- */
.customer-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.55fr);
    gap: 28px;
    align-items: stretch;
}


/* ---------------------------------------------------------
   왼쪽 관심고객 등록 박스
   --------------------------------------------------------- */
.customer-location-left {
    min-width: 0;
    height: 100%;
}


/* ---------------------------------------------------------
   관심고객 등록 폼 박스
   --------------------------------------------------------- */
.interest-form-box {
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fcfa 100%);
    border: 1px solid var(--brand-border);
    padding: 30px 26px;
    box-shadow: 0 18px 34px var(--brand-shadow-soft);
    height: 100%;
}

.interest-form-box h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    background-color: #ffffff;
    padding: 13px 15px;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px var(--brand-focus-ring);
}


/* ---------------------------------------------------------
   폼 하단 안내 문구
   --------------------------------------------------------- */
.form-note-text {
    margin-top: 2px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    word-break: keep-all;
}


/* ---------------------------------------------------------
   등록 버튼
   --------------------------------------------------------- */
.submit-btn {
    height: 50px;
    margin-top: 4px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-primary));
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px var(--brand-shadow-strong);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 102, 85, 0.26);
}


/* =========================================================
   7. 오시는길 영역
   ========================================================= */

/* ---------------------------------------------------------
   기존 location-section 기본 여백 유지
   --------------------------------------------------------- */
.location-section {
    width: 100%;
    padding: 90px 24px 0;
}

.location-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   우측 오시는길 전체 박스
   --------------------------------------------------------- */
.customer-location-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* ---------------------------------------------------------
   오시는길 상단 정보 박스
   --------------------------------------------------------- */
.location-hero-box {
    padding: 28px 30px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #ffffff 0%, #f7fcfa 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}


/* ---------------------------------------------------------
   제목 + 주소 가로 정렬
   --------------------------------------------------------- */
.location-top-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}


/* ---------------------------------------------------------
   제목 영역
   --------------------------------------------------------- */
.location-info-header {
    margin-bottom: 0;
}

.location-info-title {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    color: var(--brand-primary);
}


/* ---------------------------------------------------------
   주소 영역
   --------------------------------------------------------- */
.location-address-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-address-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    background-color: var(--brand-bg-light);
    border: 1px solid var(--brand-border-strong);
    border-radius: 999px;
    padding: 10px 16px;
}


/* ---------------------------------------------------------
   지도 패널
   --------------------------------------------------------- */
.location-map-panel {
    width: 100%;
}


/* ---------------------------------------------------------
   지도 프레임
   --------------------------------------------------------- */
.location-map-frame {
    width: 100%;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--brand-border);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}


/* ---------------------------------------------------------
   지도 링크 영역
   --------------------------------------------------------- */
.kakao-map-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
}


/* ---------------------------------------------------------
   지도 이미지
   --------------------------------------------------------- */
.kakao-static-map-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ---------------------------------------------------------
   하단 정보 바
   --------------------------------------------------------- */
.kakao-map-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f9f9f9;
}


/* ---------------------------------------------------------
   카카오맵 텍스트 로고
   --------------------------------------------------------- */
.kakao-map-logo-text {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #f1f5f9;
}


/* ---------------------------------------------------------
   우측 링크
   --------------------------------------------------------- */
.kakao-map-more-link {
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

.kakao-map-more-link:hover {
    text-decoration: underline;
}


/* =========================================================
   8. 스크롤 등장 애니메이션
   ========================================================= */

/* ---------------------------------------------------------
   reveal 기본 상태
   - 페이지 진입 또는 스크롤 진입 시 박스가 좌/우/아래에서
     자연스럽게 나타나는 애니메이션의 CSS 부분입니다.
   - 실제 show 클래스 부여는 /assets/js/index.js의
     IntersectionObserver 로직이 담당합니다.
   - --reveal-delay는 JS에서 순차 등장 효과를 위해 자동 부여합니다.
   --------------------------------------------------------- */
.reveal {
    opacity: 0;
    filter: blur(6px);
    transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
    backface-visibility: hidden;
}

.reveal-left {
    transform: translate3d(-72px, 0, 0);
}

.reveal-right {
    transform: translate3d(72px, 0, 0);
}

.reveal-up {
    transform: translate3d(0, 56px, 0);
}

.reveal.show {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}


/* ---------------------------------------------------------
   메인 비주얼 텍스트 최초 등장 애니메이션
   --------------------------------------------------------- */
.reveal-initial {
    animation: heroTextIntro 1s ease forwards;
}


/* ---------------------------------------------------------
   슬라이드 변경 시 텍스트 애니메이션
   --------------------------------------------------------- */
.hero-text-group.text-changing {
    animation: heroTextChange 0.7s ease;
}

@keyframes heroTextIntro {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroTextChange {
    0% {
        opacity: 0.25;
        transform: translateY(14px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* =========================================================
   9. 오른쪽 하단(또는 중앙) 스크롤 유도 버튼
   ========================================================= */

/* ---------------------------------------------------------
   기본 구조
   --------------------------------------------------------- */
.scroll-mouse-guide {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    z-index: 3000;
    width: 40px;
    height: 54px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: opacity 0.35s ease;
}

/* ---------------------------------------------------------
   흐리기
   --------------------------------------------------------- */
.scroll-mouse-guide.hide {
    opacity: 0.15;
}


/* ---------------------------------------------------------
   마우스 모양
   --------------------------------------------------------- */
.mouse-shape {
    width: 16px;
    height: 26px;
    border: 1.8px solid rgba(0, 102, 85, 0.92);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 4px;
}


/* ---------------------------------------------------------
   휠
   --------------------------------------------------------- */
.mouse-wheel {
    width: 2.5px;
    height: 6px;
    border-radius: 999px;
    background-color: rgba(0, 102, 85, 0.95);
    animation: mouseWheelMove 1.4s ease-in-out infinite;
}


/* ---------------------------------------------------------
   화살표 래퍼
   --------------------------------------------------------- */
.arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: arrowBounce 1.4s ease-in-out infinite;
}


/* ---------------------------------------------------------
   화살표 본체
   --------------------------------------------------------- */
.scroll-guide-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.8px solid rgba(0, 102, 85, 0.92);
    border-bottom: 1.8px solid rgba(0, 102, 85, 0.92);
    transform: rotate(45deg);
}


/* ---------------------------------------------------------
   마우스 휠 애니메이션
   --------------------------------------------------------- */
@keyframes mouseWheelMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: translateY(7px);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}


/* ---------------------------------------------------------
   화살표 애니메이션
   --------------------------------------------------------- */
@keyframes arrowBounce {
    0% {
        transform: translateY(0);
        opacity: 0.35;
    }
    50% {
        transform: translateY(3px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }
}


/* =========================================================
   10. 반응형 처리
   ========================================================= */

/* ---------------------------------------------------------
   1500px 이하
   - 큰 데스크탑 / 일반 노트북 구간
   --------------------------------------------------------- */
@media (max-width: 1500px) {
    .hero-slider-wrap {
        height: 560px;
    }

    .hero-overlay {
        padding: 60px 60px;
    }

    .hero-content-shell {
        max-width: 720px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 20px;
    }

    .main-summary-grid,
    .wide-highlight-grid {
        gap: 20px;
    }

    /* ---------------------------------------------
       모집안내 / 청약안내 / 고객안내
       --------------------------------------------- */
    #recruit-guide .wide-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    #recruit-guide .wide-highlight-card {
        min-height: 320px;
    }

    #recruit-guide .wide-highlight-panel {
        width: 56%;
        min-height: 160px;
        padding: 26px 26px 22px;
    }

    #recruit-guide .wide-highlight-card h3 {
        font-size: 32px;
    }

    #recruit-guide .wide-highlight-card p {
        font-size: 17px;
        line-height: 1.45;
    }

    /* ---------------------------------------------
       메인 요약 카드
       --------------------------------------------- */
    .summary-card-title-wrap {
        padding: 15px 20px;
        min-height: 68px;
    }

    .summary-title-group {
        gap: 10px;
    }

    .summary-title-icon {
        width: 40px;
        height: 40px;
        font-size: 23px;
    }

    .summary-card-title {
        font-size: 19px;
    }

    .summary-card-content {
        padding: 18px 20px 20px;
        min-height: 300px;
    }

    .notice-list li,
    .schedule-item {
        min-height: 52px;
    }

    .feature-image-placeholder {
        min-height: 262px;
    }

    /* ---------------------------------------------
       관심고객 등록 + 오시는길 통합 영역
       --------------------------------------------- */
    .customer-location-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
        gap: 24px;
    }

    .interest-form-box {
        padding: 28px 24px;
    }

    .interest-form-box h3 {
        font-size: 26px;
    }

    .location-hero-box {
        padding: 26px 26px;
    }

    .location-info-title {
        font-size: 32px;
    }

    .location-info-text {
        font-size: 15px;
    }

    .location-address-text {
        font-size: 16px;
    }

    .location-map-frame {
        min-height: 500px;
    }
}


/* ---------------------------------------------------------
   1280px 이하
   - 노트북 / 작은 데스크탑 구간
   --------------------------------------------------------- */
@media (max-width: 1280px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-content-shell {
        max-width: 700px;
    }

    .hero-text-group {
        max-width: 700px;
        padding: 28px 30px;
    }

    /* ---------------------------------------------
       모집안내 / 청약안내 / 고객안내
       --------------------------------------------- */
    #recruit-guide .wide-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    #recruit-guide .wide-highlight-card {
        min-height: 300px;
    }

    #recruit-guide .wide-highlight-panel {
        width: 58%;
        min-height: 154px;
        padding: 24px 24px 20px;
    }

    #recruit-guide .wide-highlight-card h3 {
        font-size: 30px;
    }

    #recruit-guide .wide-highlight-card p {
        font-size: 16px;
        line-height: 1.45;
    }

    /* ---------------------------------------------
       메인 요약 카드
       --------------------------------------------- */
    .main-summary-grid {
        gap: 18px;
    }

    .summary-card-title-wrap {
        padding: 14px 18px;
        min-height: 66px;
    }

    .summary-title-icon {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .summary-card-title {
        font-size: 18px;
    }

    .summary-more-link {
        font-size: 11px;
    }

    .summary-card-content {
        padding: 17px 18px 18px;
        min-height: 292px;
    }

    .notice-list li a {
        font-size: 14px;
    }

    .notice-list li span {
        font-size: 12px;
    }

    .schedule-step {
        font-size: 15px;
    }

    .schedule-date {
        font-size: 14px;
    }

    .notice-list li,
    .schedule-item {
        min-height: 50px;
    }

    .feature-image-placeholder {
        min-height: 255px;
    }

    /* ---------------------------------------------
       관심고객 등록 + 오시는길 통합 영역
       --------------------------------------------- */
    .customer-location-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.3fr);
        gap: 20px;
    }

    .interest-form-box {
        padding: 26px 22px;
    }

    .interest-form-box h3 {
        font-size: 24px;
    }

    .location-hero-box {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .location-info-title {
        font-size: 28px;
    }

    .location-info-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .location-address-text {
        font-size: 15px;
        padding: 10px 14px;
    }

    .location-map-frame {
        min-height: 460px;
        border-radius: 24px;
    }
}


/* ---------------------------------------------------------
   1100px 이하
   - 메인 요약 3개 블록은 1열 전환
   - 모집안내 / 청약안내 / 고객안내는 아직 3열 유지
   - 관심고객 등록 / 오시는길은 아직 2열 유지
   --------------------------------------------------------- */
@media (max-width: 1100px) {
    .hero-slider-wrap {
        height: 520px;
    }

    .hero-overlay {
        padding: 54px 40px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-content-shell {
        max-width: 640px;
    }

    .hero-text-group {
        max-width: 640px;
        padding: 24px 24px;
        border-radius: 20px;
    }

    .hero-btn-group {
        gap: 12px;
    }

    .hero-main-btn,
    .hero-sub-btn {
        min-width: 156px;
        height: 48px;
    }

    .hero-indicator-group {
        left: 40px;
        bottom: 34px;
    }

    .main-summary-grid,
    .two-cols,
    .large-feature-grid.reverse {
        grid-template-columns: 1fr;
    }

    /* ---------------------------------------------
       모집안내 / 청약안내 / 고객안내
       --------------------------------------------- */
    #recruit-guide .wide-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    #recruit-guide .wide-highlight-card {
        min-height: 270px;
    }

    #recruit-guide .wide-highlight-panel {
        width: 60%;
        min-height: 145px;
        padding: 22px 22px 18px;
    }

    #recruit-guide .wide-highlight-card h3 {
        font-size: 28px;
    }

    #recruit-guide .wide-highlight-card p {
        font-size: 15px;
        line-height: 1.42;
    }

    /* ---------------------------------------------
       메인 요약 카드
       --------------------------------------------- */
    .main-summary-grid {
        gap: 20px;
        max-width: 760px;
    }

    .summary-card-title-wrap {
        padding: 15px 20px;
        min-height: 68px;
    }

    .summary-title-group {
        gap: 11px;
    }

    .summary-title-icon {
        width: 40px;
        height: 40px;
        font-size: 23px;
    }

    .summary-card-title {
        font-size: 20px;
    }

    .summary-card-content {
        padding: 18px 20px 20px;
        min-height: auto;
    }

    .notice-list li,
    .schedule-item {
        min-height: 54px;
    }

    .feature-image-placeholder {
        min-height: 280px;
    }

    /* ---------------------------------------------
       관심고객 등록 + 오시는길 통합 영역
       --------------------------------------------- */
    .customer-location-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
        gap: 18px;
    }

    .interest-form-box {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .interest-form-box h3 {
        font-size: 23px;
    }

    .location-hero-box {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .location-info-title {
        font-size: 26px;
    }

    .location-info-text {
        font-size: 15px;
    }

    .location-map-frame {
        min-height: 420px;
        border-radius: 22px;
    }

    .kakao-map-link {
        padding: 14px;
    }
}


/* ---------------------------------------------------------
   1024px 이하
   - 태블릿부터 관심고객 등록 / 오시는길 세로 1열 전환
   - 모집안내 / 청약안내 / 고객안내는 2열 전환
   --------------------------------------------------------- */
@media (max-width: 1024px) {
    /* ---------------------------------------------
       메인 요약 카드
       --------------------------------------------- */
    .main-summary-grid {
        max-width: 100%;
        gap: 18px;
    }

    .summary-card-title-wrap {
        padding: 14px 18px;
        min-height: 64px;
    }

    .summary-title-icon {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .summary-card-title {
        font-size: 18px;
    }

    .summary-more-link {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .summary-card-content {
        padding: 16px 18px 18px;
    }

    .notice-list li a {
        font-size: 14px;
    }

    .notice-list li span {
        font-size: 12px;
    }

    .schedule-step {
        font-size: 15px;
    }

    .schedule-date {
        font-size: 14px;
    }

    .notice-list li,
    .schedule-item {
        min-height: 50px;
    }

    .feature-image-placeholder {
        min-height: 250px;
    }

    /* ---------------------------------------------
       모집안내 / 청약안내 / 고객안내
       --------------------------------------------- */
    #recruit-guide .wide-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    #recruit-guide .wide-highlight-card {
        min-height: 260px;
    }

    #recruit-guide .wide-highlight-panel {
        width: 62%;
        min-height: 148px;
        padding: 22px 22px 18px;
    }

    #recruit-guide .wide-highlight-card h3 {
        font-size: 28px;
    }

    #recruit-guide .wide-highlight-card p {
        font-size: 15px;
        line-height: 1.42;
    }

    /* ---------------------------------------------
       관심고객 등록 + 오시는길 통합 영역
       --------------------------------------------- */
    .customer-location-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .customer-location-left,
    .customer-location-right {
        width: 100%;
    }

    .interest-form-box {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .location-hero-box {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .location-info-title {
        font-size: 30px;
    }

    .location-info-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .location-address-wrap {
        gap: 10px;
    }

    .location-address-text {
        font-size: 16px;
        padding: 11px 16px;
    }

    .location-map-frame {
        min-height: 420px;
        width: 100%;
        max-width: 100%;
        border-radius: 22px;
    }

    .kakao-map-link {
        width: 100%;
        padding: 14px;
    }

    .kakao-static-map-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 14px;
    }
}


/* ---------------------------------------------------------
   768px 이하
   - 태블릿 세로 / 큰 모바일
   --------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-section,
    .main-summary-section,
    .large-content-section,
    .content-section,
    .location-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-slider-wrap {
        height: 480px;
        border-radius: 22px;
    }

    .hero-overlay {
        padding: 34px 20px;
    }

    .hero-content-shell {
        max-width: calc(100% - 8px);
    }

    .hero-text-group {
        max-width: calc(100% - 8px);
        padding: 20px 18px;
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.42);
    }

    .hero-btn-box {
        padding: 12px 12px;
        border-radius: 16px;
    }

    .hero-kicker {
        font-size: 13px;
        padding: 8px 13px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 14px;
        line-height: 1.18;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .hero-btn-group {
        gap: 10px;
    }

    .hero-main-btn,
    .hero-sub-btn {
        min-width: 138px;
        height: 44px;
        font-size: 14px;
        padding: 0 18px;
    }

    .hero-indicator-group {
        left: 24px;
        bottom: 24px;
    }

    .large-content-light {
        margin-top: 54px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-title {
        font-size: 30px;
    }

    /* ---------------------------------------------
       메인 요약 카드
       --------------------------------------------- */
    .main-summary-grid {
        gap: 16px;
    }

    .summary-card {
        border-radius: 20px;
    }

    .summary-card-title-wrap {
        padding: 13px 16px;
        min-height: 60px;
    }

    .summary-title-group {
        gap: 9px;
    }

    .summary-title-icon {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .summary-card-title {
        font-size: 17px;
        line-height: 1.2;
    }

    .summary-more-link {
        font-size: 10px;
        letter-spacing: 0.7px;
    }

    .summary-card-content {
        padding: 14px 16px 16px;
        min-height: auto;
    }

    .notice-list li,
    .schedule-item {
        min-height: 48px;
        gap: 10px;
    }

    .notice-list li a {
        font-size: 14px;
        line-height: 1.45;
    }

    .notice-list li span {
        font-size: 12px;
    }

    .schedule-step {
        font-size: 14px;
    }

    .schedule-date {
        font-size: 13px;
    }

    .feature-image-placeholder {
        min-height: 220px;
        border-radius: 16px;
    }

    /* ---------------------------------------------
       모집안내 / 청약안내 / 고객안내
       --------------------------------------------- */
    #recruit-guide .wide-highlight-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #recruit-guide .wide-highlight-card {
        min-height: 240px;
        border-radius: 20px;
    }

    #recruit-guide .wide-highlight-panel {
        width: 68%;
        min-height: 138px;
        padding: 20px 18px 16px;
    }

    #recruit-guide .wide-highlight-card h3 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    #recruit-guide .wide-highlight-card p {
        font-size: 15px;
        line-height: 1.45;
    }

    /* ---------------------------------------------
       관심고객 등록 + 오시는길 통합 영역
       --------------------------------------------- */
    .interest-form-box {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .interest-form-box h3 {
        font-size: 22px;
    }

    .location-hero-box {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .location-info-title {
        font-size: 26px;
    }

    .location-info-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .location-address-text {
        font-size: 15px;
        padding: 10px 14px;
    }

    .form-note-text {
        font-size: 12px;
    }

    .location-map-frame {
        min-height: 360px;
        border-radius: 20px;
    }

    .kakao-map-link {
        padding: 12px;
    }

    .kakao-static-map-image {
        border-radius: 12px;
    }
}


/* ---------------------------------------------------------
   480px 이하
   - 작은 모바일
   --------------------------------------------------------- */
@media (max-width: 480px) {
    .hero-slider-wrap {
        height: 430px;
    }

    .hero-text-group {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .hero-btn-box {
        padding: 10px;
        border-radius: 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-main-btn,
    .hero-sub-btn {
        min-width: 128px;
        height: 42px;
        font-size: 13px;
        padding: 0 15px;
    }

    /* ---------------------------------------------
       메인 요약 카드
       --------------------------------------------- */
    .summary-card {
        border-radius: 18px;
    }

    .summary-card-title-wrap {
        padding: 12px 14px;
        min-height: 56px;
    }

    .summary-title-group {
        gap: 8px;
    }

    .summary-title-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .summary-card-title {
        font-size: 16px;
    }

    .summary-more-link {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .summary-card-content {
        padding: 13px 14px 15px;
    }

    .notice-list li {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
        min-height: auto;
        padding: 10px 0;
    }

    .notice-list li a {
        width: 100%;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .notice-list li span {
        font-size: 11px;
    }

    .schedule-item {
        min-height: 44px;
        gap: 8px;
    }

    .schedule-step {
        font-size: 13px;
    }

    .schedule-date {
        font-size: 12px;
    }

    .feature-image-placeholder {
        min-height: 190px;
        border-radius: 14px;
    }

    /* ---------------------------------------------
       작은 모바일 폼 / 위치 영역
       --------------------------------------------- */
    .interest-form-box,
    .location-hero-box {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .interest-form-box h3 {
        font-size: 20px;
    }

    .location-info-title {
        font-size: 24px;
    }

    .location-info-text {
        font-size: 14px;
    }

    .location-address-wrap {
        align-items: flex-start;
    }

    .location-address-text {
        font-size: 14px;
        line-height: 1.6;
        border-radius: 16px;
    }

    .location-map-frame {
        min-height: 300px;
        border-radius: 18px;
    }

    .kakao-map-link {
        padding: 10px;
    }

    .kakao-static-map-image {
        border-radius: 10px;
    }

    .kakao-map-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .kakao-map-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .scroll-mouse-guide {
        /*
           기본 위치가 left:50% 중앙 정렬이므로,
           작은 모바일에서도 중앙 하단 기준을 유지합니다.
           right 값을 주면 left/transform과 충돌할 수 있어 사용하지 않습니다.
        */
        left: 50%;
        right: auto;
        bottom: 12px;
        transform: translateX(-50%);
    }
}



