/* ======================================
   Shared Markup Styles (Bible + Notes)
====================================== */

/* Inline emphasis */
.mk-ital { font-style: italic; }
.mk-bold { font-weight: 700; }
.mk-bital { font-style: italic; font-weight: 700; }

/* Hard break */
.mk-br { display: block; height: 0.65em; }

/* Links (generic) */
.mk-link{
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  -webkit-tap-highlight-color: rgba(37,99,235,.18);
  -webkit-text-fill-color: currentColor;
}
@media (hover:hover){
  .mk-link:hover{ text-decoration: underline; }
}

/* Optional: “inline pill” look you might want later */
.mk-pill{
  display: inline-block;
  padding: 0.06em 0.5em;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.9em;
  background: rgba(37,99,235,.06);
}

/* ======================================
   Shared markup styles
====================================== */

/* Inline header (==like this==) */
.mk-inlineHeader{
  font-weight: 700;
  white-space: nowrap;
}

/* Optional: subtle spacing if used mid-sentence */
.mk-inlineHeader::after{
  content: " ";
}

/* Links ([[link]]) */
.mk-link{
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.mk-link:hover{
  text-decoration: underline;
}
