/* 웰니스 설문 - 2026 Modern Design */
.wellness-form { max-width: 900px; margin: 0 auto; }

/* 헤더 */
.clinical-header {
    padding: 2rem 2.5rem; margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(27,77,142,0.03) 0%, rgba(52,152,219,0.03) 100%);
    border: 1px solid rgba(27,77,142,0.1);
}
.clinical-header-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.clinical-title { font-size: 1.5rem; font-weight: 800; margin: 0; color: var(--primary); letter-spacing: -0.02em; }
.clinical-subtitle { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.35rem; letter-spacing: 0.5px; font-weight: 500; }
.clinical-meta { text-align: right; font-size: 0.85rem; color: var(--gray-600); line-height: 1.8; }
.clinical-meta span { display: block; font-weight: 500; }
.clinical-notice {
    font-size: 0.88rem; color: var(--gray-700); line-height: 1.7; margin: 0;
    padding: 1rem 1.25rem; background: rgba(255,255,255,0.7); border-radius: 8px;
    border-left: 3px solid var(--primary); backdrop-filter: blur(10px);
}

/* 섹션 */
.survey-section {
    margin-bottom: 2.5rem; background: #fff; border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden; transition: all 0.3s ease;
}
.survey-section:hover { box-shadow: 0 4px 20px rgba(27,77,142,0.08); transform: translateY(-2px); }
.survey-section-head { padding: 1.5rem 2rem 1rem; background: linear-gradient(to right, rgba(27,77,142,0.02), transparent); }
.survey-section-title {
    font-size: 1.15rem; font-weight: 700; margin: 0 0 0.35rem;
    display: flex; align-items: center; gap: 0.5rem; color: var(--text);
}
.survey-section-desc { font-size: 0.85rem; color: var(--gray-600); margin: 0.35rem 0 0; font-weight: 500; }

/* 테이블 */
.survey-table { width: 100%; border-collapse: collapse; }
.survey-table thead th {
    padding: 0.85rem 0.5rem; text-align: center; font-size: 0.75rem; font-weight: 700;
    color: var(--gray-700); background: var(--gray-50); border-bottom: 2px solid var(--gray-200);
    letter-spacing: 0.02em;
}
.survey-table thead th small { display: block; font-weight: 500; margin-top: 3px; font-size: 0.68rem; color: var(--gray-500); }
.survey-q-col { text-align: left !important; padding-left: 2rem !important; font-weight: 600; }
.survey-scale-col { width: 76px; }
.survey-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: all 0.2s; }
.survey-table tbody tr:hover { background: rgba(27,77,142,0.025); }
td.survey-q-text { padding: 1.1rem 2rem; font-size: 0.92rem; line-height: 1.6; color: var(--gray-800); }
.survey-radio-cell { text-align: center; padding: 0.9rem 0.6rem; }
.survey-radio-wrap { cursor: pointer; display: inline-block; position: relative; }
.survey-radio-wrap input { display: none; }
.survey-radio-dot {
    display: inline-block; width: 20px; height: 20px; border-radius: 50%;
    border: 2.5px solid var(--gray-300); transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.survey-radio-wrap:hover .survey-radio-dot {
    border-color: var(--primary); background: rgba(27,77,142,0.08);
    transform: scale(1.1); box-shadow: 0 0 0 4px rgba(27,77,142,0.05);
}
.survey-radio-wrap input:checked + .survey-radio-dot {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary); box-shadow: inset 0 0 0 3px #fff, 0 2px 8px rgba(27,77,142,0.25);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .clinical-header { padding: 1.5rem; }
    .clinical-header-top { flex-direction: column; gap: 1rem; }
    .clinical-meta { text-align: left; }
    .survey-scale-col { width: 52px; }
    .survey-table thead th small { display: none; }
    td.survey-q-text { padding: 1rem 1.25rem; font-size: 0.88rem; }
    .survey-section { border-radius: 12px; margin-bottom: 1.5rem; }
}
