/* 상담 · 제품추천 — ContentsDoc/04 구현
   질문 하나씩 크게 보여 준다. 한 화면에 다 늘어놓으면 사람이 지친다. */

.gl-rec{
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 34px 32px 30px;
}

/* 어디까지 왔는지 */
.gl-rec-steps{ display: flex; gap: 6px; margin-bottom: 18px; }
.gl-rec-steps span{
  height: 4px; flex: 1; border-radius: 100px; background: var(--gray-200);
  transition: background 0.3s ease;
}
.gl-rec-steps span.on{ background: var(--accent); }
.gl-rec-count{ font-size: 12.5px; font-weight: 800; color: var(--muted); margin: 0 0 8px; }

.gl-rec-q{ font-size: 23px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.4; margin: 0 0 8px; }
.gl-rec-hint{ font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 22px; }

.gl-rec-options{ display: flex; flex-direction: column; gap: 9px; }
.gl-rec-option{
  width: 100%; text-align: left;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 16px 18px; font: inherit; font-size: 15.5px; font-weight: 700; color: var(--fg);
  cursor: pointer; transition: border-color 0.18s ease, background 0.18s ease;
}
.gl-rec-option:hover{ border-color: var(--fg-strong); background: var(--surface-2); }
.gl-rec-option.on{ border-color: var(--accent); background: var(--accent-soft); }

.gl-rec-nav{ display: flex; justify-content: space-between; margin-top: 22px; }

/* ── 결과 ───────────────────────────────────────────────────────── */
.gl-rec-label{
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent); margin: 0 0 8px; text-transform: uppercase;
}
.gl-rec-product{ font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px; }
.gl-rec-product span{ font-size: 18px; color: var(--muted); font-weight: 700; }
.gl-rec-reason{ font-size: 15.5px; line-height: 1.8; color: var(--muted-2); margin: 0 0 22px; }

.gl-rec-alts{ border-top: 1px solid var(--gray-100); padding-top: 18px; margin-bottom: 22px; }
.gl-rec-alts ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gl-rec-alts li b{ display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.gl-rec-alts li span{ display: block; font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* 🔴 이 문구는 지우지 않는다. 화면 추천을 확정 견적처럼 보이게 두면 분쟁이 된다. */
.gl-rec-disclaimer{
  background: var(--accent-soft); border-left: 3px solid var(--accent);
  padding: 14px 17px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13.5px; font-weight: 700; color: var(--fg); line-height: 1.7; margin: 0 0 22px;
}

.gl-rec-picked{ margin-bottom: 22px; }
.gl-rec-picked ul{ list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--muted-2); }
.gl-rec-picked li{ padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.gl-rec-picked li:last-child{ border-bottom: 0; }

.gl-rec-actions{ display: flex; gap: 10px; flex-wrap: wrap; }
.gl-rec-cta{
  flex: 1; min-width: 200px; text-align: center;
  background: var(--chip); color: #fff; font-weight: 700; font-size: 15px;
  padding: 15px; border-radius: 100px; transition: background 0.25s ease;
}
.gl-rec-cta:hover{ background: var(--accent); }
.gl-rec .btn{
  border: 1.5px solid var(--line); background: transparent; border-radius: 100px;
  padding: 14px 22px; font: inherit; font-weight: 700; font-size: 14.5px; cursor: pointer;
}
.gl-rec .btn:hover{ border-color: var(--fg-strong); }

/* 영상 · 뉴스 */
.gl-rec-video, .gl-rec-news{ margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--gray-100); }
.gl-rec-embed{ border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 16/9; background: #000; }
.gl-rec-embed iframe{ width: 100%; height: 100%; border: 0; display: block; }
.gl-rec-news ul{ list-style: none; margin: 0; padding: 0; }
.gl-rec-news li{ padding: 11px 0; border-bottom: 1px solid var(--gray-100); }
.gl-rec-news li:last-child{ border-bottom: 0; }
.gl-rec-news a{ font-size: 14.5px; font-weight: 700; line-height: 1.5; display: block; }
.gl-rec-news a:hover{ color: var(--accent); }
.gl-rec-news li span{ display: block; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.gl-rec-newsnote{ font-size: 12.5px; color: var(--muted); margin: 12px 0 0; line-height: 1.6; }

@media (max-width: 600px){
  .gl-rec{ padding: 24px 20px 22px; }
  .gl-rec-q{ font-size: 20px; }
  .gl-rec-product{ font-size: 23px; }
}
