@charset "utf-8";
/******************************************************************
    #sub-testing 전용 스타일

    inob-sub.css 에 없는, testing.php 전용 컴포넌트만 담는다.
    이 페이지는 "세 갈래 시험 영역"(.inob-features.is-divided)과
    "시험 항목 전체표"(.gw-table01)가 중심이다.
    - .gw-table01 좌측 정렬 + 구분 셀 강조   : 서술형 셀이 많아 좌측 정렬로 덮어쓰고,
      1열(구분)은 반복되는 값이라 시각적으로 옅게 구분한다
    - .inob-mb-24 / .inob-mt-32    : 여백 유틸리티
    - .inob-sr-only                : 스크린리더 전용(시각적으로 숨김)
******************************************************************/

/* ================================================================
   시험 항목 표 — 좌측 정렬 + 구분 열 강조
   ================================================================ */
#sub-testing .inob-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    background: #fff;
    box-shadow: 0 18px 40px rgba(4,14,24,.2);
}
#sub-testing .gw-table01 {
    border-top: 0;
    background: #fff;
}
#sub-testing .gw-table01 th,
#sub-testing .gw-table01 td {
    padding: 20px 22px;
    text-align: left;
}
#sub-testing .gw-table01 thead th {
    padding: 18px 22px;
    border-top: 0;
    border-bottom: 0;
    background: var(--inob-brand-dk);
    color: #fff;
}
#sub-testing .gw-table01 thead th:not(:last-child)::after {
    background: rgba(255,255,255,.28);
}
#sub-testing .inob-testing-group + .inob-testing-group tr:first-child > td {
    border-top: 3px solid #acd3ba;
}
#sub-testing .inob-testing-group td[rowspan] {
    width: 176px;
    padding-top: 24px;
    border-right: 1px solid #cfe2d6;
    background: #edf6f0;
    color: var(--inob-brand-dk);
    font-weight: 700;
    line-height: 1.65;
    vertical-align: top;
}
#sub-testing .inob-testing-group tr:hover td:not([rowspan]) {
    background: #f7faf8;
}
#sub-testing .inob-table-hint { color: rgba(255,255,255,.72); }
@media (max-width: 1024px) {
    #sub-testing .inob-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    #sub-testing .gw-table01 { background: transparent; }
    #sub-testing .inob-testing-group { display: block; }
    #sub-testing .inob-testing-group + .inob-testing-group { margin-top: 28px; }
    #sub-testing .inob-testing-group tr {
        overflow: hidden;
        border: 1px solid var(--inob-line);
        border-top: 0;
        border-radius: var(--inob-r);
        background: #fff;
        box-shadow: var(--inob-sh);
    }
    #sub-testing .inob-testing-group tr::before {
        content: attr(data-group);
        display: block;
        padding: 11px 16px;
        border-bottom: 1px solid #cfe2d6;
        background: #edf6f0;
        color: var(--inob-brand-dk);
        font-size: 13px;
        font-weight: 800;
        text-align: left;
    }
    #sub-testing .inob-testing-group td[rowspan] { display: none !important; }
    #sub-testing .inob-testing-group + .inob-testing-group tr:first-child > td {
        border-top: 0;
    }
    #sub-testing .gw-table01 tbody td { text-align: right; }
}

/* ================================================================
   여백 유틸리티
   ================================================================ */
#sub-testing .inob-mb-24 { margin-bottom: 24px; }
#sub-testing .inob-mt-32 { margin-top: 32px; }

/* ================================================================
   시험 범위 · 의뢰 흐름 — 시험 결과와 분리된 편집형 설명
   ================================================================ */
#sub-testing .inob-testing-scope {
    border-top: 1px solid var(--inob-line);
}
#sub-testing .inob-testing-scope section {
    position: relative;
    padding: 21px 0 21px 116px;
    border-bottom: 1px solid var(--inob-line);
}
#sub-testing .inob-testing-scope section::before {
    content: "SCOPE";
    position: absolute;
    top: 24px;
    left: 0;
    color: var(--inob-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}
#sub-testing .inob-testing-scope h4 {
    margin: 0 0 8px;
    color: var(--inob-ink);
    font-size: 19px;
    line-height: 1.45;
}
#sub-testing .inob-testing-scope p {
    margin: 0;
    color: var(--inob-muted);
    font-size: 15px;
    line-height: 1.7;
}

#sub-testing .inob-testing-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--inob-line);
    border-bottom: 1px solid var(--inob-line);
    list-style: none;
    counter-reset: testing-step;
}
#sub-testing .inob-testing-flow li {
    min-width: 0;
    padding: 24px 22px;
    border-left: 1px solid var(--inob-line);
    counter-increment: testing-step;
}
#sub-testing .inob-testing-flow li:first-child { border-left: 0; }
#sub-testing .inob-testing-flow li::before {
    content: "0" counter(testing-step);
    display: block;
    margin-bottom: 22px;
    color: var(--inob-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}
#sub-testing .inob-testing-flow strong,
#sub-testing .inob-testing-flow span { display: block; }
#sub-testing .inob-testing-flow strong {
    color: var(--inob-ink);
    font-size: 17px;
}
#sub-testing .inob-testing-flow span {
    margin-top: 9px;
    color: var(--inob-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ================================================================
   시각적으로 숨김 — 표 caption 등 스크린리더 전용 텍스트
   ================================================================ */
#sub-testing .inob-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1024px) {
    #sub-testing .inob-testing-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #sub-testing .inob-testing-flow li:nth-child(odd) { border-left: 0; }
    #sub-testing .inob-testing-flow li:nth-child(n + 3) { border-top: 1px solid var(--inob-line); }
    #sub-testing .inob-testing-flow li:last-child { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
    #sub-testing .inob-testing-scope section { padding: 18px 0; }
    #sub-testing .inob-testing-scope section::before {
        position: static;
        display: block;
        margin-bottom: 8px;
    }
    #sub-testing .inob-testing-flow {
        display: block;
        overflow: visible;
    }
    #sub-testing .inob-testing-flow li {
        display: grid;
        grid-template-columns: 32px 96px minmax(0, 1fr);
        gap: 8px;
        align-items: start;
        padding: 17px 0;
        border-top: 1px solid var(--inob-line);
        border-left: 0;
    }
    #sub-testing .inob-testing-flow li:first-child { border-top: 0; }
    #sub-testing .inob-testing-flow li::before { margin: 1px 0 0; }
    #sub-testing .inob-testing-flow span { margin-top: 0; }
}
