hr {
  border-top: 1px dashed #fff !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  margin-bottom: 1.75rem !important;
}

/* cat modal */

#category-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10;
  display: none;
  visibility: hidden;
}
#category-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  max-width: 850px;
  max-height: 60vh;
  border-radius: 1rem;
  padding: 1rem;
  margin: auto;
  background: var(--bg-dm-secondary);
  display: none;
  visibility: hidden;
  line-height: 140%;
}
#category-modal-content {
  display: relative;
  max-height: calc(100% - 5rem);
  overflow: auto;
}
#category-modal-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  padding: 1rem;
}
#category-modal-bg.open,
#category-modal.open {
  display: block;
  visibility: visible;
}
.modal-article,
.modal-article-date {
  display: block;
  color: var(--text-dm-secondary);
}
.modal-article {
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
}
.modal-article-date {
  font-size: 1rem;
}
.modal-article:hover {
  background: rgba(0, 0, 0, 0.55);
}

/* queries */

@media screen and (max-width: 750px) {
  main {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 650px) {
  a.site-title {
    font-size: 3.5rem !important;
  }
  .site-title.article-page {
    font-size: 1.6rem !important;
  }
  footer {
    font-size: 0.8rem !important;
  }
}
