@charset "utf-8";
/******************************************************************
    (주)이노비사이언스 — 서브페이지 공통 컴포넌트 시스템

    모든 서브페이지(theme/innobscience/page/*.php)가 이 파일을 공유한다.
    페이지 고유 스타일은 page/css/{파일명}.css 에 두고, 선택자를
    #sub-{파일명} 으로 스코프한다.

    규칙
    - 인라인 style 속성과 <style> 블록을 쓰지 않는다.
    - 벤더 클래스(gw-)는 수정하지 않는다. 필요하면 뒤에서 덮어쓴다.
    - 100vw 금지. 세로 스크롤바 폭 때문에 본문보다 넓어진다.
    - 미디어쿼리에서는 섹션 스코프 변수만 바꾼다.
******************************************************************/

/* ================================================================
   1. 디자인 토큰
   ================================================================ */
:root {
    /* 주색 — 딥네이비 계열 */
    --inob-navy:      #0f2137;
    --inob-navy-2:    #17324f;
    --inob-navy-3:    #1e4066;

    /* 포인트 */
    --inob-red:       #c8202e;
    --inob-red-dark:  #a4161f;

    /* 브랜드 액센트 — 관리자 테마 메인컬러(cf_main_color)를 따른다.
       미설정 환경에선 시안(#1f8fb0)으로 폴백한다.
       기존 --inob-cyan 참조 전부가 이 한 줄로 브랜드색을 따라간다. */
    --inob-brand:      var(--main-color, #1f8fb0);
    --inob-brand-dk:   #007a30;                                            /* 정적 폴백(다크 브랜드톤) */
    --inob-brand-dk:   color-mix(in srgb, var(--main-color, #1f8fb0) 80%, #000);
    --inob-cyan:       var(--main-color, #1f8fb0);
    --inob-cyan-lt:    #e7f4ec;                                            /* 정적 폴백(연한 브랜드톤) */
    --inob-cyan-lt:    color-mix(in srgb, var(--main-color, #1f8fb0) 12%, #fff);

    /* 브랜드북 계열 — 제품 페이지 전용 */
    --inob-green:     #4a6b4a;
    --inob-green-dk:  #35503a;
    --inob-ivory:     #f2efe2;

    /* 무채색 */
    --inob-ink:       #111820;
    --inob-body:      #46505c;
    --inob-muted:     #6b7683;
    --inob-line:      #dfe4ea;
    --inob-bg:        #f5f7f9;
    --inob-bg-2:      #eef2f5;
    --inob-white:     #fff;

    /* 라운드 — 값을 낮게 유지한다. 큰 라운드가 전 요소에 걸리면 화면이 물러 보인다. */
    --inob-r-sm:      6px;
    --inob-r:         10px;
    --inob-r-md:      12px;
    --inob-r-lg:      16px;

    /* 그림자 */
    --inob-sh:        0 4px 18px rgba(15, 33, 55, .07);
    --inob-sh-lg:     0 14px 44px rgba(15, 33, 55, .13);

    /* 레이아웃 */
    --inob-con:       1200px;
    --inob-con-wide:  1480px;

    /* 디스플레이 서체 — 숫자·연도·라틴 문자 전용.
       한글 본문에는 쓰지 않는다 (Outfit 에 한글 글리프가 없다). */
    --inob-display:   "Outfit", "Noto Sans KR", sans-serif;
}

/* ================================================================
   2. 페이지 루트 · 컨테이너
   ================================================================ */

/* gw.css 의 `#container > [id*="sub-"]{padding-bottom:170px}` 를 덮어쓴다 */
#container > .inob-sub { padding-bottom: 0; }

.inob-sub {
    color: var(--inob-body);
    font-size: 17px;
    line-height: 1.75;
    word-break: keep-all;
}
.inob-sub h2,
.inob-sub h3,
.inob-sub h4,
.inob-sub h5 {
    color: var(--inob-ink);
    line-height: 1.4;
    word-break: keep-all;
}
.inob-sub p { word-break: keep-all; }
.inob-sub a { color: inherit; }

.inob-con {
    margin: 0 auto;
    width: var(--inob-con);
    max-width: calc(100% - 40px);
}
.inob-con-wide {
    margin: 0 auto;
    width: var(--inob-con-wide);
    max-width: calc(100% - 40px);
}

/* 학명 — 이탤릭 */
.inob-sci { font-style: italic; }

/* ================================================================
   3. 브레드크럼
   ================================================================ */
.inob-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--inob-muted);
    font-size: 14px;
}
.inob-breadcrumb a { color: var(--inob-muted); text-decoration: none; }
.inob-breadcrumb a:hover { color: var(--inob-navy); }
.inob-breadcrumb span[aria-hidden] { color: var(--inob-line); }
.inob-breadcrumb [aria-current="page"] { color: var(--inob-navy); font-weight: 700; }

/* ================================================================
   4. 페이지 히어로
   ================================================================ */
.inob-hero {
    --inob-hero-pt: 96px;
    --inob-hero-pb: 96px;
    --inob-hero-h2: 46px;
    position: relative;
    padding: var(--inob-hero-pt) 0 var(--inob-hero-pb);
    background: var(--inob-navy);
    color: #fff;
    overflow: hidden;
}
.inob-hero::after {
    content: none;
}
.inob-hero > .inob-con { position: relative; z-index: 1; }
.inob-hero .inob-breadcrumb { color: rgba(255,255,255,.62); }
.inob-hero .inob-breadcrumb a { color: rgba(255,255,255,.62); }
.inob-hero .inob-breadcrumb a:hover { color: #fff; }
.inob-hero .inob-breadcrumb span[aria-hidden] { color: rgba(255,255,255,.3); }
.inob-hero .inob-breadcrumb [aria-current="page"] { color: #fff; }

.inob-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--inob-cyan);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.inob-hero h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: var(--inob-hero-h2);
    font-weight: 700;
    letter-spacing: -.02em;
}
.inob-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.8;
}

/* ================================================================
   5. 섹션
   ================================================================ */
.inob-sec {
    --inob-sec-pt: 92px;
    --inob-sec-pb: 92px;
    padding: var(--inob-sec-pt) 0 var(--inob-sec-pb);
    background: #fff;
}
.inob-sec.is-gray  { background: var(--inob-bg); }
.inob-sec.is-tint  { background: var(--inob-cyan-lt); }
.inob-sec.is-navy  { background: var(--inob-navy); color: rgba(255,255,255,.82); }
.inob-sec.is-navy h2,
.inob-sec.is-navy h3,
.inob-sec.is-navy h4 { color: #fff; }
.inob-sec.is-ivory { background: var(--inob-ivory); }

/* 섹션 헤드 */
.inob-sec-head {
    --inob-head-h3: 34px;
    margin-bottom: 48px;
}
.inob-sec-head.is-center { text-align: center; }
.inob-sec-head .inob-eyebrow { color: var(--inob-cyan); }
.inob-sec-head h3 {
    font-size: var(--inob-head-h3);
    font-weight: 700;
    letter-spacing: -.02em;
}
.inob-sec-head h3 + p {
    margin-top: 16px;
    color: var(--inob-muted);
    font-size: 17px;
}
.inob-sec.is-navy .inob-sec-head h3 + p { color: rgba(255,255,255,.7); }

/* 리드 문단 */
.inob-lead {
    color: var(--inob-ink);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.7;
}

/* ================================================================
   6. 카드 그리드
   ================================================================ */
.inob-cards {
    display: grid;
    grid-template-columns: repeat(var(--inob-cards-col, 3), 1fr);
    gap: 24px;
}
.inob-cards.is-2 { --inob-cards-col: 2; }
.inob-cards.is-4 { --inob-cards-col: 4; }
.inob-cards.is-5 { --inob-cards-col: 5; }

.inob-card {
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border: 1px solid var(--inob-line);
    border-radius: var(--inob-r);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.inob-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--inob-sh-lg);
}
.inob-card-num {
    margin-bottom: 14px;
    color: var(--inob-cyan);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
}
.inob-card-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--inob-cyan-lt);
    color: var(--inob-navy);
    font-size: 26px;
}
.inob-card h4 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}
.inob-card p { color: var(--inob-body); font-size: 16px; line-height: 1.7; }
.inob-card ul { margin-top: 6px; }
.inob-card li {
    position: relative;
    padding-left: 13px;
    color: var(--inob-body);
    font-size: 15.5px;
    line-height: 1.75;
}
.inob-card li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--inob-cyan);
}

