/* feature0_auth_terms: 약관 뷰어 전용 스타일 */

.terms-card { max-width: 640px; }

.terms-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
    margin-bottom: 16px;
}
.terms-tab {
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all .15s;
}
.terms-tab:hover { background: #f3f4f6; }
.terms-tab.active {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
}

.terms-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 12px;
}
.terms-meta b { color: #374151; }

.terms-content {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.7;
    white-space: pre-wrap;
    max-height: 60vh;
    overflow-y: auto;
    padding: 16px 18px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.terms-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}
