/* 카테고리 빠른 진입 — 세로 알약 리스트 (시안 3 채택, 2026-05-28) */

.cats-carousel {
  margin: 0 0 18px;
}
.cv3-list { display: flex; flex-direction: column; gap: 8px; }
.cv3-pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--sep);
  border-radius: 999px; padding: 10px 14px 10px 10px;
  cursor: pointer; font-family: inherit;
  color: var(--text); text-align: left;
  transition: transform 0.1s, background 0.15s;
  width: 100%;
}
.cv3-pill:active { transform: scale(0.98); }
.cv3-pill:hover { background: rgba(245,158,11,0.06); }
[data-theme="light"] .cv3-pill { background: #fff; border-color: #ececec; }
.cv3-ico {
  flex-shrink: 0; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(245,158,11,0.12); color: #f59e0b;
  display: flex; align-items: center; justify-content: center;
}
.cv3-ico svg { width: 20px; height: 20px; }
.cv3-text { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cv3-label { font-size: 14px; font-weight: 800; letter-spacing: -0.2px; }
.cv3-sub   { font-size: 11.5px; color: var(--sub); font-weight: 600; }
.cv3-cta   { font-size: 11.5px; font-weight: 800; color: #f59e0b; flex-shrink: 0; }
