/* ═══════════ 약제 LIVE 프로토타입 v0.3 ═══════════
   UX 표준가이드 반영:
   - 본문 16px 이상, 최소 12px(캡션 한정), 줄간격 1.5+
   - 명도대비 강화 (저대비 회색 금지), 색+아이콘/텍스트 병행
   - 터치 타깃 44px, 포커스 표시
   - 패널: 이동(드래그)·크기조절(리사이즈)·최대화·도킹
   v0.3: 데모 배경 → 더미 스켈레톤 목업, FAB 유도 화살표,
         헤더 태그라인 강화, 모바일 텍스트 확대, 탭 아이콘 제거
*/
:root {
  --bg: #0f172a;
  --panel-bg: #f8fafc;
  --card-bg: #ffffff;
  --ink: #111827;      /* 본문 — 흰 배경 대비 ~16:1 */
  --ink-2: #374151;    /* 보조 — ~10:1 */
  --ink-3: #4b5563;    /* 캡션 — ~7.5:1 (AAA) */
  --line: #d1d5db;
  --brand: #1d4ed8;    /* 흰 배경 대비 6.3:1 */
  --brand-strong: #1e40af;
  --brand-soft: #eff6ff;
  --green: #15803d;  --green-bg: #f0fdf4;   /* 4.5:1+ */
  --yellow: #a16207; --yellow-bg: #fefce8;  /* 4.5:1+ */
  --red: #b91c1c;    --red-bg: #fef2f2;     /* 5.9:1 */
  --radius: 14px;
  --shadow: 0 12px 40px rgba(15, 23, 42, .22);
  --touch: 44px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
  background: #e5e9f0; color: var(--ink);
  font-size: 16px; line-height: 1.55;
  min-height: 100vh; min-height: 100dvh;
}
button { font-family: inherit; cursor: pointer; font-size: inherit; }
input, textarea { font-family: inherit; }
:focus-visible { outline: 3px solid #93c5fd; outline-offset: 1px; }

/* ═══ 데모 배경 (PC) — 더미 스켈레톤 목업 ═══ */
#demo-desk { min-height: 100vh; }
.desk-header {
  background: var(--bg); color: #e2e8f0; padding: 14px 22px; font-size: 15px;
}
.desk-logo em { color: #94a3b8; font-style: normal; font-size: 13px; margin-left: 8px; }
.desk-body { padding: 30px 22px 130px; max-width: 900px; margin: 0 auto; }
.desk-doc {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 26px; box-shadow: 0 2px 8px rgba(15,23,42,.06);
}
.desk-doc.mock { position: relative; overflow: hidden; }
.mock-watermark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 44px; font-weight: 900; letter-spacing: 6px; color: rgba(15,23,42,.055);
  pointer-events: none; user-select: none; transform: rotate(-8deg);
}
.sk-row { display: flex; gap: 14px; align-items: center; padding: 13px 4px; border-bottom: 1px solid #eef1f5; }
.sk-row.head { border-bottom: 2px solid #e2e8f0; padding-bottom: 16px; }
.sk-table { margin-top: 2px; }
.sk-bar {
  display: inline-block; height: 13px; border-radius: 7px;
  background: linear-gradient(90deg, #e8ecf2 25%, #f3f5f9 45%, #e8ecf2 65%);
  background-size: 300% 100%; animation: skShimmer 2.4s ease infinite;
}
.sk-row.head .sk-bar { height: 17px; background: linear-gradient(90deg, #dde3ec 25%, #ecf0f6 45%, #dde3ec 65%); background-size: 300% 100%; }
@keyframes skShimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.sk-bar.w10 { width: 10%; } .sk-bar.w12 { width: 12%; } .sk-bar.w14 { width: 14%; }
.sk-bar.w26 { width: 26%; } .sk-bar.w30 { width: 30%; } .sk-bar.w34 { width: 34%; }
.sk-bar.w35 { width: 35%; } .sk-bar.w38 { width: 38%; } .sk-bar.w42 { width: 42%; }
.sk-bar.right { margin-left: auto; }

.drag-try {
  position: relative; z-index: 1;
  margin-top: 20px; padding: 16px 18px; border: 1.5px dashed #bfdbfe;
  border-radius: 12px; background: #f8fbff;
  display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center;
}
.drag-try-label { width: 100%; font-size: 15px; color: var(--ink-2); font-weight: 600; }
.drug-hint {
  color: var(--brand); font-weight: 700; cursor: pointer; font-size: 16px;
  background: #fff; border: 1px solid #dbeafe; border-radius: 9px; padding: 7px 13px;
}
.drug-hint:hover { background: var(--brand-soft); }
.desk-tip { margin-top: 18px; font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.desk-tip kbd {
  background: #f1f5f9; border: 1px solid var(--line); border-bottom-width: 2px;
  border-radius: 5px; padding: 1px 7px; font-size: 13px; font-family: inherit;
}

/* ═══ 드래그 선택 팝업 ═══ */
#selection-pop { position: absolute; z-index: 90; }
#selection-pop-btn {
  background: var(--bg); color: #fff; border: none; border-radius: 12px;
  padding: 12px 18px; font-size: 15px; font-weight: 700; box-shadow: var(--shadow);
  min-height: var(--touch); animation: popIn .15s ease;
}
#selection-pop-btn:hover { background: #1e293b; }
@keyframes popIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ═══ 플로팅 런처 ═══ */
#launcher {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  width: 64px; height: 64px; border-radius: 50%; border: none;
  background: var(--bg); font-size: 29px; box-shadow: var(--shadow);
  transition: transform .15s ease;
}
#launcher:hover { transform: scale(1.08); }
.launcher-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, .55); animation: pulse 2.2s infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

/* ═══ FAB 클릭 유도 화살표 ═══ */
#fab-arrow {
  position: fixed; right: 96px; bottom: 52px; z-index: 99;
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--bg); pointer-events: none;
  animation: arrowNudge 1.6s ease-in-out infinite;
  transition: opacity .25s ease;
}
.fab-arrow-label {
  background: var(--bg); color: #fff; font-size: 16px; font-weight: 800;
  border-radius: 12px; padding: 11px 16px; box-shadow: var(--shadow);
  white-space: nowrap;
}
.fab-arrow-svg { margin-top: 26px; color: var(--bg); }
@keyframes arrowNudge {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(7px, 7px); }
}
/* 패널이 열리면 화살표 숨김 (형제 선택자 — #fab-arrow는 #panel 뒤에 위치) */
#panel:not(.closed) ~ #fab-arrow { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  #fab-arrow, .sk-bar { animation: none; }
}

