/* ==========================================================================
   testgogo — 허브 홈 전용
   ========================================================================== */

.hero { text-align: center; padding: 18px 0 26px; }
.hero h1 {
  margin-top: 14px;
  font-size: clamp(26px, 7.8vw, 33px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.3;
}
.hero p { margin-top: 11px; color: var(--ink-soft); font-size: 14.5px; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 6px 0 12px;
}
.section-head h2 { font-size: 17px; font-weight: 900; letter-spacing: -.02em; }
.section-head span { font-size: 12px; color: var(--ink-soft); }

/* ── 테스트 카드 ────────────────────────────────────────────────────────── */
.test-list { display: flex; flex-direction: column; gap: 12px; }

.test-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: transform .14s var(--ease), box-shadow .22s var(--ease), border-color .16s;
}
.test-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.test-card:active { transform: scale(.985); }

.test-thumb {
  width: 66px; height: 66px; flex: none;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 34px;
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
}
.test-body { flex: 1; min-width: 0; }
.test-body h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -.015em; }
.test-body p {
  font-size: 13px; color: var(--ink-soft);
  margin-top: 3px; line-height: 1.55;
}
.test-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.test-meta span {
  font-size: 11px; font-weight: 700;
  color: var(--ink-soft);
  background: #F6F2EB;
  padding: 4px 8px; border-radius: 999px;
}
.test-arrow { flex: none; color: var(--ink-soft); opacity: .45; font-size: 18px; }

/* 준비 중 */
.test-card.soon { opacity: .62; pointer-events: none; box-shadow: none; border: 1px dashed var(--line); background: rgba(255,255,255,.55); }
.test-card.soon .test-thumb { background: #F1ECE4; filter: grayscale(1); }

/* ── 소개 문단 ──────────────────────────────────────────────────────────── */
.about {
  margin-top: 30px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.about h2 { font-size: 15.5px; font-weight: 900; margin-bottom: 10px; }
.about p { font-size: 13.5px; color: #4A4239; line-height: 1.8; }
.about p + p { margin-top: 10px; }
.about ul { margin: 10px 0 0; padding-left: 18px; }
.about li { font-size: 13.5px; color: #4A4239; line-height: 1.8; }
