/* Semantic Title Popup — adapted for light theme */
.semantic-title-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: #eee8d5;
  border: 1px solid #93a1a1;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.65em;
  font-weight: normal;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: -2px;
  padding-top: 6px;
}
.semantic-title-popup a {
  color: #268bd2;
  text-decoration: underline;
}
.semantic-title-popup a:hover {
  color: #2aa198;
}
.semantic-title-popup.visible {
  display: block;
}
@media (hover: hover) {
  h1:hover .semantic-title-popup {
    display: block;
  }
}