/* ═══ 패널 — 이동/리사이즈 가능한 플로팅 윈도우 ═══ */
#panel {
  position: fixed; z-index: 120;
  /* 초기 위치·크기는 JS가 관리 (기본: 우측 도킹) */
  top: 0; right: 0; width: 460px; height: 100vh; height: 100dvh;
  min-width: 360px; min-height: 420px;
  background: var(--panel-bg);
  box-shadow: -8px 0 40px rgba(15,23,42,.25);
  display: flex; flex-direction: column;
  border-radius: 0;
  transition: opacity .22s ease, transform .22s ease;
}
#panel.floating {
  border-radius: 16px; box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.12);
  overflow: hidden;
}
#panel.maxed { border-radius: 0; }
#panel.closed { opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none; }
#panel.dragging, #panel.resizing { transition: none; user-select: none; }

#panel-backdrop {
  position: fixed; inset: 0; z-index: 110; background: rgba(15,23,42,.35);
  backdrop-filter: blur(2px);
}

/* 리사이즈 핸들 (플로팅/도킹 시 JS가 활성화 결정) */
.rz { position: absolute; z-index: 10; }
.rz-w  { left: -4px; top: 0; bottom: 0; width: 10px; cursor: ew-resize; }
.rz-e  { right: -4px; top: 0; bottom: 0; width: 10px; cursor: ew-resize; }
.rz-s  { bottom: -4px; left: 0; right: 0; height: 10px; cursor: ns-resize; }
.rz-n  { top: -4px; left: 0; right: 0; height: 10px; cursor: ns-resize; }
.rz-sw { left: -5px; bottom: -5px; width: 16px; height: 16px; cursor: nesw-resize; }
.rz-se { right: -5px; bottom: -5px; width: 16px; height: 16px; cursor: nwse-resize; }

