/**********************************************************
 * 0) CSS 변수 (단일 선언)
 **********************************************************/ :root {
    --brand: #2563eb;
    --brand-600: #2563eb;
    --brand-500: #3b82f6;
    --brand-400: #60a5fa;
    --ink: #0b1220;
    --muted: #6b7280;
    --bg: #f6f8fb;
    --card: #ffffff;
    --border: #e5e7eb;
    --ring: rgba(37, 99, 235, .35);
    --chip-ring: 0 0 0 0.2rem rgba(37, 99, 235, .15);
    --focus-ring: 0 0 0 0.3rem rgba(37, 99, 235, .28);
    --shadow-sm: 0 0.1rem 0.2rem rgba(16, 24, 40, .06);
    --shadow-md: 0 0.8rem 2.4rem rgba(2, 6, 23, .08);
    --shadow-lg: 0 1.6rem 4rem rgba(2, 6, 23, .12);
    --radius: 1.2rem;
    --radius-xl: 1.6rem;
    --chip-gap: 0.8rem;
    --chip-pad-v: 0.5rem;
    --chip-pad-h: 0.75rem;
    --step-outline: 0.2rem solid rgba(37, 99, 235, .12);
    --sticky-blur: saturate(140%) blur(6px);
    --transition-fast: .18s cubic-bezier(.22, .8, .34, 1);
    --transition-slow: .38s cubic-bezier(.22, .8, .34, 1);
    --container-max: 120rem;
    --safe-top: env(safe-area-inset-top, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
    --kendo-color-primary: #cce2ff !important;
}
/**********************************************************
 * 1) Reset & Base
 **********************************************************/
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background: var(--bg);
}
body {
    position: relative;
    top: 0 !important;
    word-break: keep-all;
    line-height: 1.5;
    color: var(--ink);
    font-family: 'Pretendard-Regular', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
    background: linear-gradient(180deg, #fafcff 0%, #f6f8fb 100%);
}
.hidden {
    display: none !important;
}
.muted {
    color: var(--muted);
}
.img {
    display: block;
}
.img img {
    width: 100%;
}
.bgImg {
    background: center/auto no-repeat;
}
/**********************************************************
 * 2) Typography
 **********************************************************/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Pretendard-Bold', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
    color: #333;
    font-weight: 700;
    line-height: 150%;
}
h1 {
    font-size: 4.8rem;
    letter-spacing: -0.3rem;
}
h2, h2.ui.header {
    font-size: 3.6rem;
    letter-spacing: -0.18rem;
}
h3, h3.ui.header {
    font-size: 3rem;
}
h4, h4.ui.header, h4.ui.header span {
    font-size: 2.7rem;
}
h5, h5.ui.header {
    font-size: 2.4rem;
}
h6, .report-card .tit {
    font-size: 2rem;
}
body, body p, body li, body dt, body a, body th, body td {
    font-family: 'Pretendard-Medium';
    font-size: 1.7rem;
    line-height: 150%;
}
.ui.form .field > label, .ui.form .grouped.fields > label, #globalProgress .label {
    font-family: 'Pretendard-Bold', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
}
.ui.form .muted {
    margin-top: .5rem;
    font-family: 'Pretendard-Regular';
    font-size: 1.4rem;
    line-height: 150%;
    font-weight: 400;
}
.ui.checkbox input.hidden + label {
    font-size: 1.6rem;
}
.bigP {
    font-size: 1.9rem;
}
.txtCenter {
    text-align: center;
}
.txtRight {
    text-align: right;
}
.txtLeft {
    text-align: left;
}
.blockCenter {
    margin: 0 auto;
}
.lightblueTxt {
    color: #4391ed;
}
.greyTxt {
    color: #999 !important;
}
.lightgreyTxt {
    color: #aaa;
}
.redTxt {
    color: #e2007e !important;
}
.blueTxt {
    color: #0066b3 !important;
}
.Myeongjo {
    font-family: 'Nanum Myeongjo';
}
.eng {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}
/**********************************************************
 * 3) 공통 레이아웃
 **********************************************************/