/* 카드 — 네이비 변형 */
.inob-card.is-navy {
    border-color: transparent;
    background: var(--inob-navy);
    color: rgba(255,255,255,.8);
}
.inob-card.is-navy h4 { color: #fff; }
.inob-card.is-navy p,
.inob-card.is-navy li { color: rgba(255,255,255,.78); }
.inob-card.is-navy .inob-card-ico { background: rgba(255,255,255,.1); color: #fff; }

/* 강조 카드 — B-PDRN 등 */
.inob-card.is-featured {
    border-color: var(--inob-brand);
    box-shadow: 0 0 0 1px var(--inob-brand) inset;
}
.inob-card.is-featured .inob-card-num { color: var(--inob-brand-dk); }
.inob-card.is-featured:hover {
    border-color: var(--inob-brand-dk);
    box-shadow: var(--inob-sh-lg);
}

/* ================================================================
   7. 지표 카운터
   ================================================================ */
.inob-stats {
    display: grid;
    grid-template-columns: repeat(var(--inob-stats-col, 4), 1fr);
    gap: 20px;
}
.inob-stat {
    padding: 34px 24px;
    border-radius: var(--inob-r);
    background: #fff;
    box-shadow: var(--inob-sh);
    text-align: center;
}
.inob-sec.is-navy .inob-stat {
    background: rgba(255,255,255,.06);
    box-shadow: none;
}
.inob-stat-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    color: var(--inob-navy);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.inob-sec.is-navy .inob-stat-num { color: #fff; }
.inob-stat-num .inob-unit { font-size: 20px; font-weight: 700; }
.inob-stat-num .inob-plus { color: var(--inob-cyan); font-size: 28px; font-weight: 800; }
.inob-stat-label {
    margin-top: 10px;
    color: var(--inob-muted);
    font-size: 15.5px;
    font-weight: 500;
}
.inob-sec.is-navy .inob-stat-label { color: rgba(255,255,255,.66); }

/* ================================================================
   8. 표
   ================================================================ */
.inob-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--inob-r);
}
.inob-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #fff;
    font-size: 16px;
}
.inob-table thead th {
    padding: 16px 18px;
    background: var(--inob-navy);
    color: #fff;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}
.inob-table tbody td,
.inob-table tbody th {
    padding: 15px 18px;
    border-bottom: 1px solid var(--inob-line);
    color: var(--inob-body);
    text-align: left;
    vertical-align: top;
}
.inob-table tbody th {
    width: 190px;
    background: var(--inob-bg);
    color: var(--inob-ink);
    font-weight: 700;
    white-space: nowrap;
}
.inob-table tbody tr:last-child td,
.inob-table tbody tr:last-child th { border-bottom: 0; }
.inob-table tbody tr:hover td { background: var(--inob-bg); }
.inob-table .is-num { color: var(--inob-cyan); font-weight: 700; white-space: nowrap; }

/* 스크롤 힌트 */
.inob-table-hint {
    display: none;
    margin-top: 10px;
    color: var(--inob-muted);
    font-size: 14px;
}

/* ================================================================
   9. 키워드 칩
   ================================================================ */
.inob-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.inob-chip {
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--inob-cyan-lt);
    color: var(--inob-navy);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.inob-chip.is-red   { background: var(--inob-cyan-lt); color: var(--inob-brand-dk); }
.inob-chip.is-green { background: #e9efe9; color: var(--inob-green-dk); }
.inob-chip.is-solid { background: var(--inob-navy); color: #fff; }

/* ================================================================
   10. 프로세스 스텝
   ================================================================ */
.inob-steps {
    display: grid;
    grid-template-columns: repeat(var(--inob-steps-col, 4), 1fr);
    gap: 18px;
    counter-reset: inobstep;
}
.inob-steps.is-3 { --inob-steps-col: 3; }
.inob-steps.is-5 { --inob-steps-col: 5; }

.inob-step {
    position: relative;
    padding: 30px 24px;
    border-radius: var(--inob-r);
    background: #fff;
    box-shadow: var(--inob-sh);
}
.inob-step::before {
    counter-increment: inobstep;
    content: counter(inobstep, decimal-leading-zero);
    display: block;
    margin-bottom: 14px;
    color: var(--inob-cyan);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .1em;
}
.inob-step h4 { margin-bottom: 10px; font-size: 18px; font-weight: 700; }
.inob-step p { color: var(--inob-body); font-size: 15.5px; line-height: 1.7; }
/* 스텝 사이 연결선 */
.inob-steps .inob-step + .inob-step::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--inob-line);
    border-right: 2px solid var(--inob-line);
    transform: translateY(-50%) rotate(45deg);
}

/* ================================================================
   11. 좌우 분할 (텍스트 + 이미지)
   ================================================================ */
.inob-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.inob-split.is-reverse .inob-split-media { order: -1; }
.inob-split-body h3 { margin-bottom: 18px; font-size: 32px; font-weight: 700; }
.inob-split-media img {
    width: 100%;
    height: auto;
    border-radius: var(--inob-r-lg);
}
.inob-figure-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    border: 1px dashed var(--inob-line);
    border-radius: var(--inob-r-lg);
    background: var(--inob-bg);
    color: var(--inob-muted);
    font-size: 15px;
}

