/* ==================== 7. 상세 페이지 스타일 ==================== */
.detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.detail-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-text-white);
}

.detail-tagline {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.4;
    opacity: 0.9;
}

.detail-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
}

.detail-description h3,
.detail-description h4 {
    color: var(--color-text-white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.detail-description ul,
.detail-description ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.detail-description p {
    margin-bottom: 1.5rem;
}

.detail-description strong {
    color: var(--color-primary);
}

.detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

.meta-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* Privacy Page Titles */
.privacy-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Privacy Body Content */
.privacy-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
}

.privacy-body h1,
.privacy-body h2,
.privacy-body h3 {
    color: var(--color-text-white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-body p {
    margin-bottom: 1.5rem;
}

.privacy-body ul,
.privacy-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--color-text-gray);
}

.privacy-body strong {
    color: var(--color-primary);
}

.privacy-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}