@charset "utf-8";

/* ============================================================
   내용관리 (Content Skin) 공통 스타일
   ============================================================ */

/* ── 전체 래퍼 ── */
#ctt {
    max-width: 860px;
    margin: 48px auto;
    padding: 0 20px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

#ctt header {
    margin-bottom: 40px;
    text-align: center;
}

#ctt header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.8px;
}

/* ============================================================
   개인정보처리방침 (.privacy-wrap)
   ============================================================ */

.privacy-wrap {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* 히어로 헤더 */
.privacy-wrap__hero {
    background: linear-gradient(135deg, #6C5CE7 0%, #4834D4 100%);
    padding: 48px 48px 40px;
    color: #ffffff;
}

.privacy-wrap__hero-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.privacy-wrap__hero-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.6px;
}

.privacy-wrap__hero-date {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 본문 */
.privacy-wrap__body {
    padding: 48px;
}

/* 섹션 */
.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f1f3f5;
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.privacy-section__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6C5CE7, #4834D4);
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-section__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.4px;
    margin: 0;
}

.privacy-section__text {
    font-size: 15px;
    line-height: 1.85;
    color: #4a4a6a;
    margin: 0 0 14px;
}

.privacy-section__text:last-child {
    margin-bottom: 0;
}

/* 강조 박스 */
.privacy-highlight {
    background: #f8f7ff;
    border-left: 4px solid #6C5CE7;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 14px 0;
    font-size: 14px;
    line-height: 1.75;
    color: #4a4a6a;
}

.privacy-highlight strong {
    color: #6C5CE7;
    font-weight: 700;
}

/* 링크 */
.privacy-link {
    color: #6C5CE7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-link:hover {
    color: #4834D4;
}

/* 반응형 */
@media (max-width: 767px) {
    #ctt {
        margin: 24px auto;
        padding: 0 12px;
    }

    .privacy-wrap__hero {
        padding: 32px 24px 28px;
    }

    .privacy-wrap__hero-title {
        font-size: 20px;
    }

    .privacy-wrap__body {
        padding: 28px 20px;
    }

    .privacy-section {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .privacy-section__title {
        font-size: 16px;
    }
}
