/**
 * 정책 페이지 공통 스타일 (개인정보처리방침, 이메일무단수집거부)
 */
.policy-page {
    background: #0a0a0a;
    padding: clamp(3rem, 8vw, 10rem) clamp(1.5rem, 3vw, 3rem);
    min-height: 60vh;
}

.policy-page__inner {
    max-width: 800px;
    margin: 0 auto;
}

.policy-page__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 2rem;
    line-height: 1.3;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.policy-page__content {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.policy-page__content > p:first-child {
    margin-top: 0;
}

.policy-page__content p {
    margin: 0 0 1rem;
}

.policy-page__content p:last-child {
    margin-bottom: 0;
}

.policy-page__content h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 2rem 0 0.75rem;
}

.policy-page__content h2:first-child {
    margin-top: 0;
}

.policy-page__content ul,
.policy-page__content ol {
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
}

.policy-page__content li {
    margin-bottom: 0.35rem;
}

.policy-page__content strong {
    font-weight: 700;
    color: #fff;
}

.policy-page__content a {
    color: var(--link-accent);
    text-decoration: underline;
}

.policy-page__content a:hover {
    color: rgba(107, 163, 232, 0.9);
}

.policy-page__meta {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.policy-page__meta p {
    margin: 0.25rem 0;
}

/* 라이트 모드 */
body.prototype-03.light-mode .policy-page {
    background: #fff;
}

body.prototype-03.light-mode .policy-page__title {
    color: #000;
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

body.prototype-03.light-mode .policy-page__content {
    color: rgba(0, 0, 0, 0.85);
}

body.prototype-03.light-mode .policy-page__content h2 {
    color: #000;
}

body.prototype-03.light-mode .policy-page__content strong {
    color: #000;
}

body.prototype-03.light-mode .policy-page__meta {
    border-top-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.6);
}