/* ================================================================
   12. 불릿 리스트
   ================================================================ */
.inob-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16.5px;
    line-height: 1.75;
}
.inob-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--inob-cyan);
}
.inob-list.is-check li::before {
    top: 6px;
    left: 0;
    width: 12px;
    height: 7px;
    border: 0;
    border-left: 2px solid var(--inob-cyan);
    border-bottom: 2px solid var(--inob-cyan);
    border-radius: 0;
    background: none;
    transform: rotate(-45deg);
}

/* 주석 박스 */
.inob-note {
    padding: 20px 24px;
    border-left: 3px solid var(--inob-cyan);
    border-radius: 0 var(--inob-r-sm) var(--inob-r-sm) 0;
    background: var(--inob-bg);
    color: var(--inob-body);
    font-size: 15.5px;
    line-height: 1.75;
}
.inob-note.is-red { border-left-color: var(--inob-brand); background: var(--inob-cyan-lt); }

/* ================================================================
   13. 버튼 · CTA
   ================================================================ */
.inob-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.inob-btns.is-center { justify-content: center; }

.inob-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--inob-brand);            /* 기본 액션 = 브랜드(테마) 컬러 */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.inob-btn:hover { transform: translateY(-2px); background: var(--inob-brand-dk); color: #fff; }
.inob-btn.is-red { background: var(--inob-brand); }
.inob-btn.is-red:hover { background: var(--inob-brand-dk); }
a.inob-btn.is-red,
a.inob-btn.is-red:link,
a.inob-btn.is-red:visited { color: #fff; }
/* 네이비 액션 — 브랜드색이 배경과 겹칠 때(예: is-tint 섹션) 쓰는 대체 */
.inob-btn.is-navy { background: var(--inob-navy); }
.inob-btn.is-navy:hover { background: var(--inob-navy-3); }
.inob-btn.is-line {
    border-color: var(--inob-line);
    background: transparent;
    color: var(--inob-ink);
}
.inob-btn.is-line:hover { border-color: var(--inob-brand); background: var(--inob-brand); color: #fff; }
.inob-btn.is-ghost {
    border-color: rgba(255,255,255,.45);
    background: transparent;
    color: #fff;
}
.inob-btn.is-ghost:hover { background: #fff; color: var(--inob-navy); }

/* 하단 CTA 밴드 */
.inob-cta-band {
    position: relative;
    isolation: isolate;
    padding: 74px 0;
    overflow: hidden;
    background-color: var(--inob-navy);
    background-image: url("../../img/main/section-contact-lab.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}
.inob-cta-band::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: rgba(5, 18, 31, .66);
    pointer-events: none;
}
.inob-cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.inob-cta-band .inob-eyebrow { color: var(--inob-cyan); }
.inob-cta-band h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}
.inob-cta-band p { color: rgba(255,255,255,.76); font-size: 17px; }
.inob-cta-band-mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.inob-cta-band a.inob-cta-band-mail,
.inob-cta-band a.inob-cta-band-mail:link,
.inob-cta-band a.inob-cta-band-mail:visited,
.inob-cta-band a.inob-btn,
.inob-cta-band a.inob-btn:link,
.inob-cta-band a.inob-btn:visited { color: #fff; }
.inob-cta-band a.inob-cta-band-mail:hover,
.inob-cta-band a.inob-cta-band-mail:focus-visible { color: var(--inob-cyan); }
.inob-cta-band a.inob-btn.is-ghost:hover,
.inob-cta-band a.inob-btn.is-ghost:focus-visible { color: var(--inob-navy); }

/* ================================================================
   14. 타임라인 (연혁)
   ================================================================ */
.inob-timeline { position: relative; padding-left: 30px; }
.inob-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 5px;
    width: 2px;
    background: var(--inob-line);
}
.inob-timeline-line {
    position: absolute;
    top: 8px;
    left: 5px;
    width: 2px;
    height: 0;
    background: var(--inob-cyan);
}
.inob-tl-item { position: relative; padding-bottom: 44px; }
.inob-tl-item:last-child { padding-bottom: 0; }
.inob-tl-item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -30px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--inob-cyan);
    box-shadow: 0 0 0 2px var(--inob-cyan);
}
.inob-tl-year {
    margin-bottom: 12px;
    color: var(--inob-navy);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1;
}
.inob-tl-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 16.5px;
}
.inob-tl-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 1px;
    background: var(--inob-muted);
}