.page-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2.8rem 1.6rem calc(8rem + var(--safe-bottom));
}
.report-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2.8rem 1.6rem 6.4rem;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-first {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-align-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.inner1 {
    max-width: 172rem;
}
.inner2 {
    max-width: 150rem;
}
.inner3 {
    max-width: 128rem;
}
.actions-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.flex-center {
    justify-content: space-between;
}
.toolbar {
    position: sticky;
    bottom: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(.6rem);
    border: .1rem solid #e5e7eb;
    border-radius: 1.2rem;
    padding: 1rem;
    margin-top: .5rem;
}
/**********************************************************
 * 4) 카드/리포트/버튼
 **********************************************************/
.report-hero, .report-card {
    background: var(--card);
    border: none;
    border-radius: 1.2rem;
    padding: 4rem;
    box-shadow: var(--shadow-sm);
}
.report-hero {
    margin-bottom: 1.6rem;
}
.report-card {
    margin: 1.2rem 0;
}
.report-links a {
    word-break: break-all;
}
.report-links .ui.list {
    display: grid;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
}
.report-links .ui.list li, .report-card .ui.message {
    list-style: none;
    background: #f9fbff;
    border: .1rem solid #d6e4ff;
    border-radius: 1rem;
    padding: 2rem !important;
    box-shadow: 0 .2rem .6rem rgba(0, 0, 0, .05);
    transition: all .25s ease;
}
.report-card .ui.message {
    text-align: center;
    margin-top: 4rem;
}
.report-links .ui.list li:hover {
    background: #eef6ff;
    border-color: #0e6bf7;
    box-shadow: 0 .4rem 1rem rgba(14, 107, 247, .15);
}
.ui.button {
    font-size: 1.5rem;
    line-height: 140%;
    padding: .8rem 2rem;
    border-radius: 10px !important;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}
.ui.button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm) !important;
}
.ui.primary.button, .ui.primary.buttons .button {
    font-size: 1.7rem;
    padding: 1.5rem 4rem;
    border-radius: 99.9rem !important;
    background: linear-gradient(90deg, var(--brand-600), var(--brand-500)) !important;
    border: none !important;
    color: #fff !important;
}
.ui.primary.button:hover {
    filter: saturate(110%);
    box-shadow: var(--shadow-md) !important;
}
.ui.button.blue {
    background-color: #0066b3;
}
.ui.button.grey {
    background-color: #999;
}
/**********************************************************
 * 5) 단계/스텝/프로그레스
 **********************************************************/
.progress-sticky {
    position: sticky;
    top: calc(0rem + var(--safe-top));
    z-index: 60;
    backdrop-filter: var(--sticky-blur);
    -webkit-backdrop-filter: var(--sticky-blur);
    padding: 1rem 0 2rem;
    margin: 1rem 0 2rem;
    transition: all .3s ease; /* 부드럽게 전환 */
}

.progress-sticky.scrolled {
    padding:  1rem 2rem 2rem 2rem;
    background: #fff;
    border-bottom: .1rem solid #e5e7eb;
    box-shadow: 0 .6rem 1.6rem rgba(2, 6, 23, .06);
}

#globalProgress {
    border-radius: 1rem !important;
    box-shadow: inset 0 .1rem 0 rgba(255, 255, 255, .6);
}
#globalProgress .bar {
    background: linear-gradient(90deg, var(--brand-600), var(--brand-400)) !important;
    border-radius: 10px !important;
    transition: width var(--transition-slow), background var(--transition-fast);
}
#globalProgress .bar:before {
    display: none;
}
#globalProgress .label {
    font-weight: 600;
    color: #0f172a !important;
}
.ui.progress > .label #progressLabel {
    font-size: 1.4rem;
}
/* 스텝 */
.ui.steps {
    margin-bottom: 1.2rem;
}
.ui.steps .step {
    font-size: 1.4rem;
    padding: 2rem;
}
.ui.steps .step .title {
    font-family: 'Pretendard-Bold', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
}
.ui.steps .step .description {
    opacity: .8;
}
.ui.steps .step.active .title {
    color: #0e6bf7;
}
.ui.ordered.steps .step:before {
    font-family: 'Pretendard-Bold', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
    font-size: 2.7em;
    margin-right: 2rem;
}
.ui.ordered.steps .step.completed:before, .ui.steps .step.completed > .icon:before {
    color: #66a9f8;
}
/* 단계 페인 상태 */
/*.step-pane {
    transition: opacity var(--transition-fast), filter var(--transition-fast), transform var(--transition-fast);
    will-change: opacity, filter, transform;
}*/
.step-pane.is-dim {
    opacity: .5;
    filter: grayscale(.1);
}
.step-pane.is-active {
    opacity: 1;
    filter: none;
}
.ui.segment {
    margin:  0;
    padding: 4rem;
    border-radius: 1.2rem;
    border: none;
}
.ui.segment + .ui.segment {
    margin-top: 3rem;
}
.step-pane.is-dim .step-title {
    opacity: .8;
}
/**********************************************************
 * 6) 폼 & 드롭다운 & 체크박스
 **********************************************************/
.ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=file], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=text], .ui.form input[type=time], .ui.form input[type=url] {
    line-height: 140%;
    padding: 1rem;
    font-size: 1.7rem;
    background: #fff;
    border: .1rem solid rgba(34, 36, 38, .15);
    border-radius: .4rem;
}
.ui.selection.dropdown, .ui.dropdown > .text {
    font-size: 1.7rem;
    border-radius: .4rem;
}
.ui.dropdown .menu {
    z-index: 10000 !important;
}
.ui.dropdown .menu > .item {
    font-family: 'Pretendard-Regular';
    color: #787878;
    font-size: 1.6rem;
    padding: .78571429rem 1.14285714rem !important;
}
.ui.form .field + .field, .ui.form .field + .fields, .ui.form .fields + .field, .ui.form .fields + .fields, #sleep-12h + .fields, .ui.form .field + .female-only {
    margin-top: 4rem;
}
.ui.form .fields .field + .field, .ui.form .checkbox-grid .field + .field {
    margin-top: 0;
}
.ui.form label + input {
    margin-top: 1rem;
}
.ui.form .fields .field input[type="number"], .ui.form .fields .field input[type="text"] {
    min-height: 4.4rem;
}
.ui.checkbox input + label {
    padding: 1rem;
}
.ui.checkbox input.hidden + label {
    padding-left: 3.8rem;
}
.ui.radio.checkbox .box:before, .ui.radio.checkbox label:before, .ui.checkbox .box:before, .ui.checkbox label:before {
    width: 2.7rem;
    height: 2.7rem;
    top: .6rem;
}
.ui.checkbox .box:after, .ui.checkbox label:after {
    font-size: 2.2rem;
    top: 1rem;
    width: 2.7rem;
    height: 2.7rem;
}
.ui.radio.checkbox input:checked ~ .box:after, .ui.radio.checkbox input:checked ~ label:after {
    top: -0.2rem;
    left: -.8rem;
    width: 4.3rem;
    height: 4.3rem;
    background-color: #0e6bf7;
}
/* Kendo 체크박스 커스텀 */
.k-checkbox {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .3rem;
    margin-right: .2rem;
}
.k-checkbox::before {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2.5rem;
    background-color: #f26238;
}
/* 오토필 배경 */
.ui.form .field.field input:-webkit-autofill, .ui.form .field.field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 10rem #dbedef inset !important;
    box-shadow: 0 0 0 10rem #dbedef inset !important;
    border-color: #a7c8fa !important;
}
/* 접근성 포커스 */ :where(input, button, select, [tabindex]):focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .35);
    border-radius: 10px;
}
/**********************************************************
 * 7) 설문 카드(33문항) & 칩 옵션
 **********************************************************/
.q {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 4rem;
    margin: 2rem 0;
    background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.q + .q {
    margin-top:  4rem;
}
.q:hover {
    box-shadow: var(--shadow-md);
    border-color: #dbe1ea;
    transform: translateY(-1px);
}
.q .qdesc {
    margin: 1rem 0 2rem 0;
    color: #333;
}
.q .opts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.q .opts > li {
    padding: 0.5rem 1rem;
    border: 0.1rem solid var(--border);
    border-radius: 99.9rem;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: border-color var(--transition-fast), 
                box-shadow var(--transition-fast), 
                background var(--transition-fast), 
                transform var(--transition-fast);
}
.q .opts.img > li {
    padding: 0;
    border: 0.2rem solid var(--border);
    border-radius: 0.8rem;
    overflow:  hidden;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: border-color var(--transition-fast), 
                box-shadow var(--transition-fast), 
                background var(--transition-fast), 
                transform var(--transition-fast);
}

/* ✅ 이미지 추가형 옵션: li 안에 img 있을 경우 적용 */
.q .opts.img > li img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 24rem;
    transition: transform .3s ease, filter .3s ease;
}
.q .qdesc img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 24rem;
    margin:  1rem 0 2rem 0;
    border-radius:  0.8rem;
    transition: transform .3s ease, filter .3s ease;
}
/* hover 시 공통 효과 유지 */
.q .opts > li:hover {
    border-color: #cfd6e2;
    box-shadow: var(--chip-ring);
    background: #f9fbff;
    transform: translateY(-1px);
}

