/**
 * 개인정보 처리방침 라벨링 스타일
 *
 * 개인정보보호위원회 2022년 3월 개정 지침 기반
 * @since 2026-02-05
 */

.privacy-labeling {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.dark .privacy-labeling {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: #334155;
}

.labeling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .labeling-grid {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .labeling-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.labeling-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 0;
}

@media (min-width: 640px) {
    .labeling-item {
        gap: 0.75rem;
        padding: 0.75rem;
    }
}

.dark .labeling-item {
    background: #1e293b;
    border-color: #334155;
}

.labeling-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.dark .labeling-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-color: #60a5fa;
}

.labeling-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .labeling-icon {
        width: 44px;
        height: 44px;
    }
}

.labeling-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.labeling-title {
    font-size: 0.625rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.0625rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .labeling-title {
        font-size: 0.75rem;
        margin-bottom: 0.125rem;
    }
}

.dark .labeling-title {
    color: #94a3b8;
}

.labeling-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.0625rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .labeling-value {
        font-size: 0.875rem;
        margin-bottom: 0.125rem;
    }
}

.dark .labeling-value {
    color: #f1f5f9;
}

.labeling-detail {
    font-size: 0.625rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .labeling-detail {
        font-size: 0.75rem;
    }
}

.dark .labeling-detail {
    color: #64748b;
}

.labeling-notice {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.625rem;
    color: #94a3b8;
}

@media (min-width: 640px) {
    .labeling-notice {
        margin-top: 1rem;
        font-size: 0.75rem;
    }
}

.dark .labeling-notice {
    color: #64748b;
}