/* ================================================================
   15. 탭
   ================================================================ */
.inob-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.inob-tab {
    padding: 13px 28px;
    border: 1px solid var(--inob-line);
    border-radius: 999px;
    background: #fff;
    color: var(--inob-muted);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}
.inob-tab:hover { border-color: var(--inob-navy); color: var(--inob-navy); }
.inob-tab.is-active {
    border-color: var(--inob-navy);
    background: var(--inob-navy);
    color: #fff;
}
.inob-tab-panel { display: none; }
.inob-tab-panel.is-active { display: block; }

/* ================================================================
   16. 지도
   ================================================================ */
.inob-map {
    overflow: hidden;
    border-radius: var(--inob-r-lg);
    background: var(--inob-bg);
}
.inob-map iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}
.inob-info-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.inob-info-item {
    display: flex;
    gap: 16px;
    padding: 26px 24px;
    border-radius: var(--inob-r);
    background: #fff;
    box-shadow: var(--inob-sh);
}
.inob-info-ico {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--inob-cyan-lt);
    color: var(--inob-navy);
    font-size: 20px;
}
.inob-info-label {
    margin-bottom: 4px;
    color: var(--inob-muted);
    font-size: 14px;
    font-weight: 600;
}
.inob-info-value { color: var(--inob-ink); font-size: 16.5px; font-weight: 500; line-height: 1.6; }
.inob-info-value a { text-decoration: none; }
.inob-info-value a:hover { color: var(--inob-cyan); }

/* ================================================================
   17. 제품 카드 (브랜드 페이지)
   ================================================================ */
.inob-products {
    display: grid;
    grid-template-columns: repeat(var(--inob-prod-col, 3), 1fr);
    gap: 28px;
}
.inob-product {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--inob-line);
    border-radius: var(--inob-r-lg);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}
