/* 네이버 AI가 읽는 것 — 전용 */

/* ── 질의 유형 표 ──────────────────────────────────────────────────── */

.qtable {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow-card);
}
.qt-head, .qt-row {
  display: grid; grid-template-columns: 1.1fr 1.3fr 0.7fr 1.5fr;
  gap: 18px; padding: 16px 22px; align-items: start;
}
.qt-head {
  background: var(--g100); font-size: 12.5px; font-weight: 700;
  color: var(--ink-3); letter-spacing: .02em;
}
.qt-row { border-top: 1px solid var(--hair); }
.qt-row.hot { background: var(--cyan-50); }

.qt-row .c1 b { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.qt-row .c1 i {
  display: block; font-style: normal; font-size: 12.5px;
  color: var(--muted); margin-top: 3px; line-height: 1.5;
}
.qt-row .c2 { font-size: 13px; line-height: 1.75; color: var(--ink-3); }
.qt-row .c4 { font-size: 13.5px; line-height: 1.66; color: var(--ink-2); }
.qt-row .c4 b { color: var(--navy); font-weight: 700; }
.qt-row .c4 i {
  display: block; font-style: normal; font-size: 12.5px; color: var(--muted); margin-top: 3px;
}

.qt-row .cnt { text-align: left; font-size: 20px; }
.qt-row .cnt i { font-size: 14px; }

/* ── 외부가 들어오는 세 갈래 ───────────────────────────────────────── */

.lanes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lane {
  display: flex; flex-direction: column;
  padding: 24px 26px; border-radius: var(--r-lg);
  background: var(--paper); border: 1px solid var(--line);
}
.lane.hot { border-color: var(--cyan-100); box-shadow: var(--shadow-card); }
.lane-n {
  width: 30px; height: 30px; border-radius: 9px; margin-bottom: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--g100); color: var(--ink-3); font-size: 14px; font-weight: 700;
}
.lane.hot .lane-n { background: var(--navy); color: #fff; }
.lane h3 { font-size: 18px; letter-spacing: -.028em; }
.lane-d { font-size: 13.5px; line-height: 1.65; color: var(--muted); margin-top: 6px; }

.lane-list { margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.lane-list li {
  font-size: 13px; line-height: 1.6; color: var(--ink-3);
  padding-bottom: 10px; border-bottom: 1px solid var(--hair);
}
.lane-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.lane-list .mono { display: block; font-size: 12px; color: var(--cyan-ink); margin-bottom: 2px; }
.lane-list i { font-style: normal; font-size: 12px; color: var(--muted); }

.lane-note {
  margin-top: auto; padding-top: 14px;
  font-size: 13px; line-height: 1.7; color: var(--ink-3);
}
.lane-note b { color: var(--ink); font-weight: 600; }

@media (max-width: 1000px) {
  .lanes { grid-template-columns: 1fr; }
  .qt-head { display: none; }
  .qt-row {
    grid-template-columns: 1fr; gap: 10px;
    padding: 18px 20px; border-top: 1px solid var(--line);
  }
  .qt-row .c3 { order: -1; }
}

/* 섹션 머리말 — 알약 뱃지 대신 */
.sec > .wrap > .sec-mark + .sec-title { margin-top: 0; }
