/* --- PDF lightbox ------------------------------------------------ */

.pdfcard {
  display: block;
  max-width: 30rem;
  margin: 2.5rem auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  color: inherit;
}

.pdfcard:hover,
.pdfcard:focus-visible {
  background: rgba(0, 0, 0, 0.03);
}

.pdfcard__title {
  display: block;
  font-size: 1.35rem;
  line-height: 1.25;
  font-style: italic;
}

.pdfcard__meta {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.pdfbox {
  display: none;
}

.pdfbox:target {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background: #141414;
}

.pdfbox__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
}

.pdfbox__bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdfbox__title {
  float: left;
}

.pdfbox__links {
  float: right;
}

.pdfbox__frame {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  height: calc(100% - 44px);
  border: 0;
  background: #fff;
}

.pdfbox__fallback {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 32px 24px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}

.pdfbox__fallback a {
  color: #fff;
}

@media (max-width: 820px) {
  .pdfbox__frame { display: none; }
  .pdfbox:target .pdfbox__fallback { display: block; }
}

/* --- end PDF lightbox --------------------------------------------- */

.wf-active body,
body.blog,
body.page,
body.single {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #333 !important;
}

.site-content .entry-content p {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #333 !important;
}