.inob-product:hover { transform: translateY(-6px); box-shadow: var(--inob-sh-lg); }
.inob-product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: var(--inob-bg);
}
.inob-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}
.inob-product-body { flex: 1 1 auto; padding: 28px 26px 30px; }
.inob-product-brand {
    margin-bottom: 8px;
    color: var(--inob-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.inob-product h4 { margin-bottom: 12px; font-size: 21px; font-weight: 700; }
.inob-product p { color: var(--inob-body); font-size: 15.5px; line-height: 1.7; }
.inob-product-badge {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--inob-cyan-lt);
    color: var(--inob-brand-dk);
    font-size: 13px;
    font-weight: 700;
}

/* 브랜드 히어로 변형 */
.inob-hero.is-green {
    background: var(--inob-green-dk);
}
.inob-hero.is-green::after {
    content: none;
}
.inob-hero.is-green .inob-eyebrow { color: var(--inob-ivory); }

/* ================================================================
   18. 증서 · 인증 격자
   ================================================================ */
.inob-certs {
    display: grid;
    grid-template-columns: repeat(var(--inob-certs-col, 4), 1fr);
    gap: 24px;
}
.inob-cert {
    overflow: hidden;
    border: 1px solid var(--inob-line);
    border-radius: var(--inob-r);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}
.inob-cert:hover { transform: translateY(-5px); box-shadow: var(--inob-sh-lg); }
.inob-cert-thumb {
    aspect-ratio: 3 / 4;
    background: var(--inob-bg);
}
.inob-cert-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.inob-cert-cap {
    padding: 18px 20px;
    border-top: 1px solid var(--inob-line);
}
.inob-cert-cap strong { display: block; color: var(--inob-ink); font-size: 16px; font-weight: 700; }
.inob-cert-cap span { display: block; margin-top: 4px; color: var(--inob-muted); font-size: 14px; }

/* ================================================================
   19. 반응형
   ================================================================ */
@media (max-width: 1280px) {
    .inob-hero { --inob-hero-pt: 76px; --inob-hero-pb: 76px; --inob-hero-h2: 40px; }
    .inob-sec { --inob-sec-pt: 76px; --inob-sec-pb: 76px; }
    .inob-sec-head { --inob-head-h3: 30px; }
    .inob-cards { --inob-cards-col: 3; gap: 20px; }
    .inob-cards.is-4, .inob-cards.is-5 { --inob-cards-col: 3; }
    .inob-certs { --inob-certs-col: 3; }
    .inob-split { gap: 40px; }
}

@media (max-width: 1024px) {
    .inob-cards, .inob-cards.is-4, .inob-cards.is-5 { --inob-cards-col: 2; }
    .inob-products { --inob-prod-col: 2; }
    .inob-stats { --inob-stats-col: 2; }
    .inob-steps, .inob-steps.is-3, .inob-steps.is-5 { --inob-steps-col: 2; }
    .inob-steps .inob-step + .inob-step::after { display: none; }
    .inob-split { grid-template-columns: 1fr; gap: 34px; }
    .inob-split.is-reverse .inob-split-media { order: 0; }
    .inob-split-body h3 { font-size: 27px; }
    .inob-info-list { grid-template-columns: 1fr; }
    .inob-cta-band-inner { flex-direction: column; align-items: flex-start; gap: 26px; }
    .inob-table-hint { display: block; }
}

@media (max-width: 768px) {
    .inob-sub { font-size: 16px; }
    .inob-hero { --inob-hero-pt: 56px; --inob-hero-pb: 56px; --inob-hero-h2: 30px; }
    .inob-hero p { font-size: 16px; }
    .inob-sec { --inob-sec-pt: 56px; --inob-sec-pb: 56px; }
    .inob-sec-head { --inob-head-h3: 24px; margin-bottom: 32px; }
    .inob-lead { font-size: 18px; }
    .inob-cards, .inob-cards.is-4, .inob-cards.is-5 { --inob-cards-col: 1; }
    .inob-products { --inob-prod-col: 1; }
    .inob-certs { --inob-certs-col: 2; }
    .inob-card { padding: 26px 22px; }
    .inob-stat-num { font-size: 34px; }
    .inob-tl-year { font-size: 24px; }
    .inob-cta-band { padding: 52px 0; background-position: 68% center; }
    .inob-cta-band h3 { font-size: 24px; }
    .inob-btn { padding: 13px 24px; font-size: 15px; }
    .inob-map iframe { height: 300px; }
    .inob-tab { padding: 10px 20px; font-size: 15px; }
}

@media (max-width: 576px) {
    .inob-stats { --inob-stats-col: 1; }
    .inob-certs { --inob-certs-col: 1; }
    .inob-btns .inob-btn { width: 100%; justify-content: center; }
}

/* ================================================================
   20. 모션 최소화 대응
   GSAP 이 gsap.set() 으로 초기 상태를 주므로 CSS 에는 opacity:0 을
   하드코딩하지 않는다. JS 가 죽어도 콘텐츠는 보인다.
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .inob-card,
    .inob-product,
    .inob-cert { transition: none; }
    .inob-card:hover,
    .inob-product:hover,
    .inob-cert:hover { transform: none; }
}

/* ================================================================
   21. gw.css 브리지
   ----------------------------------------------------------------
   gw.css 는 head.sub.php 에서 전역 로드된다(우선순위 0). 서브페이지는
   테마 원본 컴포넌트(.gw-*)를 1순위로 쓰고, 여기서 브랜드 톤만 얹는다.
   모든 규칙은 .inob-sub 안으로 스코프한다 — 게시판·메인이 같이 변하면 안 된다.
   ================================================================ */

/* 컨테이너 — gw 폭(1200)을 inob 토큰에 맞추고, 테마의 158px 여백 리듬은
   섹션 패딩과 이중으로 걸리므로 서브페이지 안에서만 해제한다. */
.inob-sub .gw-sub-con-1200 {
    width: var(--inob-con);
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
}
.inob-sub [class*="gw-sub-con"]:not(:last-child) { margin-bottom: 0; }

/* 섹션 타이틀 — 테마 원본은 58px uppercase(라틴 기준)다.
   한글에는 uppercase 가 무의미하고 자간이 벌어지므로 국문용으로 되돌린다. */
.inob-sub .gw-sub-title {
    color: var(--inob-ink);
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.28;
    text-transform: none;
    word-break: keep-all;
}
/* 라틴 문구를 그대로 대문자로 보여주고 싶을 때만 붙인다 */
.inob-sub .gw-sub-title.is-upper {
    font-family: var(--inob-display);
    text-transform: uppercase;
    letter-spacing: .01em;
}

/* 아이브로우 — 테마 원본(.gw-sub-title02)을 쓴다. .inob-eyebrow 대체재. */
.inob-sub .gw-sub-title02 {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--inob-cyan);
    font-family: var(--inob-display);
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.inob-sec.is-navy .gw-sub-title02 { color: var(--inob-cyan); }

/* 타이틀 하단 세로 라인 — 가운데 정렬 섹션의 구분자 */
.inob-sub .gw-sub-title-line:after {
    height: 34px;
    margin: 28px auto 0;
    background: var(--inob-line);
}
.inob-sec.is-navy .gw-sub-title-line:after { background: rgba(255,255,255,.28); }

.inob-sub .gw-sub-text { color: var(--inob-body); font-size: 17px; line-height: 1.8; }

/* 표 — 테마의 .gw-table01 은 1024px 이하에서 td[data-label] 로 카드 붕괴한다.
   inob-table 의 가로 스크롤보다 모바일 가독성이 낫다. 이쪽을 기본으로 쓴다. */
.inob-sub .gw-table01 {
    width: 100%;
    border-top: 2px solid var(--inob-navy);
    border-collapse: collapse;
}
.inob-sub .gw-table01 th {
    border-top: 2px solid var(--inob-navy);
    border-bottom: 1px solid var(--inob-line);
    background: var(--inob-bg);
    color: var(--inob-ink);
    font-size: 16px;
    font-weight: 700;
}
.inob-sub .gw-table01 td { border-bottom: 1px solid var(--inob-line); color: var(--inob-body); }
.inob-sub .gw-table01 th:not(:last-child):after { background: var(--inob-line); }
.inob-sub .gw-table01 .is-num { color: var(--inob-cyan); font-weight: 700; }

.inob-sub .gw-table02 { border-top: 2px solid var(--inob-navy); width: 100%; border-collapse: collapse; }
.inob-sub .gw-table02 th { background: var(--inob-bg); color: var(--inob-ink); border-bottom: 1px solid var(--inob-line); }
.inob-sub .gw-table02 td { color: var(--inob-body); border-bottom: 1px solid var(--inob-line); }

/* 리스트 — .gw-list01(점) / .gw-list02(번호) */
.inob-sub .gw-list01 > li { color: var(--inob-body); font-size: 16.5px; line-height: 1.75; }
.inob-sub .gw-list01 > li:before { top: 13px; background: var(--inob-cyan); }
.inob-sub .gw-list02 > li { color: var(--inob-body); font-size: 16.5px; }
.inob-sub .gw-list02 > li:before {
    background: var(--inob-navy);
    border-radius: 50%;
    font-family: var(--inob-display);
}

/* 박스 */
.inob-sub .gw-box01 { border: 1px solid var(--inob-line); border-radius: var(--inob-r); padding: 22px 24px; }
.inob-sub .gw-box02 { border-radius: var(--inob-r); background: var(--inob-bg); padding: 24px 26px; }

/* 탭 — 테마 원본 .gw-tabs 사용 시 톤 보정 */
.inob-sub .gw-tabs { border-radius: var(--inob-r); background: var(--inob-bg); }
.inob-sub .gw-tabs > li > a,
.inob-sub .gw-tabs > li > button {
    display: block;
    width: 100%;
    padding: 12px 17px;
    border: 0;
    border-radius: var(--inob-r-sm);
    background: transparent;
    color: var(--inob-muted);
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 800;
    cursor: pointer;
}
.inob-sub .gw-tabs > li > a.active,
.inob-sub .gw-tabs > li > button.active { background: #fff; color: var(--inob-navy); }
.inob-sub .gw-tabs > li > button:focus-visible {
    outline: 3px solid rgba(0, 153, 68, .28);
    outline-offset: 2px;
}

/* ================================================================
   22. 도입부 (.inob-intro)
   ----------------------------------------------------------------
   테마 서브헤더(#container_title)가 배너·페이지명·브레드크럼·메뉴를
   담당한다. 페이지는 그 아래에서 도입 문단으로 시작한다.
   .inob-hero 는 서브헤더와 역할이 겹치므로 신규 페이지에서 쓰지 않는다.
   ================================================================ */
.inob-intro {
    --inob-intro-pt: 96px;
    --inob-intro-pb: 84px;
    padding: var(--inob-intro-pt) 0 var(--inob-intro-pb);
    background: #fff;
}
.inob-intro-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 60px; align-items: start; }
.inob-intro h2 {
    color: var(--inob-ink);
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.3;
}
.inob-intro-body > p { color: var(--inob-body); font-size: 17.5px; line-height: 1.9; }
.inob-intro-body > p + p { margin-top: 18px; }
/* 도입부 우측 요약 지표 */
.inob-intro-facts { display: grid; gap: 14px; }
.inob-intro-fact {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 18px 22px;
    border-left: 3px solid var(--inob-cyan);
    background: var(--inob-bg);
}
.inob-intro-fact strong {
    flex: 0 0 auto;
    color: var(--inob-navy);
    font-family: var(--inob-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.inob-intro-fact span { color: var(--inob-body); font-size: 15.5px; line-height: 1.6; }

/* ================================================================
   23. 섹션 헤드 변형 — 가운데 정렬 한 종류만 반복하지 않는다
   ================================================================ */
/* 좌측 강조 바 */
.inob-sec-head.is-bar { padding-left: 22px; border-left: 4px solid var(--inob-cyan); }
/* 제목 좌 / 설명 우 2단 */
.inob-sec-head.is-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: end;
}
.inob-sec-head.is-split h3 + p { margin-top: 0; }
/* 가운데 + 세로 라인 (테마 .gw-sub-title-line 과 함께 쓴다) */
.inob-sec-head.is-line { text-align: center; }

/* ================================================================
   24. 아이콘 시스템
   ----------------------------------------------------------------
   Xeicon(xi-*) 과 Font Awesome 4.7(fa-*) 이 모두 전역 로드되어 있다.
   Xeicon 에는 이화학·바이오 계열 아이콘이 없으므로 그쪽은 FA 를 쓴다.
   아이콘 자리는 비워두지 않는다 — 아이콘 없는 카드/스텝을 만들지 않는다.
   ================================================================ */

/* 공통 아이콘 박스 */
.inob-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: var(--inob-r-sm);
    background: var(--inob-cyan-lt);
    color: var(--inob-navy);
    font-size: 24px;
    line-height: 1;
}
.inob-ico.is-round { border-radius: 50%; }
.inob-ico.is-line  { border: 1px solid var(--inob-line); background: transparent; color: var(--inob-cyan); }
.inob-ico.is-solid { background: var(--inob-navy); color: #fff; }
.inob-ico.is-red   { background: var(--inob-cyan-lt); color: var(--inob-brand); }
.inob-ico.is-bare  { width: auto; height: auto; background: none; color: var(--inob-cyan); font-size: 32px; }
.inob-ico.is-lg    { width: 68px; height: 68px; font-size: 30px; }
.inob-sec.is-navy .inob-ico { background: rgba(255,255,255,.1); color: #fff; }
.inob-sec.is-navy .inob-ico.is-line { border-color: rgba(255,255,255,.25); background: transparent; }

/* 카드 아이콘 — 기존 .inob-card-ico 를 사각/외곽선 변형까지 확장 */
.inob-card-ico { border-radius: var(--inob-r-sm); }
.inob-card-ico.is-round { border-radius: 50%; }
.inob-card-ico.is-line  { border: 1px solid var(--inob-line); background: transparent; color: var(--inob-cyan); }
.inob-card-ico.is-solid { background: var(--inob-navy); color: #fff; }

/* 스텝 아이콘 — 번호와 함께 쓴다 */
.inob-step-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: var(--inob-r-sm);
    background: var(--inob-cyan-lt);
    color: var(--inob-navy);
    font-size: 21px;
}
.inob-step:has(.inob-step-ico)::before {
    position: absolute;
    top: 30px;
    right: 24px;
    margin-bottom: 0;
    font-family: var(--inob-display);
    opacity: .5;
}

/* 아이콘 불릿 리스트 */
.inob-list.is-ico li { padding-left: 30px; }
.inob-list.is-ico li::before { display: none; }
.inob-list.is-ico li > i {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--inob-cyan);
    font-size: 17px;
}

/* 인라인 아이콘 — 제목·라벨 앞에 붙이는 작은 아이콘 */
.inob-ico-inline { margin-right: 8px; color: var(--inob-cyan); }
.inob-sec.is-navy .inob-ico-inline { color: var(--inob-cyan); }

/* ================================================================
   25. 아이콘 선행 가로형 항목 (.inob-features)
   ----------------------------------------------------------------
   카드 그리드만 반복하면 페이지가 균질해진다. 아이콘 좌측 + 본문 우측
   구성으로 리듬을 끊는다.
   ================================================================ */
.inob-features { display: grid; grid-template-columns: repeat(var(--inob-feat-col, 2), 1fr); gap: 30px 44px; }
.inob-features.is-1 { --inob-feat-col: 1; }
.inob-features.is-3 { --inob-feat-col: 3; }
.inob-feature { display: flex; gap: 20px; align-items: flex-start; }
.inob-feature-body { min-width: 0; }
.inob-feature h4 { margin-bottom: 8px; color: var(--inob-ink); font-size: 19px; font-weight: 700; }
.inob-feature p { color: var(--inob-body); font-size: 16px; line-height: 1.75; }
.inob-sec.is-navy .inob-feature h4 { color: #fff; }
.inob-sec.is-navy .inob-feature p { color: rgba(255,255,255,.78); }
/* 구분선 변형 */
.inob-features.is-divided .inob-feature { padding-bottom: 30px; border-bottom: 1px solid var(--inob-line); }
.inob-sec.is-navy .inob-features.is-divided .inob-feature { border-bottom-color: rgba(255,255,255,.14); }

/* ================================================================
   26. 이미지 · 캡션
   ================================================================ */
.inob-figure { margin: 0; }
.inob-figure img { display: block; width: 100%; height: auto; border-radius: var(--inob-r-lg); }
.inob-figure figcaption { margin-top: 12px; color: var(--inob-muted); font-size: 14.5px; line-height: 1.6; }
.inob-figure.is-cover img { aspect-ratio: 4 / 3; object-fit: cover; }

/* ================================================================
   27. 디스플레이 타이포 유틸
   숫자·연도·라틴 전용. 한글에 쓰면 Outfit 에 글리프가 없어 폴백된다.
   ================================================================ */
.inob-num { font-family: var(--inob-display); font-weight: 700; letter-spacing: -.02em; }

/* ================================================================
   28. 21~27 반응형
   ================================================================ */
@media (max-width: 1280px) {
    .inob-intro { --inob-intro-pt: 76px; --inob-intro-pb: 68px; }
    .inob-intro-inner { gap: 44px; }
    .inob-sec-head.is-split { gap: 32px; }
}

@media (max-width: 1024px) {
    .inob-intro-inner { grid-template-columns: 1fr; gap: 34px; }
    .inob-sec-head.is-split { grid-template-columns: 1fr; gap: 14px; align-items: start; }
    .inob-features { --inob-feat-col: 1; }
    .inob-features.is-3 { --inob-feat-col: 2; }

    /* inob-table 도 gw-table01 과 같은 카드 붕괴를 쓴다.
       td 마다 data-label 을 반드시 넣는다. 없으면 라벨이 비어 보인다. */
    .inob-sub .inob-table.is-collapse { min-width: 0; }
    .inob-sub .inob-table.is-collapse thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .inob-sub .inob-table.is-collapse tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid var(--inob-line);
        border-top: 2px solid var(--inob-navy);
        border-radius: var(--inob-r-sm);
        background: #fff;
    }
    .inob-sub .inob-table.is-collapse tbody td,
    .inob-sub .inob-table.is-collapse tbody th {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        width: auto;
        padding: 13px 16px;
        text-align: right;
        white-space: normal;
    }
    .inob-sub .inob-table.is-collapse tbody td::before {
        content: attr(data-label);
        flex: 0 0 auto;
        color: var(--inob-ink);
        font-size: 14px;
        font-weight: 700;
        text-align: left;
    }
    .inob-sub .inob-table.is-collapse tbody tr:last-child td { border-bottom: 1px solid var(--inob-line); }
    .inob-sub .inob-table.is-collapse tbody tr:last-child td:last-child { border-bottom: 0; }
}

@media (max-width: 768px) {
    .inob-intro { --inob-intro-pt: 52px; --inob-intro-pb: 44px; }
    .inob-intro-body > p { font-size: 16.5px; }
    .inob-features { gap: 24px; }
    .inob-features.is-3 { --inob-feat-col: 1; }
    .inob-feature { gap: 16px; }
    .inob-ico { width: 46px; height: 46px; font-size: 21px; }
    .inob-ico.is-lg { width: 56px; height: 56px; font-size: 25px; }
    .inob-intro-fact { padding: 15px 18px; }
    .inob-intro-fact strong { font-size: 22px; }
}

/* ================================================================
   29. 편집형 이미지 · 실제 증빙 스트립
   ----------------------------------------------------------------
   생성 이미지는 연구 분위기를 설명하는 보조 시각 자료로만 사용한다.
   실제 문서와 제품 이미지는 별도의 evidence 구조로 구분한다.
   ================================================================ */
.inob-editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    align-items: center;
    gap: clamp(36px, 6vw, 88px);
}
.inob-editorial-split.is-reverse {
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
}
.inob-editorial-split.is-reverse > .inob-editorial-media { order: -1; }
.inob-editorial-copy { min-width: 0; }
.inob-editorial-copy > :first-child { margin-top: 0; }
.inob-editorial-copy > :last-child { margin-bottom: 0; }
.inob-editorial-caption {
    margin-top: 18px;
    color: var(--inob-muted);
    font-size: 13px;
    line-height: 1.55;
}

.inob-editorial-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--inob-line);
    border-radius: var(--inob-r-lg);
    background: var(--inob-bg);
    box-shadow: var(--inob-sh);
}
.inob-editorial-media picture { display: block; }
.inob-editorial-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.inob-editorial-media.is-landscape img { aspect-ratio: 16 / 9; }
.inob-editorial-media.is-compact img { aspect-ratio: 4 / 3; }
.inob-editorial-media figcaption {
    margin: 0;
    padding: 14px 18px 16px;
    border-top: 1px solid var(--inob-line);
    background: #fff;
    color: var(--inob-muted);
    font-size: 13.5px;
    line-height: 1.65;
}
.inob-editorial-media figcaption strong {
    color: var(--inob-ink);
    font-weight: 700;
}

