/* Doctrine Bible-reference hover cards and NET chapter popup links. */
.doctrine-bible-ref {
  color: #6f3f00;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
}
.doctrine-bible-ref:hover,
.doctrine-bible-ref:focus {
  color: #3f2500;
  background: rgba(194, 138, 58, .14);
  border-radius: 4px;
  outline: none;
}
.doctrine-bible-popover {
  position: absolute;
  z-index: 2147483000;
  max-width: min(420px, calc(100vw - 28px));
  padding: .85rem .95rem;
  border: 1px solid rgba(126, 83, 29, .35);
  border-radius: 14px;
  background: #fffaf2;
  color: #2d251d;
  box-shadow: 0 16px 38px rgba(34, 25, 12, .22);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .95rem;
  line-height: 1.42;
}
.doctrine-bible-popover.hidden { display: none; }
.doctrine-bible-popover h4 {
  margin: 0 0 .45rem;
  color: #3c2810;
  font-size: 1rem;
  line-height: 1.2;
}
.doctrine-bible-popover p {
  margin: .45rem 0;
}
.doctrine-bible-popover p.target {
  padding: .4rem .5rem;
  border-left: 4px solid #c28a3a;
  border-radius: 8px;
  background: #fff2d7;
}
.doctrine-bible-popover small {
  display: block;
  margin-top: .55rem;
  color: #6f6252;
  font-size: .78rem;
}
@media (max-width: 700px) {
  .doctrine-bible-popover {
    position: fixed;
    left: 14px !important;
    right: 14px;
    top: auto !important;
    bottom: 14px;
    max-width: none;
  }
}