/* ✅ 이미지도 hover 시 확대 */
.q .opts > li:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* 선택 효과 */
.q .opts > li.selected {
    border-color: var(--brand-500);
    box-shadow: var(--chip-ring);
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    font-weight: 600;
}

/* ✅ 선택된 이미지 강조 */
.q .opts > li.selected img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.q .opts > li:focus {
    outline: none;
    box-shadow: var(--focus-ring);
}


.q .sub {
    margin-top: 3rem;
    /*padding-top: .75rem;
    border-top: 1px dashed #e5e7eb;*/
    animation: subReveal .22s ease-out both;
}
@keyframes subReveal {
    from {
        opacity: 0;
        transform: translateY(-2px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.q.locked {
    pointer-events: none;
    opacity: .5;
}
/*.q.active {
    outline: var(--step-outline);
    outline-offset: 4px;
}*/
/**********************************************************
 * 8) 그래픽/리스크 바
 **********************************************************/
.graphicsWrap {
    position: relative;
    width: 100%;
    max-width: 76rem;
    margin: 0 auto;
    padding: 2rem;
    height: auto;
}
#riskRadar {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
}
.risk-bars {
    max-width: 76rem;
    margin: 1rem auto 0;
}
.risk-bars .risk-row, .risk-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: .6rem 0;
}
.risk-label {
    width: 11rem;
    flex: 0 0 auto;
    color: #374151;
    font-weight: 600;
}
.risk-bar-wrap {
    flex: 1;
    height: 1rem;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}
.risk-bar {
    height: 100%;
    width: 0;
}
.risk-pct {
    width: 4.8rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: #374151;
}
/**********************************************************
 * 9) 리스트
 **********************************************************/
ul.num {
    list-style: decimal;
    padding-left: 2rem;
}
.dot li {
    position: relative;
    display: block;
    line-height: 140%;
    margin-bottom: .8rem;
    padding-left: 1.8rem;
    word-break: keep-all;
}
.dot.bigP li {
    font-size: 1.9rem;
    color: #333 !important;
}
.dot li:before {
    content: "";
    position: absolute;
    left: .4rem;
    top: .8rem;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: #999;
}
.bar li {
    position: relative;
    color: #787878;
    padding-left: 2rem;
    margin-bottom: .5rem;
}
.bar li:before {
    content: "";
    position: absolute;
    left: .3rem;
    top: 1.3rem;
    width: .7rem;
    height: .2rem;
    background: #999;
}
/**********************************************************
 * 10) 기타 벤더/그리드
 **********************************************************/
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem .8rem;
}
.ui.dropdown .menu {
    z-index: 10000 !important;
}
.ui.header > .icon {
    color: #66a9f8;
}
.brand.header {
    color: #1f2937;
}
/**********************************************************
 * 11) 모션 최소화
 **********************************************************/
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}


.ui.segment.step-pane .qnum {
    display:  inline-block;
    font-family: 'Pretendard-Bold';
    font-weight: 700;
    padding:  0.5rem 1.5rem;
    border-radius: 99.9rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff !important;
    text-align: center;
    margin-right:  1rem;
    font-size:  1.8rem;
    background-color: var(--brand);
}
pre.preview {
    font-family: 'Pretendard-Regular', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
    font-size: 1.4rem;
    background-color: #000;
    color: #fff;
    padding: 2rem 4rem;
    border-radius: 1.2rem;
}
summary {
    font-size: 1.4rem;
    margin-top: 1rem;
}
h4.ui.header .sub.header {
    font-size: 1.3rem;
}
h4.ui.header span,
.report-card .name,
.report-links .ui.list li a {
    color: var(--brand);
    font-weight: 700;
    font-family: 'Pretendard-Bold';
}
.report-links .ui.list li a {
    color: var(--brand);
    font-weight: 500;
    font-family: 'Pretendard-Medium';
    letter-spacing: 0;
}
.risk-bars {
    max-width: 76rem;
    margin: 1rem auto 3rem auto;
}
.report-card p + .report-links {
    margin-top: 3rem;
}
#lifeParaIntro + h5.ui.header,
#diseaseAdvice + h5.ui.header {
    margin-top: 4rem;
}
.report-card .tit {
    display: block;
    font-size:  2rem;
}
#bmiAdvice + #diseaseAdvice {
    margin-top: 2rem;
}

/**********************************************************
 * 12) 반응형
 **********************************************************/