.panel-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 13px 14px; background: var(--bg); color: #fff; flex-shrink: 0;
  cursor: move; touch-action: none;
}
.brand { display: flex; align-items: flex-start; gap: 11px; pointer-events: none; min-width: 0; }
.brand-icon { font-size: 28px; margin-top: 2px; }
.brand h1 { font-size: 20px; letter-spacing: -.3px; line-height: 1.3; }
.brand-sub {
  font-size: 13.5px; font-weight: 600; color: #dbe4f0;
  margin-top: 3px; line-height: 1.45;
}
.head-actions { display: flex; gap: 6px; }
.head-actions button {
  background: rgba(255,255,255,.12); color: #e2e8f0; border: none;
  width: var(--touch); height: var(--touch); border-radius: 10px; font-size: 17px;
  cursor: pointer;
}
.head-actions button:hover { background: rgba(255,255,255,.25); color: #fff; }

.tabs { display: flex; background: var(--bg); padding: 0 10px; flex-shrink: 0; }
.tab {
  flex: 1; background: none; border: none; color: #cbd5e1;
  min-height: var(--touch); padding: 8px 4px 12px;
  font-size: 16px; font-weight: 700;
  border-bottom: 3px solid transparent;
}
.tab:hover { color: #fff; }
.tab.active { color: #fff; border-bottom-color: #3b82f6; }

.tab-body { display: none; flex: 1; overflow-y: auto; padding: 16px; -webkit-overflow-scrolling: touch; }
.tab-body.active { display: block; }
.tab-desc { font-size: 15px; color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; }

/* 검색 */
.search-box {
  position: sticky; top: 0; z-index: 5; background: var(--panel-bg);
  padding-bottom: 10px;
}
.search-inner { position: relative; }
#q, #kcd-input, textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; font-size: 16px; background: #fff; color: var(--ink);
  outline: none; transition: border-color .15s; min-height: var(--touch);
}
#q { padding-right: 48px; }
#q-clear {
  position: absolute; right: 6px; top: 4px;
  width: 40px; height: 40px; border: none; background: none;
  color: var(--ink-3); font-size: 17px; border-radius: 10px;
}
#q-clear:hover { background: #e2e8f0; color: var(--ink); }
#q:focus, #kcd-input:focus, textarea:focus { border-color: var(--brand); }
textarea { resize: vertical; line-height: 1.55; }
.field-label { display: block; font-size: 15px; font-weight: 800; color: var(--ink); margin: 16px 0 6px; }
.kcd-names { font-size: 14px; color: var(--brand-strong); margin-top: 6px; line-height: 1.6; min-height: 16px; }
.picker-label { font-size: 13px; color: var(--ink-3); margin: 8px 0 6px; font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chips.small { margin-bottom: 4px; }
.chip {
  background: #fff; border: 1.5px solid var(--line); border-radius: 22px;
  padding: 9px 15px; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  min-height: 40px;
}
.chip:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.chip.active { border-color: var(--brand); background: var(--brand); color: #fff; }
.chip-count { font-weight: 500; font-size: 12.5px; opacity: .75; margin-left: 3px; }

.primary-btn {
  width: 100%; margin-top: 14px; background: var(--brand); color: #fff;
  border: none; border-radius: 12px; padding: 14px; font-size: 16.5px; font-weight: 800;
  min-height: 52px;
}
.primary-btn:hover { background: var(--brand-strong); }
.demo-fill { text-align: center; margin-top: 10px; }
.demo-fill button {
  background: none; border: none; color: var(--ink-3); font-size: 14px;
  text-decoration: underline; min-height: var(--touch); padding: 0 10px;
}
.demo-fill button:hover { color: var(--brand); }

/* ═══ 약제 카드 ═══ */
.empty-state { text-align: center; color: var(--ink-3); font-size: 15px; padding: 40px 12px; line-height: 1.75; }
.empty-state .empty-icon { font-size: 34px; display: block; margin-bottom: 10px; }
.result-count { font-size: 14px; color: var(--ink-3); margin: 2px 0 10px; }
.card {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 17px; margin-bottom: 14px; box-shadow: 0 1px 4px rgba(15,23,42,.05);
  animation: cardIn .25s ease;
}
@keyframes cardIn { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.card h2 { font-size: 19px; letter-spacing: -.3px; line-height: 1.35; }
.card .name-en { font-size: 13px; color: var(--ink-3); font-weight: 500; margin-left: 5px; }
.copy-btn {
  flex-shrink: 0; background: var(--brand-soft); color: var(--brand-strong);
  border: 1.5px solid #bfdbfe;
  border-radius: 10px; padding: 8px 13px; font-size: 13.5px; font-weight: 800;
  white-space: nowrap; min-height: var(--touch); line-height: 1.35;
}
.copy-btn:hover { background: #dbeafe; }
.ingredient { font-size: 14.5px; color: var(--ink-2); margin-top: 4px; }
.meta-row { font-size: 13.5px; color: var(--ink-3); margin-top: 3px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.tag {
  font-size: 12.5px; font-weight: 700; border-radius: 7px; padding: 4px 10px;
  background: #f1f5f9; color: var(--ink-2); border: 1px solid #e2e8f0;
}
.tag.hot { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.tag.offlabel { background: var(--red-bg); color: var(--red); border-color: #fecaca; }

.sec { margin-top: 15px; }
.sec-title { font-size: 13px; font-weight: 800; color: var(--ink-3); letter-spacing: .3px; margin-bottom: 7px; }
.ind-list { display: flex; flex-direction: column; gap: 6px; }
.ind-item { font-size: 14.5px; line-height: 1.55; display: flex; gap: 8px; align-items: baseline; }
.ind-item .kcd-badge {
  flex-shrink: 0; font-size: 12px; font-weight: 800; background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 2px 8px; color: var(--ink-2); font-variant-numeric: tabular-nums;
}

.reimb-box { border-radius: 11px; padding: 12px 14px; font-size: 14.5px; border: 1px solid transparent; }
.reimb-box.full { background: var(--green-bg); border-color: #bbf7d0; }
.reimb-box.conditional { background: var(--yellow-bg); border-color: #fde68a; }
.reimb-box.none { background: var(--red-bg); border-color: #fecaca; }
.reimb-head { font-weight: 800; font-size: 15.5px; margin-bottom: 6px; }
.reimb-head .reimb-meta { font-weight: 500; font-size: 12.5px; color: var(--ink-3); }
.reimb-box.full .reimb-head { color: var(--green); }
.reimb-box.conditional .reimb-head { color: var(--yellow); }
.reimb-box.none .reimb-head { color: var(--red); }
.reimb-line { display: flex; justify-content: space-between; gap: 10px; padding: 3.5px 0; line-height: 1.5; }
.reimb-line .st { flex-shrink: 0; font-weight: 800; font-size: 13px; }
.st.급여 { color: var(--green); } .st.선별급여 { color: var(--yellow); }
.st.비급여, .st.급여기준외 { color: var(--red); }
.code-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; font-size: 14px; }
.code-cell { background: #f8fafc; border: 1px solid var(--line); border-radius: 9px; padding: 8px 11px; }
.code-cell b { display: block; font-size: 12px; color: var(--ink-3); font-weight: 700; margin-bottom: 3px; }

.review-points { background: var(--brand-soft); border: 1px solid #dbeafe; border-radius: 11px; padding: 12px 14px; }
.review-points li { font-size: 14.5px; line-height: 1.6; margin-left: 18px; padding: 2.5px 0; }

.timeline { border-left: 2px solid var(--line); margin-left: 6px; padding-left: 16px; }
.tl-item { position: relative; font-size: 14px; padding: 3.5px 0; color: var(--ink-2); line-height: 1.5; }
.tl-item::before {
  content: ""; position: absolute; left: -21.5px; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand); border: 2px solid #fff;
}
.tl-item b { color: var(--ink); font-variant-numeric: tabular-nums; margin-right: 7px; }

.src-line { margin-top: 12px; font-size: 12px; color: var(--ink-3); line-height: 1.55; }

/* ═══ 식약처 실데이터 검색 결과 (api.js) ═══ */
#api-results { margin-top: 4px; }
.api-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: var(--ink-2);
  margin: 14px 0 10px; padding-top: 14px; border-top: 1px dashed var(--line);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #dc2626;
  animation: pulse 2.2s infinite;
}
.api-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: 12px; padding: 14px 15px; margin-bottom: 10px; animation: cardIn .25s ease;
}
.api-card h3 { font-size: 16.5px; line-height: 1.4; letter-spacing: -.2px; }
.api-card .api-meta { font-size: 14px; color: var(--ink-2); margin-top: 4px; line-height: 1.6; }
.api-card .api-ingr { font-size: 13.5px; color: var(--ink-3); margin-top: 5px; line-height: 1.55; }
.api-card .api-cancel { color: var(--red); font-weight: 700; font-size: 13.5px; margin-left: 6px; }
.api-card a {
  display: inline-block; margin-top: 8px; font-size: 14px; font-weight: 700;
  color: var(--brand); text-decoration: none; min-height: auto;
}
.api-card a:hover { text-decoration: underline; }
.api-note { font-size: 12.5px; color: var(--ink-3); margin: 4px 0 10px; line-height: 1.55; }

/* ═══ 정합성 체크 결과 ═══ */
.check-card {
  border-radius: 13px; padding: 15px 16px; margin-top: 12px;
  border: 1px solid var(--line); background: #fff; animation: cardIn .25s ease;
}
.check-card.g { border-left: 5px solid var(--green); }
.check-card.y { border-left: 5px solid var(--yellow); }
.check-card.r { border-left: 5px solid var(--red); background: var(--red-bg); }
.check-head { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16.5px; }
.check-head .light { font-size: 18px; }
.check-body { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; margin-top: 7px; }
.check-body b { color: var(--ink); }
.check-actions { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.mini-btn {
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 9px 13px; font-size: 13.5px; font-weight: 700; color: var(--ink-2);
  min-height: 40px;
}
.mini-btn:hover { border-color: var(--brand); color: var(--brand); }
.check-summary {
  margin-top: 14px; background: var(--bg); color: #e2e8f0; border-radius: 13px;
  padding: 14px 16px; font-size: 14.5px; line-height: 1.65;
}
.check-summary b { color: #fff; }

/* ═══ 푸터/토스트 ═══ */
.panel-foot {
  flex-shrink: 0; display: flex; justify-content: space-between; gap: 8px;
  padding: 9px 16px; font-size: 12px; color: var(--ink-3);
  border-top: 1px solid var(--line); background: #fff;
  padding-bottom: max(9px, env(safe-area-inset-bottom));
}
#toast {
  position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 200; background: var(--bg); color: #fff; border-radius: 12px;
  padding: 14px 22px; font-size: 15px; font-weight: 700; box-shadow: var(--shadow);
  animation: popIn .2s ease; max-width: min(90vw, 480px); text-align: center;
}

/* ═══ 하이라이트 ═══ */
mark { background: #fde68a; border-radius: 3px; padding: 0 1px; }

/* ═══════════ 모바일 최적화 — 텍스트 확대(UX 가이드: 4050 가독성) ═══════════ */
@media (max-width: 640px) {
  #demo-desk, #fab-arrow { display: none; }
  body { background: var(--panel-bg); }
  #panel {
    top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100vw !important; height: 100dvh !important;
    min-width: 0; border-radius: 0 !important; border: none !important;
  }
  #panel.closed { opacity: 1; transform: none; pointer-events: auto; }
  .panel-head { cursor: default; }
  .head-actions, #launcher, #panel-backdrop, .rz { display: none !important; }
  #q, #kcd-input, textarea { font-size: 16px; } /* iOS 줌 방지 */

  /* 헤더 — 좁은 화면에서는 서브타이틀 줄바꿈 허용 */
  .brand h1 { font-size: 21px; }
  .brand-sub { font-size: 15px; }

  /* 탭 — 아이콘 제거로 확보된 폭만큼 글자 키움 */
  .tab { font-size: 16.5px; font-weight: 800; }

  /* 본문 텍스트 일괄 확대 (최소 13px, 본문류 15.5px+) */
  .tab-desc { font-size: 16px; }
  .field-label { font-size: 16.5px; }
  .kcd-names { font-size: 15px; }
  .picker-label { font-size: 14px; }
  .chip { font-size: 15.5px; min-height: var(--touch); }
  .chip-count { font-size: 13px; }
  .empty-state { font-size: 16px; }
  .demo-fill button { font-size: 15px; }
  .result-count { font-size: 14.5px; }

  .card h2 { font-size: 20px; }
  .card .name-en { font-size: 14px; }
  .copy-btn { font-size: 14.5px; }
  .ingredient { font-size: 15.5px; }
  .meta-row { font-size: 14.5px; }
  .tag { font-size: 13.5px; }
  .sec-title { font-size: 14px; }
  .ind-item { font-size: 15.5px; }
  .ind-item .kcd-badge { font-size: 13px; }
  .reimb-box { font-size: 15.5px; }
  .reimb-head { font-size: 16.5px; }
  .reimb-line .st { font-size: 14px; }
  .code-grid { font-size: 15px; }
  .code-cell b { font-size: 13px; }
  .review-points li { font-size: 15.5px; }
  .tl-item { font-size: 15px; }
  .src-line { font-size: 13px; }

  .check-head { font-size: 17.5px; }
  .check-body { font-size: 15.5px; }
  .mini-btn { font-size: 14.5px; min-height: var(--touch); }
  .check-summary { font-size: 15.5px; }

  .api-head { font-size: 14.5px; }
  .api-card h3 { font-size: 17px; }
  .api-card .api-meta { font-size: 15px; }
  .api-card .api-ingr { font-size: 14.5px; }
  .api-note { font-size: 13px; }

  .panel-foot { font-size: 13px; }
}
