/* BASIC css start */
/* BASIC css start */
/* BASIC css start */
/* BASIC css start */
/* BASIC css start */
/* =========================================
   이용안내 공통 및 PC 스타일
   ========================================= */
   .cateName {display: none;}
.info-guide-container {
    margin: 0 auto;
    padding: 48px 0 0;
    color: #000;
}

.info-guide-container .page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

/* 1. 상단 고객센터 배너 */
.contact-banner {
    display: flex;
    background-color: #FAFAFA;
    border-radius: 12px;
    padding: 50px 80px;
    margin-bottom: 64px;
    gap: 56px;
}

.contact-banner .contact-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

/* 두 박스 사이의 구분선 (선택사항, 디자인상 살짝 띄워진 느낌을 위해) */
.contact-banner .contact-box + .contact-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    /* background-color: #e5e5e5; */
}

.contact-box .icon-wrap {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.03); */
}

.contact-box .icon-wrap img {
    width: auto; /* 아이콘 크기에 맞게 조절하세요 */
}

.contact-box .label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.contact-box .highlight-text {
    font-size: 30px;
    font-weight: 600;
    color: var(--main-color); /* 듀오락 메인 보라색 */
    margin-bottom: 12px;
}
.contact-box .highlight-text.bold {font-weight: 700;}

.contact-box .desc {
    font-size: 16px;
    color: #888;
    line-height: 1.37;
    font-weight: 500;
}

/* 2. 안내 카드 영역 */
.info-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 80px 56px;
    margin-bottom: 64px;
    box-shadow: 4px 4px 20px 0px #00000014;
}

.info-section {
    position: relative;
}

.title-flex-box {
    display: flex;
    align-items: center;
    gap: 16px;
    /* margin-bottom: 20px; */
    position: relative;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 24px;
    width: 100%;
}
/* 타이틀에 단독으로 있을 때 마진 */
.info-section > .section-title {
}

.section-title .ico-check {
    width: auto; /* 체크 아이콘 크기 */
}

/* 리스트 스타일 (앞에 '-' 또는 '·' 기호 붙이기) */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 12px;
    font-size: 18px;
    color: #000;
    line-height: 1.77;
    word-break: keep-all;
}

.info-list li::before {
    content: '·'; /* 디자인에 따라 '-' 로 변경 가능 */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.info-list li strong {
    color: var(--main-color);
    font-weight: 700;
    background: #EEEDF4;
}

/* 구분선 */
.divider {
    border: 0;
    /* border-top: 1px solid #eaeaea; */
    margin: 28px 0;
}

/* 멤버십 버튼 */
.btn-membership {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    background: #fff;
    position: absolute;
    top: -3px;
    left: 305px;
    width: 155px;
    height: 36px;
    gap: 4px;
}

.guide-mo-only {
    display: none;
}


/* =========================================
   모바일 반응형 (1024px 이하)
   ========================================= */
@media screen and (max-width: 1024px) {
    .info-guide-container {
        padding: 24px 0 0;
    }

    .info-guide-container .page-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    /* 상단 배너 모바일 처리 (세로 정렬) */
    .contact-banner {
        flex-direction: column;
        padding: 24px;
        gap: 32px;
        margin-bottom: 24px;
    }

    .contact-banner .contact-box + .contact-box::before {
        display: none; /* 세로 정렬 시 가운데 구분선 숨김 */
    }

    .contact-banner .contact-box {
        justify-content: flex-start; /* 왼쪽 정렬 */
        gap: 16px;
    }

    .contact-box .icon-wrap {
        width: 56px;
        height: 56px;
    }

    .contact-box .icon-wrap img {
        width: 28px;
    }

    .contact-box .label {
        font-size: 13px;
    }

    .contact-box .highlight-text {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .contact-box .desc {
        font-size: 12px;
    }

    /* 카드 영역 모바일 처리 */
    .info-card {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-title .ico-check {
        width: 20px;
    }

    .info-list li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .divider {
        margin: 24px 0;
    }

    /* 멤버십 버튼 모바일 처리 (하단 풀사이즈 배치) */
    .guide-pc-only {
        display: none !important;
    }

    .guide-mo-only {
        display: flex !important;
        width: 100%;
        height: 42px;
        margin-top: 16px;
        font-size: 14px;
        position: static;
    }
}
/* BASIC css end */


/* BASIC css end */


/* BASIC css end */


/* BASIC css end */


/* BASIC css end */

