/* driver/assets/style/help.css — Central de Ajuda do motoboy.
   O painel reusa .vehiclesPanel/.drawerBody (já estilizados); aqui só a lista
   de informativos e o corpo do artigo (markdown-lite). Tokens --rv-*. */

#sideDrawer #helpPanel .drawerBody { padding: 4px 16px 24px; }

.helpList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.helpItem {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: var(--rv-card, #fff);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--rv-radius, 16px);
  padding: 14px;
  cursor: pointer;
  box-shadow: var(--rv-shadow, 0 1px 4px rgba(0, 0, 0, .06));
  transition: transform .08s ease, box-shadow .12s ease;
}
.helpItem:active { transform: scale(.985); }

.helpItemIcon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--rv-yellow, #F9D515);
  color: var(--rv-black, #1A1A1A);
  font-size: 18px;
}

.helpItemText {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.helpItemTitle {
  font-weight: 800;
  color: var(--rv-black, #1A1A1A);
  font-size: 15px;
  line-height: 1.25;
}
.helpItemSummary {
  color: var(--rv-gray-500, #6B6B6B);
  font-size: 12.5px;
  line-height: 1.3;
}
.helpItem .chev {
  flex: 0 0 auto;
  color: var(--rv-gray-500, #6B6B6B);
  font-size: 22px;
  line-height: 1;
}

/* ── Artigo aberto ──────────────────────────────────────────────────────── */
.helpArticle {
  margin-top: 4px;
  -webkit-overflow-scrolling: touch;
}
.helpArticleHead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.helpArticleTitle {
  font-size: 18px;
  font-weight: 900;
  color: var(--rv-black, #1A1A1A);
  margin: 0;
  line-height: 1.2;
}

.helpArticleBody { color: var(--rv-black, #1A1A1A); font-size: 14.5px; line-height: 1.55; }
.helpArticleBody h3 {
  font-size: 15.5px;
  font-weight: 900;
  margin: 18px 0 8px;
  color: var(--rv-black, #1A1A1A);
}
.helpArticleBody h4 {
  font-size: 14px;
  font-weight: 800;
  margin: 14px 0 6px;
  color: var(--rv-black, #1A1A1A);
}
.helpArticleBody p { margin: 0 0 10px; }
.helpArticleBody ul { margin: 0 0 12px; padding-left: 4px; list-style: none; }
.helpArticleBody li {
  position: relative;
  padding: 4px 0 4px 20px;
  color: var(--rv-black, #1A1A1A);
}
.helpArticleBody li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--rv-yellow, #F9D515);
  font-weight: 900;
}
.helpArticleBody strong { font-weight: 800; }
.helpArticleBody em { font-style: normal; color: var(--rv-gray-500, #6B6B6B); }
