/* =========================================================
   SUB VISUAL
========================================================= */

.sub-visual {
    position: relative;

    width: 100%;
    height: 400px;
    margin-top:-100px;
    overflow: visible;

    font-family: "Pretendard", sans-serif;
}


/* 배경 이미지 */

.sub-visual-bg {
    position: absolute;
    inset: 0;

    background-image: url("/theme/hch/img/sub_visual.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    z-index: 0;
}


/* 네이비 오버레이 */

.sub-visual-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(6, 25, 46, 0.78) 0%,
            rgba(6, 25, 46, 0.68) 45%,
            rgba(6, 25, 46, 0.74) 100%
        );
}


/* 1300px CONTENT */

.sub-visual-inner {
    position: relative;
    z-index: 2;
    border:0px solid red;
    width: calc(100% - 60px);
    max-width: 1300px;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */

.sub-visual-text {
    margin-top: 40px;
}


.sub-visual-text h2 {
    margin: 0 0 12px;

    font-family: "AritaBuri", "아리따부리", serif;

    font-size: 31px;
    font-weight: 500;

    line-height: 1.3;
    letter-spacing: -1.3px;

    color: #ffffff;
}


.sub-visual-text p {
    margin: 0;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.7;
    letter-spacing: -0.3px;

    color: rgba(255, 255, 255, 0.72);
}



/* =========================================================
   LOCATION
========================================================= */

.sub-location {
    position: absolute;
    border:0px solid red;
    right:7% !important;
    top: -26px;

    z-index: 5;

    width: 300px;
    height: 65px;

    display: flex;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    transform: translateX(95px);
}


/* HOME */

.location-home {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #eeeeee;

    background: #ffffff;

    text-decoration: none;

    transition: background-color .25s ease;
}


.location-home svg {
    width: 22px;
    height: 22px;

    fill: #111111;
}


.location-home:hover {
    background: #f6f6f6;
}


/* CURRENT */

.location-current {
    flex: 1;

    display: flex;
    align-items: center;

    padding: 0 23px;

    font-size: 17px;
    font-weight: 500;

    letter-spacing: 0px;

    color: #222222;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1300px) {

    .sub-visual-inner {
        width: calc(100% - 80px);
    }


    .sub-location {
        transform: translateX(30px);
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .sub-visual {
        height: 280px;
    }


    .sub-visual-inner {
      
    }


    .sub-visual-bg {
        background-position: 42% center;
    }


    .sub-visual-overlay {
        background:
            rgba(5, 24, 44, 0.72);
    }


    .sub-visual-text {
        margin-top:40px;
    }


    .sub-visual-text h2 {
        margin-bottom: 10px;  margin-top:20px;
        text-align: center;
        font-size: 27px;
    }


    .sub-visual-text p {
        max-width: 330px;
          text-align: center;
        font-size: 14px;

        line-height: 1.5;
    }


    .sub-location {
        left: 20px;
        right: 20px;
        bottom: -25px;

        width: auto;
        height: 54px;

        transform: none;
    }


    .location-home {
        width: 56px;
        height: 54px;
    }


    .location-current {
        padding: 0 18px;

        font-size: 15px;
    }

}



.sub_content{
    width:1300px; margin:0 auto; 
    border:0px solid red; 
    position: relative !important; min-height:500px;}


@media (max-width: 1299px) { 
.sub_content{width:100%;}
}

    /* =========================================
   LOCATION
========================================= */


/* =========================================
   LOCATION MENU
========================================= */

.location-menu {
    position: relative;

    flex: 1;
}


/* 현재 메뉴 버튼 */

.location-menu-btn {
    width: 100%;
    height: 65px;

    padding: 0 32px;

    border: 0;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-family: "Pretendard", sans-serif;

    font-size: 17px;
    font-weight: 500;

    letter-spacing: -0.5px;

    color: #222;

    text-align: left;
}


/* =========================================
   ARROW
========================================= */

.location-arrow {
    position: relative;

    width: 18px;
    height: 18px;

    margin-left: 20px;
}


/* 화살표 생성 */

.location-arrow::before,
.location-arrow::after {
    content: "";

    position: absolute;
    top: 8px;

    width: 11px;
    height: 2px;

    background: #081c30;

    transition: transform .3s ease;
}


.location-arrow::before {
    left: 0;

    transform: rotate(45deg);
}


.location-arrow::after {
    right: 0;

    transform: rotate(-45deg);
}


/* 열렸을 때 화살표 ↑ */

.location-menu.active .location-arrow::before {
    transform: rotate(-45deg);
}


.location-menu.active .location-arrow::after {
    transform: rotate(45deg);
}


/* =========================================
   DROPDOWN
========================================= */

.location-dropdown {
    position: absolute;

    top: 65px;
    left: 0;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;

    background: #fff;

    border-top: 1px solid #eee;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* OPEN */

.location-menu.active .location-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* 메뉴 각각 */

.location-dropdown li {
    border-bottom: 1px solid #eeeeee;
}


.location-dropdown li:last-child {
    border-bottom: 0;
}


.location-dropdown a {
    display: flex;
    align-items: center;

    min-height: 58px;

    padding: 0 32px;

    text-decoration: none;

    font-family: "Pretendard", sans-serif;

    font-size: 15px;
    font-weight: 400;

    letter-spacing: -0.4px;

    color: #555;

    background: #fff;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .25s ease;
}


/* HOVER */

.location-dropdown a:hover {
    padding-left: 38px;

    background: #0b2138;

    color: #fff;
}


/* 현재 페이지 */

.location-dropdown a.current {
    color: #b99455;

    font-weight: 600;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .sub-location {
        left: 20px;
        right: 20px;
        bottom: -27px;

        width: auto;
        height: 60px;

        transform: none;
    }


    .location-home {
        width: 65px;
        height: 60px;
    }


    .location-home svg {
        width: 18px;
        height: 18px;
    }


    .location-menu-btn {
        height: 60px;

        padding: 0 20px;

        font-size: 14px;
    }


    .location-dropdown {
        top: 60px;
    }


    .location-dropdown a {
        min-height: 52px;

        padding: 0 20px;

        font-size: 14px;
    }

}


/* ========================================
   한충호 법무사 소개
======================================== */
.hch-profile,
.hch-profile * {
    box-sizing: border-box;
}

.hch-profile {
    --hch-navy: #18263d;
    --hch-navy-dark: #101b2d;
    --hch-gold: #b89a67;
    --hch-gold-light: #d7c39e;
    --hch-text: #252b33;
    --hch-gray: #68717c;
    --hch-line: #e3e5e8;
    --hch-bg: #f5f4f1;

    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background:
        linear-gradient(
            135deg,
            rgba(184, 154, 103, 0.05) 0%,
            rgba(184, 154, 103, 0) 35%
        ),
        #ffffff;
    color: var(--hch-text);
    font-family:
        "Pretendard",
        "Noto Sans KR",
        sans-serif;
}

.hch-profile::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(184, 154, 103, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.hch-profile__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* 제목 */
.hch-profile__heading {
    margin-bottom: 60px;
    text-align: center;
}

.hch-profile__eyebrow {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--hch-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hch-profile__title {
    margin: 0;
    color: var(--hch-navy);
    font-size: clamp(31px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.045em;
}

.hch-profile__title strong {
    color: var(--hch-navy-dark);
    font-weight: 700;
}

.hch-profile__description {
    margin: 25px 0 0;
    color: var(--hch-gray);
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

/* 콘텐츠 배치 */
.hch-profile__content {
    display: grid;
    grid-template-columns: minmax(350px, 0.82fr) minmax(500px, 1.18fr);
    gap: 65px;
    align-items: start;
}

/* 인물 사진 */
.hch-profile__visual {
    position: relative;
}

.hch-profile__photo {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    background: #e8e8e6;
}

.hch-profile__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(16, 27, 45, 0.4),
        rgba(16, 27, 45, 0) 48%
    );
    pointer-events: none;
}

.hch-profile__photo img {
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center top;
}

/* 이름 */
.hch-profile__name-box {
    position: absolute;
    right: 0;
    bottom: 105px;
    z-index: 2;
    width: 230px;
    padding: 25px 29px;
    background: rgba(24, 38, 61, 0.94);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.hch-profile__name-box p {
    margin: 0 0 5px;
    color: var(--hch-gold-light);
    font-size: 14px;
    font-weight: 600;
}

.hch-profile__name-box h3 {
    margin: 0;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hch-profile__name-box span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 0.15em;
}

/* 경력 숫자 */
.hch-profile__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 105px;
    padding: 18px;
    background: var(--hch-bg);
}

.hch-profile__summary-item {
    flex: 1;
    text-align: center;
}

.hch-profile__summary-item strong {
    display: block;
    color: var(--hch-navy);
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
}

.hch-profile__summary-item span {
    display: block;
    margin-top: 10px;
    color: var(--hch-gray);
    font-size: 15px;
}

.hch-profile__summary-line {
    width: 1px;
    height: 42px;
    background: #d8d6d0;
}

/* 정보 카드 */
.hch-profile__info {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hch-profile__card {
    padding: 38px 42px;
    border: 1px solid var(--hch-line);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 29, 46, 0.06);
}

.hch-profile__card-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--hch-line);
}

.hch-profile__number {
    color: var(--hch-gold);
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1;
}

.hch-profile__card-title h3 {
    margin: 0;
    color: var(--hch-navy);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hch-profile__card-title p {
    margin: 6px 0 0;
    color: #9b9fa5;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* 약력 목록 */
.hch-profile__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hch-profile__list li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
}

.hch-profile__list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 25px;
    border: 1px solid rgba(184, 154, 103, 0.55);
    border-radius: 20px;
    color: #927447;
    font-size: 14px;
    font-weight: 700;
}

.hch-profile__list li p {
    margin: 0;
    color: #3f4650;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.025em;
}

/* 담당 업무 */
.hch-profile__card--work {
    background: var(--hch-navy);
}

.hch-profile__card--work .hch-profile__card-title {
    border-bottom-color: rgba(255, 255, 255, 0.13);
}

.hch-profile__card--work .hch-profile__card-title h3 {
    color: #ffffff;
}

.hch-profile__card--work .hch-profile__card-title p {
    color: rgba(255, 255, 255, 0.38);
}

.hch-profile__work-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hch-profile__work-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 63px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.045);
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.hch-profile__work-item:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 195, 158, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.hch-profile__work-number {
    color: var(--hch-gold-light);
    font-family: Georgia, serif;
    font-size: 16px;
}

.hch-profile__work-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
}

/* 무료상담 */
.hch-profile__consult {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding: 30px 38px;
    border-top: 2px solid var(--hch-gold);
    background: var(--hch-bg);
}

.hch-profile__consult-text span {
    color: var(--hch-gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hch-profile__consult-text p {
    margin: 8px 0 0;
    color: var(--hch-navy);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hch-profile__consult-button {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 270px;
    padding: 18px 24px;
    background: var(--hch-navy);
    color: #ffffff;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.hch-profile__consult-button:hover {
    transform: translateY(-2px);
    background: var(--hch-gold);
}

.hch-profile__consult-button span {
    font-size: 13px;
    opacity: 0.7;
}

.hch-profile__consult-button strong {
    font-size: 21px;
    letter-spacing: 0.02em;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .hch-profile {
        padding: 90px 24px;
    }

    .hch-profile__content {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 35px;
    }

    .hch-profile__card {
        padding: 32px 28px;
    }

    .hch-profile__work-list {
        grid-template-columns: 1fr;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .hch-profile {
        padding: 65px 18px;
    }

    .hch-profile__heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .hch-profile__eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .hch-profile__title {
        font-size: 28px;
        line-height: 1.45;
    }

    .hch-profile__description {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.8;
    }

    .hch-profile__description br {
        display: none;
    }

    .hch-profile__content {
        display: block;
    }

    .hch-profile__visual {
        margin-bottom: 25px;
    }

    .hch-profile__photo,
    .hch-profile__photo img {
        height: 460px;
        min-height: 460px;
    }

    .hch-profile__name-box {
        bottom: 100px;
        width: 190px;
        padding: 20px 23px;
    }

    .hch-profile__name-box h3 {
        font-size: 27px;
    }

    .hch-profile__summary-item strong {
        font-size: 25px;
    }

    .hch-profile__card {
        padding: 27px 20px;
    }

    .hch-profile__card-title {
        gap: 14px;
        margin-bottom: 21px;
        padding-bottom: 18px;
    }

    .hch-profile__number {
        font-size: 29px;
    }

    .hch-profile__card-title h3 {
        font-size: 20px;
    }

    .hch-profile__list li {
        grid-template-columns: 60px 1fr;
        gap: 10px;
        padding: 9px 0;
    }

    .hch-profile__list li span {
        width: 50px;
        font-size: 10px;
    }

    .hch-profile__list li p {
        font-size: 14px;
    }

    .hch-profile__work-list {
        grid-template-columns: 1fr;
    }

    .hch-profile__consult {
        display: block;
        margin-top: 35px;
        padding: 25px 20px;
    }

    .hch-profile__consult-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hch-profile__consult-button {
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        margin-top: 20px;
    }
}

/* 작은 모바일 */
@media (max-width: 420px) {
    .hch-profile__photo,
    .hch-profile__photo img {
        height: 410px;
        min-height: 410px;
    }

    .hch-profile__summary {
        padding-right: 8px;
        padding-left: 8px;
    }

    .hch-profile__summary-item span {
        font-size: 12px;
    }

    .hch-profile__consult-button strong {
        font-size: 18px;
    }
}




/* =========================================================
   한충호법무사 개인회생
========================================================= */

.hch-rehab {
    --hch-navy: #14243a;
    --hch-navy-dark: #0d1929;
    --hch-blue: #253e5f;
    --hch-gold: #b79b6c;
    --hch-gold-light: #d5c3a3;
    --hch-gray: #666;
    --hch-light: #f6f7f9;
    --hch-border: #e3e6ea;

    width: 100%;
    color: #222;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    word-break: keep-all;
    line-height: 1.7;
}

.hch-rehab *,
.hch-rehab *::before,
.hch-rehab *::after {
    box-sizing: border-box;
}

.hch-rehab-container {
    width: calc(100% - 60px);
    max-width: 1300px;
    margin: 0 auto;
}

.hch-rehab a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   VISUAL
========================================================= */

.hch-rehab-visual {
    position: relative;
    height: 460px;
    overflow: hidden;
    background: #182a42;
}

.hch-rehab-visual-bg {
    position: absolute;
    inset: 0;

    /*
       배경이미지 사용시 아래 주석 해제
       background-image:
       linear-gradient(
          90deg,
          rgba(11,25,42,.90) 0%,
          rgba(16,35,57,.72) 50%,
          rgba(16,35,57,.30) 100%
       ),
       url('../images/sub/recovery_bg.jpg');
    */

    background:
        radial-gradient(circle at 75% 50%, rgba(183,155,108,.20), transparent 35%),
        linear-gradient(110deg, #101e31 0%, #1b324e 65%, #294663 100%);
}

.hch-rehab-visual-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .15;

    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);

    background-size: 60px 60px;
}

.hch-rehab-visual-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hch-rehab-visual-text {
    padding-top: 20px;
    color: #fff;
}

.hch-rehab-eng {
    display: block;
    margin-bottom: 12px;
    color: var(--hch-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hch-rehab-visual h1 {
    margin: 0 0 24px;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.hch-rehab-visual-copy {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.55;
    font-weight: 300;
}

.hch-rehab-visual-copy strong {
    font-weight: 600;
}

.hch-rehab-visual-desc {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ANCHOR NAV
========================================================= */

.hch-rehab-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    height: 72px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.hch-rehab-nav-inner {
    width: calc(100% - 60px);
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: stretch;
}

.hch-rehab-nav a {
    position: relative;
    min-width: 175px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    color: #555;
    font-size: 17.5px;
    font-weight: 500;

    transition: .3s;
}

.hch-rehab-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;

    width: 0;
    height: 3px;

    background: var(--hch-gold);
    transform: translateX(-50%);
    transition: .3s;
}

.hch-rehab-nav a:hover,
.hch-rehab-nav a.active {
    color: var(--hch-navy);
    font-weight: 700;
}

.hch-rehab-nav a:hover::after,
.hch-rehab-nav a.active::after {
    width: 100%;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.hch-rehab-section {
    padding: 130px 0;
    scroll-margin-top: 90px;
}

.hch-rehab-title {
    text-align: center;
    margin-bottom: 70px;
}

.hch-rehab-title .num {
    display: block;
    margin-bottom: 5px;

    color: var(--hch-gold);
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 600;
}

.hch-rehab-title .eng {
    display: block;
    margin-bottom: 20px;

    color: #999;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.hch-rehab-title h2 {
    margin: 0 0 22px;
    color: var(--hch-navy);
    font-size: 45px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.25;
}

.hch-rehab-title p {
    margin: 0;
    color: #777;
    font-size: 17px;
    line-height: 1.8;
}

.hch-rehab-title.white h2 {
    color: #fff;
}

.hch-rehab-title.white p {
    color: rgba(255,255,255,.62);
}

.hch-rehab-title.white .eng {
    color: rgba(255,255,255,.45);
}


/* =========================================================
   01 ABOUT
========================================================= */

.hch-rehab-about {
    background: #fff;
}

.hch-about-content {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.hch-small-title {
    display: inline-block;
    margin-bottom: 22px;

    color: var(--hch-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hch-about-main h3 {
    margin: 0 0 25px;
    color: #222;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -1px;
}

.hch-about-main h3 strong {
    color: var(--hch-navy);
    font-weight: 900;
}

.hch-about-main p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.9;
}

.hch-about-point {
    border-top: 2px solid var(--hch-navy);
}

.point-item {
    position: relative;
    padding: 28px 5px;
    border-bottom: 1px solid var(--hch-border);
}

.point-item .point-num {
    display: block;
    margin-bottom: 5px;

    color: var(--hch-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.point-item strong {
    display: block;
    margin-bottom: 8px;

    color: var(--hch-navy);
    font-size: 22px;
}

.point-item p {
    margin: 0;
    padding-right: 30px;

    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

.hch-about-message {
    position: relative;
    margin-top: 80px;
    padding: 43px 50px;

    text-align: center;
    background: #f6f4ef;
    overflow: hidden;
}

.hch-about-message .quote {
    position: absolute;
    left: 30px;
    top: 2px;

    color: rgba(183,155,108,.18);
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
}

.hch-about-message p {
    position: relative;
    z-index: 2;

    margin: 0;
    color: #555;
    font-size: 22px;
    line-height: 1.8;
}

.hch-about-message strong {
    color: var(--hch-navy);
}


/* =========================================================
   02 QUALIFICATION
========================================================= */

.hch-rehab-qualification {
    background: var(--hch-light);
}

.hch-qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hch-qualification-card {
    position: relative;
    min-height: 370px;
    padding: 38px 30px;

    background: #fff;
    border: 1px solid #e5e7eb;

    transition: transform .35s,
                box-shadow .35s,
                border-color .35s;
}

.hch-qualification-card:hover {
    transform: translateY(-8px);
    border-color: var(--hch-gold);
    box-shadow: 0 20px 40px rgba(16,36,58,.09);
}

.hch-qualification-card .card-num {
    position: absolute;
    right: 23px;
    top: 21px;

    color: #d9dde2;
    font-family: Georgia, serif;
    font-size: 17px;
}

.hch-qualification-card .card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #f3f0e9;

    color: var(--hch-gold);
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 600;
}

.hch-qualification-card h3 {
    margin: 0 0 18px;
    color: var(--hch-navy);
    font-size: 22px;
    line-height: 1.4; font-weight:800;
}

.hch-qualification-card p {
    margin: 0 0 25px;
    color: #777;
    font-size: 16px;
    line-height: 1.6;
}

.hch-qualification-card .card-keyword {
    padding-top: 17px;
    border-top: 1px solid #eee;

    color: #8a7655;
    font-size: 15px;
    font-weight: 600;
}

.hch-notice-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;

    margin-top: 45px;
    padding: 30px 35px;

    background: #fff;
    border-left: 3px solid var(--hch-gold);
}

.hch-notice-box .notice-icon {
    flex: none;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--hch-navy);
    color: #fff;

    font-family: Georgia, serif;
    font-weight: 700;
}

.hch-notice-box strong {
    display: block;
    margin-bottom: 6px;

    color: var(--hch-navy);
    font-size: 18px;
}

.hch-notice-box p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   03 PROCESS
========================================================= */

.hch-rehab-process {
    position: relative;
    background: var(--hch-navy-dark);
}

.hch-rehab-process::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 90% 10%, rgba(183,155,108,.12), transparent 25%),
        radial-gradient(circle at 10% 85%, rgba(84,116,150,.14), transparent 28%);
}

.hch-rehab-process .hch-rehab-container {
    position: relative;
    z-index: 2;
}

.hch-process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.15);
    border-left: 1px solid rgba(255,255,255,.15);
}

.hch-process-item {
    position: relative;
    min-height: 275px;
    padding: 34px 28px;

    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);

    transition: .3s;
}

.hch-process-item:hover {
    background: rgba(255,255,255,.05);
}

.hch-process-item .step {
    display: block;
    margin-bottom: 38px;

    color: var(--hch-gold-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hch-process-item .process-num {
    position: absolute;
    right: 25px;
    top: 25px;

    color: rgba(255,255,255,.07);
    font-family: Georgia, serif;
    font-size: 65px;
    font-weight: 600;
    line-height: 1;
}

.process-text {
    position: relative;
    z-index: 2;
}

.process-text h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    font-weight:600;
}

.process-text p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 1.8;
   letter-spacing: 0px;
}

.hch-process-caption {
    margin: 30px 0 0;
    color: rgba(255,255,255,.38);
    font-size: 14px;
    text-align: center;
}


/* =========================================================
   04 DOCUMENT
========================================================= */

.hch-rehab-documents {
    background: #fff;
}

.hch-document-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hch-document-card {
    padding: 35px 40px;
    background: #fafafa;
    border: 1px solid #ededed;
}

.document-head {
    display: flex;
    align-items: center;
    gap: 16px;

    padding-bottom: 23px;
    margin-bottom: 23px;

    border-bottom: 1px solid #e2e2e2;
}

.document-head span {
    color: var(--hch-gold);
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 600;
}

.document-head h3 {
    margin: 0;
    color: var(--hch-navy);
    font-size: 22px;
}

.hch-document-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hch-document-card li {
    position: relative;
    padding: 7px 0 7px 18px;

    color: #666;
    font-size: 17px;
}

.hch-document-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;

    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: var(--hch-gold);
}

.hch-document-info {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    margin-top: 50px;
    padding: 47px 55px;

    background: var(--hch-navy);
}

.hch-document-info .info-title {
    padding-right: 50px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.hch-document-info .info-title span {
    display: block;
    margin-bottom: 12px;

    color: var(--hch-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hch-document-info .info-title h3 {
    margin: 0;

    color: #fff;
    font-size: 23px;
    line-height: 1.55;
}

.hch-document-info .info-text {
    padding-left: 50px;
}

.hch-document-info .info-text p {
    margin: 0 0 14px;

    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.85;
}

.hch-document-info .info-text strong {
    color: var(--hch-gold-light);
    font-size: 17px;
}


/* =========================================================
   05 PROTECTION
========================================================= */

.hch-rehab-protection {
    background: #f5f3ef;
}

.hch-protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hch-protection-card {
    position: relative;
    min-height: 440px;
    padding: 50px;

    background: #fff;
    overflow: hidden;
}

.hch-protection-card::after {
    content: '';
    position: absolute;
    right: -75px;
    bottom: -75px;

    width: 210px;
    height: 210px;

    border: 1px solid rgba(183,155,108,.18);
    border-radius: 50%;
}

.hch-protection-card .protection-label {
    margin-bottom: 42px;

    color: var(--hch-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hch-protection-card .protection-num {
    position: absolute;
    right: 40px;
    top: 27px;

    color: #ece8df;
    font-family: Georgia, serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
}

.hch-protection-card h3 {
    margin: 0 0 15px;

    color: var(--hch-navy);
    font-size: 33px;
    letter-spacing: -1px;
}

.hch-protection-card > strong {
    display: block;
    margin-bottom: 25px;

    color: #333;
    font-size: 20px;
    line-height: 1.5;
}

.hch-protection-card > p {
    max-width: 480px;
    margin: 0;

    color: #777;
    font-size: 16px;
    line-height: 1.85;
}

.protection-keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 30px;
}

.protection-keyword span {
    padding: 7px 14px;

    border: 1px solid #e3ded4;
    border-radius: 30px;

    color: #7c6847;
    font-size: 14px;
}

.hch-protection-notice {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 30px;
    padding: 35px 40px;

    background: #fff;
    border: 1px solid #e4ded3;
}

.hch-protection-notice .notice-mark {
    flex: none;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--hch-gold);

    color: #fff;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 600;
}

.hch-protection-notice h3 {
    margin: 0 0 5px;
    color: var(--hch-navy);
    font-size: 18px;
}

.hch-protection-notice p {
    margin: 0;
    color: #777;
    font-size: 16px;
}

.hch-protection-notice strong {
    color: #333;
}


/* =========================================================
   CONSULT
========================================================= */

.hch-rehab-consult {
    padding: 105px 0 0;
    background: #fff;
}

.hch-consult-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;

    padding-bottom: 80px;
}

.career-small {
    display: block;
    margin-bottom: 18px;

    color: var(--hch-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hch-consult-career h2 {
    margin: 0 0 25px;

    color: var(--hch-navy);
    font-size: 37px;
    font-weight: 400;
    line-height: 1.45;
}

.hch-consult-career h2 strong {
    font-weight: 800;
}

.hch-consult-career p {
    max-width: 580px;
    margin: 0;

    color: #777;
    font-size: 17px;
    line-height: 1.85;
}

.hch-consult-number {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 45px;
}

.career-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.career-box strong {
    color: var(--hch-navy);
    font-family: Georgia, serif;
    font-size: 63px;
    line-height: 1;
}

.career-box strong small {
    margin-left: 3px;

    color: var(--hch-gold);
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
}

.career-box span {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.career-line {
    width: 1px;
    height: 70px;
    background: #ddd;
}

.hch-consult-bottom {
    min-height: 180px;
    padding: 40px 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--hch-navy);
}

.hch-consult-bottom > div > span {
    display: block;
    margin-bottom: 8px;

    color: var(--hch-gold-light);
    font-size: 14px;
}

.hch-consult-bottom > div > strong {
    color: #fff;
    font-size: 23px;
    line-height: 1.45;
}

.hch-consult-btn {
    width: 250px;
    height: 66px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--hch-gold);
    color: #fff !important;

    transition: .3s;
}

.hch-consult-btn span {
    font-size: 16px;
    font-weight: 600;
}

.hch-consult-btn b {
    font-size: 22px;
    font-weight: 300;

    transition: transform .3s;
}

.hch-consult-btn:hover {
    background: #a2875a;
}

.hch-consult-btn:hover b {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hch-about-content {
        gap: 45px;
    }

    .hch-qualification-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hch-process-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hch-rehab-nav a {
        min-width: 150px;
        padding: 0 15px;
        font-size: 14px;
    }

    .hch-consult-number {
        gap: 25px;
    }

    .career-box strong {
        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .pc-only {
        display: none;
    }

    .hch-rehab-container {
        width: calc(100% - 36px);
    }


    /* visual */

    .hch-rehab-visual {
        height: 400px;
    }

    .hch-rehab-eng {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hch-rehab-visual h1 {
        margin-bottom: 20px;
        font-size: 38px;
    }

    .hch-rehab-visual-copy {
        font-size: 20px;
    }

    .hch-rehab-visual-desc {
        font-size: 13px;
    }

    .hch-rehab-visual-desc br {
        display: none;
    }


    /* nav */

    .hch-rehab-nav {
        height: 59px;
        overflow: hidden;
    }

    .hch-rehab-nav-inner {
        width: 100%;
        justify-content: flex-start;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .hch-rehab-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .hch-rehab-nav a {
        flex: none;

        min-width: auto;
        padding: 0 20px;

        white-space: nowrap;
        font-size: 13px;
    }


    /* common */

    .hch-rehab-section {
        padding: 85px 0;
    }

    .hch-rehab-title {
        margin-bottom: 45px;
    }

    .hch-rehab-title .num {
        font-size: 15px;
    }

    .hch-rehab-title .eng {
        margin-bottom: 13px;
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .hch-rehab-title h2 {
        margin-bottom: 15px;
        font-size: 30px;
    }

    .hch-rehab-title p {
        font-size: 14px;
    }


    /* about */

    .hch-about-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hch-about-main h3 {
        font-size: 23px;
    }

    .hch-about-main p {
        font-size: 14px;
    }

    .hch-about-message {
        margin-top: 45px;
        padding: 35px 22px;
    }

    .hch-about-message p {
        font-size: 16px;
    }


    /* qualification */

    .hch-qualification-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .hch-qualification-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .hch-qualification-card .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 23px;
    }

    .hch-notice-box {
        gap: 15px;
        padding: 25px 20px;
    }


    /* process */

    .hch-process-list {
        grid-template-columns: 1fr;
    }

    .hch-process-item {
        min-height: 210px;
        padding: 29px 25px;
    }

    .hch-process-item .step {
        margin-bottom: 30px;
    }


    /* documents */

    .hch-document-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hch-document-card {
        padding: 28px 25px;
    }

    .hch-document-info {
        grid-template-columns: 1fr;

        margin-top: 30px;
        padding: 35px 25px;
    }

    .hch-document-info .info-title {
        padding: 0 0 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .hch-document-info .info-text {
        padding: 25px 0 0;
    }


    /* protection */

    .hch-protection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hch-protection-card {
        min-height: auto;
        padding: 37px 25px;
    }

    .hch-protection-card .protection-label {
        margin-bottom: 30px;
    }

    .hch-protection-card .protection-num {
        right: 20px;
        font-size: 55px;
    }

    .hch-protection-card h3 {
        font-size: 27px;
    }

    .hch-protection-card > strong {
        font-size: 18px;
    }

    .hch-protection-notice {
        align-items: flex-start;
        gap: 15px;

        padding: 25px 20px;
    }

    .hch-protection-notice .notice-mark {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }


    /* consult */

    .hch-rehab-consult {
        padding-top: 75px;
    }

    .hch-consult-inner {
        grid-template-columns: 1fr;
        gap: 45px;

        padding-bottom: 55px;
    }

    .hch-consult-career h2 {
        font-size: 28px;
    }

    .hch-consult-number {
        justify-content: flex-start;
        gap: 20px;
    }

    .career-box {
        gap: 8px;
    }

    .career-box strong {
        font-size: 43px;
    }

    .career-box span {
        font-size: 11px;
    }

    .career-line {
        height: 55px;
    }

    .hch-consult-bottom {
        margin-left: -18px;
        margin-right: -18px;
        padding: 30px 22px;

        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hch-consult-bottom > div > strong {
        font-size: 20px;
    }

    .hch-consult-btn {
        width: 100%;
        height: 60px;
    }

}






/* =========================================================
   한충호법무사 파산면책
   기존 개인회생 CSS 하단에 추가
========================================================= */


/* 비주얼 배경을 개인회생과 약간 다르게 */
.hch-bankruptcy .hch-bankruptcy-visual-bg {
    background:
        radial-gradient(
            circle at 76% 45%,
            rgba(183,155,108,.20),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            #101c2b 0%,
            #1b3048 60%,
            #37485a 100%
        );
}



/* =========================================================
   면책불허가 사유
========================================================= */

.hch-bankruptcy-caution {
    margin-top: 70px;
}

.hch-bankruptcy-caution-title {
    margin-bottom: 35px;
    text-align: center;
}

.hch-bankruptcy-caution-title > span {
    display: block;
    margin-bottom: 10px;

    color: var(--hch-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hch-bankruptcy-caution-title h3 {
    margin: 0 0 15px;

    color: var(--hch-navy);
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hch-bankruptcy-caution-title p {
    margin: 0;

    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


.hch-bankruptcy-caution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hch-bankruptcy-caution-item {
    position: relative;
    min-height: 230px;
    padding: 32px 27px;

    background: #fff;
    border: 1px solid #e5dfd5;

    transition:
        transform .3s,
        border-color .3s,
        box-shadow .3s;
}

.hch-bankruptcy-caution-item:hover {
    transform: translateY(-5px);

    border-color: var(--hch-gold);

    box-shadow:
        0 15px 35px rgba(20,36,58,.07);
}

.hch-bankruptcy-caution-item > span {
    display: block;
    margin-bottom: 22px;

    color: var(--hch-gold);
    font-family: Georgia, serif;
    font-size: 16px;
}

.hch-bankruptcy-caution-item strong {
    display: block;
    margin-bottom: 13px;

    color: var(--hch-navy);
    font-size: 20px;
    font-weight: 800;
}

.hch-bankruptcy-caution-item p {
    margin: 0;

    color: #777;
    font-size: 15px;
    line-height: 1.7;
}



/* =========================================================
   비면책채권
========================================================= */

.hch-bankruptcy-nondischarge {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    margin-top: 30px;
    padding: 48px 55px;

    background: var(--hch-navy);
}

.hch-bankruptcy-nondischarge-title {
    padding-right: 50px;

    border-right:
        1px solid rgba(255,255,255,.15);
}

.hch-bankruptcy-nondischarge-title > span {
    display: block;
    margin-bottom: 12px;

    color: var(--hch-gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hch-bankruptcy-nondischarge-title h3 {
    margin: 0;

    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.55;
}

.hch-bankruptcy-nondischarge-content {
    padding-left: 50px;
}

.hch-bankruptcy-nondischarge-content > p {
    margin: 0 0 20px;

    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.8;
}


.hch-bankruptcy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hch-bankruptcy-tags span {
    padding: 8px 14px;

    border:
        1px solid rgba(213,195,163,.38);

    border-radius: 30px;

    color: var(--hch-gold-light);
    font-size: 14px;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hch-bankruptcy-caution-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hch-bankruptcy-caution {
        margin-top: 50px;
    }

    .hch-bankruptcy-caution-title {
        margin-bottom: 27px;
    }

    .hch-bankruptcy-caution-title h3 {
        font-size: 25px;
    }

    .hch-bankruptcy-caution-title p {
        font-size: 14px;
    }


    .hch-bankruptcy-caution-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .hch-bankruptcy-caution-item {
        min-height: auto;
        padding: 27px 23px;
    }

    .hch-bankruptcy-caution-item > span {
        margin-bottom: 15px;
    }

    .hch-bankruptcy-caution-item strong {
        font-size: 18px;
    }

    .hch-bankruptcy-caution-item p {
        font-size: 14px;
    }


    .hch-bankruptcy-nondischarge {
        grid-template-columns: 1fr;

        padding: 35px 25px;
    }

    .hch-bankruptcy-nondischarge-title {
        padding: 0 0 25px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.15);
    }

    .hch-bankruptcy-nondischarge-title h3 {
        font-size: 21px;
    }

    .hch-bankruptcy-nondischarge-content {
        padding: 25px 0 0;
    }

    .hch-bankruptcy-nondischarge-content > p {
        font-size: 14px;
    }

    .hch-bankruptcy-tags span {
        padding: 7px 12px;
        font-size: 12px;
    }

}



/* =========================================================
   HCH FAQ
========================================================= */

.hch-faq-section {
    width: 100%;
    padding: 120px 0px;
  
    box-sizing: border-box;
}

.hch-faq-inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* 제목 */
.hch-faq-heading {
    text-align: center;
    margin-bottom: 55px;
}

.hch-faq-small {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #a88955;
}

.hch-faq-heading h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    letter-spacing: -1.5px;
}

.hch-faq-heading p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #777;
    letter-spacing: -0.5px;
}

/* FAQ */
.hch-faq-list {
    border-top: 2px solid #252c38;
}

.hch-faq-item {
    border-bottom: 1px solid #ddd;
    background: #fff;
}

/* 질문 */
.hch-faq-question {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 86px;
    padding: 0 70px 0 30px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
    transition: background .25s ease;
}

.hch-faq-question:hover {
    background: #faf9f6;
}

.hch-faq-num {
    width: 65px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #b29360;
}

.hch-faq-title {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.5px;
}

/* + 버튼 */
.hch-faq-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
}

.hch-faq-icon::before,
.hch-faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #555;
    transition: all .3s ease;
}

.hch-faq-icon::before {
    width: 18px;
    height: 1px;
    transform: translate(-50%, -50%);
}

.hch-faq-icon::after {
    width: 1px;
    height: 18px;
    transform: translate(-50%, -50%);
}

/* 열린 상태 */
.hch-faq-item.active .hch-faq-question {
    background: #faf9f6;
}

.hch-faq-item.active .hch-faq-title {
    color: #8a6a38;
}

.hch-faq-item.active .hch-faq-icon::after {
    height: 0;
}

/* 답변 */
.hch-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f2f1ed;
    transition: max-height .4s ease;
}

.hch-faq-answer-inner {
    display: flex;
    padding: 30px 70px 32px 95px;
    box-sizing: border-box;
}

.hch-faq-a {
    flex-shrink: 0;
    width: 42px;
    font-size: 19px;
    line-height: 1.8;
    font-weight: 700;
    color: #a88955;
}

.hch-faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    letter-spacing: -0.4px;
    word-break: keep-all;
}

/* 하단 안내 */
.hch-faq-notice {
    margin-top: 25px;
    padding: 0 5px;
    font-size: 13px;
    line-height: 1.7;
    color: #999;
    letter-spacing: -0.3px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .hch-faq-section {
        padding: 75px 18px;
    }

    .hch-faq-heading {
        margin-bottom: 35px;
    }

    .hch-faq-small {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .hch-faq-heading h2 {
        font-size: 31px;
    }

    .hch-faq-heading p {
        font-size: 15px;
    }

    .hch-faq-question {
        min-height: 74px;
        padding: 17px 50px 17px 16px;
    }

    .hch-faq-num {
        display: none;
    }

    .hch-faq-title {
        font-size: 16px;
        line-height: 1.55;
        word-break: keep-all;
    }

    .hch-faq-icon {
        right: 17px;
        width: 20px;
        height: 20px;
    }

    .hch-faq-icon::before {
        width: 15px;
    }

    .hch-faq-icon::after {
        height: 15px;
    }

    .hch-faq-answer-inner {
        padding: 22px 20px;
    }

    .hch-faq-a {
        width: 32px;
        font-size: 17px;
    }

    .hch-faq-answer p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hch-faq-notice {
        font-size: 12px;
    }
}