@media (max-width:1199px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ui.form .two.fields > .field, .ui.form .two.fields > .fields {
        width: 100%;
        flex-wrap: wrap;
    }
    .ui.form .fields {
        flex-wrap: wrap;
    }
    .ui.step, .ui.steps .step {
        padding: 3rem 2rem;
    }
    .required.field + .required.field {
        margin-top: 4rem !important;
    }
}
@media (max-width:1023px) {
    .ui.steps .step .description {
        display: none;
    }
}
@media (max-width:767px) {
    h1 {
        font-size: 3.6rem;
        letter-spacing: -0.18rem;
    }
    h2, h2.ui.header {
        font-size: 3rem;
        letter-spacing: 0;
    }
    h3, h3.ui.header {
        font-size: 2.7rem;
    }
    h4, h4.ui.header, h4.ui.header span {
        font-size: 2.2rem;
    }
    h5, h5.ui.header {
        font-size: 1.9rem;
    }
    h6, .report-card .tit {
        font-size: 1.7rem;
    }
    body, body p, body li, body dt, body a, body th, body td {
        font-size: 1.4rem;
    }
    .ui.form .field > label, .ui.form .grouped.fields > label, .ui.checkbox input.hidden + label {
        font-size: 1.4rem;
    }
    .ui.form .muted {
        font-size: 1.2rem;
    }
    .bigP {
        font-size: 1.6rem;
    }
    .ui[class*="top attached"].segment {
        margin-top: 1rem;
        border-radius: .8rem .8rem 0 0;
        padding: 2rem;
        border: none;
    }
    .ui.bottom.attached.segment {
        padding: 2rem;
    }
    .actions-row > * {
        flex: 1 1 100%;
    }
    .toolbar .ui.button, .ui.huge.button {
        width: 100%;
    }
    .ui.steps:not(.unstackable) {
        flex-direction: row;
    }
    .ui.six.steps > .step {
        width: 16.666% !important;
        flex-wrap: nowrap !important;
    }
    .ui.ordered.steps .step:before {
        font-size: 2.4rem;
    }
    .ui.steps .step, .ui.steps .disabled.step, .ui.steps .active.step {
        padding: 1rem;
    }
    .ui.steps .step:after, .ui.steps .disabled.step:after, .ui.steps .active.step:after {
        display: block !important;
    }
    .ui.steps .step:last-child:after, .ui.steps .disabled.step:last-child:after, .ui.steps .active.step:last-child:after {
        display: none !important;
    }
    .ui.steps .step .title {
        font-size: 1.2rem;
    }
    .ui.form .field + .field, .ui.form .field + .fields, .ui.form .fields + .field, .ui.form .fields + .fields, #sleep-12h + .fields, .ui.form .field + .female-only {
        margin-top: 3rem;
    }
    .ui.form .fields .field + .field {
        margin-top: .5rem;
    }
    .required.field + .required.field {
        margin-top: 3rem !important;
    }
    .ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=file], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=text], .ui.form input[type=time], .ui.form input[type=url] {
        padding: .7rem;
        font-size: 1.5rem;
    }
    input::placeholder, textarea::placeholder {
        font-size: 1.4rem;
    }
    .ui.selection.dropdown,
    .ui.dropdown > .text {
        font-size: 1.5rem;
    }
    .ui.dropdown .menu > .item {
        font-size: 1.4rem;
    }
    .actions-row .ui.button, .report-card .ui.button {
        font-size: 1.5rem;
        padding: 1.2rem 2.5rem;
        border-radius: .4rem;
    }
    .ui.checkbox input.hidden + label {
        padding-left: 3.2rem;
    }
    .ui.radio.checkbox .box:before, .ui.radio.checkbox label:before, .ui.checkbox .box:before, .ui.checkbox label:before {
        width: 2.2rem;
        height: 2.2rem;
    }
    .ui.radio.checkbox input:checked ~ .box:after, .ui.radio.checkbox input:checked ~ label:after {
        top: .2rem;
        left: -.4rem;
        width: 3rem;
        height: 3rem;
    }
    .page-wrap {
        padding: 2rem;
    }
    .report-hero, .report-card {
        border-radius: .8rem;
        padding: 2rem;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .ui.segment,
    .q {
        padding: 2rem;
        border-radius: 0.8rem;
    }
    .ui.form .field {
        margin: 0;
    }
    .toolbar .ui.button + .ui.button {
        margin-top:  1rem;
    }
    .q .opts.img > li img,
    .q .qdesc img {
        max-width: 18rem;
    }
    .report-wrap {
        padding: 2rem 1.6rem;
    }
/* 끝 */