.inob-definition-strip {
    display: grid;
    grid-template-columns: repeat(var(--inob-definition-count, 4), minmax(0, 1fr));
    margin-top: 26px;
    border-top: 1px solid var(--inob-line);
    border-bottom: 1px solid var(--inob-line);
}
.inob-definition-strip > * {
    min-width: 0;
    padding: 18px 20px;
    border-left: 1px solid var(--inob-line);
}
.inob-definition-strip > :first-child { border-left: 0; }
.inob-definition-strip strong,
.inob-definition-strip span { display: block; }
.inob-definition-strip strong {
    margin-bottom: 5px;
    color: var(--inob-ink);
    font-size: 15px;
    line-height: 1.45;
}
.inob-definition-strip span {
    color: var(--inob-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.inob-evidence-strip {
    display: grid;
    grid-template-columns: repeat(var(--inob-evidence-count, 3), minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}
.inob-evidence-strip > a,
.inob-evidence-strip > article {
    display: grid;
    grid-template-columns: minmax(0, 112px) minmax(0, 1fr);
    align-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--inob-line);
    border-radius: var(--inob-r-md);
    background: #fff;
    color: inherit;
    text-decoration: none;
}
.inob-evidence-strip > a {
    transition: border-color .2s ease, transform .2s ease;
}
.inob-evidence-strip > a:hover {
    border-color: var(--inob-cyan);
    transform: translateY(-2px);
}
.inob-evidence-strip > a:focus-visible {
    outline: 3px solid rgba(0, 153, 68, .28);
    outline-offset: 3px;
}
.inob-evidence-strip img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 126px;
    object-fit: cover;
    border-right: 1px solid var(--inob-line);
    background: var(--inob-bg);
}
.inob-evidence-strip-body { min-width: 0; padding: 17px 18px; }
.inob-evidence-strip-body strong {
    display: block;
    color: var(--inob-ink);
    font-size: 16px;
    line-height: 1.45;
}
.inob-evidence-strip-body span {
    display: block;
    margin-top: 6px;
    color: var(--inob-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .inob-editorial-split,
    .inob-editorial-split.is-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .inob-editorial-split.is-reverse > .inob-editorial-media { order: 0; }
    .inob-definition-strip { --inob-definition-count: 2; }
    .inob-definition-strip > :nth-child(odd) { border-left: 0; }
    .inob-definition-strip > :nth-child(n + 3) { border-top: 1px solid var(--inob-line); }
    .inob-evidence-strip { --inob-evidence-count: 1; }
}

@media (max-width: 768px) {
    .inob-editorial-split,
    .inob-editorial-split.is-reverse { gap: 24px; }
    .inob-editorial-media { border-radius: var(--inob-r-md); }
    .inob-editorial-media img,
    .inob-editorial-media.is-landscape img,
    .inob-editorial-media.is-compact img { aspect-ratio: 4 / 3; }
    .inob-editorial-media figcaption { padding: 12px 14px 14px; font-size: 13px; }
    .inob-definition-strip { margin-top: 20px; }
    .inob-definition-strip > * { padding: 14px; }
    .inob-evidence-strip { gap: 12px; margin-top: 24px; }
    .inob-evidence-strip > a,
    .inob-evidence-strip > article { grid-template-columns: 92px minmax(0, 1fr); }
    .inob-evidence-strip img { min-height: 108px; }
    .inob-evidence-strip-body { padding: 14px; }
}

@media (max-width: 420px) {
    .inob-definition-strip { grid-template-columns: 1fr; }
    .inob-definition-strip > * {
        border-top: 1px solid var(--inob-line);
        border-left: 0;
    }
    .inob-definition-strip > :first-child { border-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .inob-evidence-strip > a { transition: none; }
    .inob-evidence-strip > a:hover { transform: none; }
}
