@keyframes yellow-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes black-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-text-pulse {
  0% {
    color: var(--bs-body-color);
  }
  50% {
    color: var(--bs-link-color);
  }
  100% {
    color: var(--bs-body-color);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#misc-section .detail-content {
  padding: 1.75rem 2rem;
}
#misc-section .misc-content p:last-child {
  margin-bottom: 0;
}
#misc-section .misc-content h1, #misc-section .misc-content h2, #misc-section .misc-content h3, #misc-section .misc-content h4, #misc-section .misc-content h5, #misc-section .misc-content h6 {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  color: var(--theme-heading);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
#misc-section .misc-content h1:first-child, #misc-section .misc-content h2:first-child, #misc-section .misc-content h3:first-child, #misc-section .misc-content h4:first-child, #misc-section .misc-content h5:first-child, #misc-section .misc-content h6:first-child {
  margin-top: 0;
}
#misc-section .detail-sidebar .section-heading {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.misc-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.misc-sidebar-links li {
  border-bottom: 1px solid var(--theme-card-border);
  padding: 0.75rem 0;
}
.misc-sidebar-links li:last-child {
  border-bottom: 0;
}
.misc-sidebar-links li a {
  display: block;
  color: var(--bs-body-color);
  text-decoration: none;
}
.misc-sidebar-links li a:hover {
  color: var(--bs-link-color);
  text-decoration: none;
}
