.reader-title {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.reader-header .reader-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border: 1px solid rgba(239, 181, 32, .7);
  border-radius: 999px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease;
}

.reader-header .reader-home:hover,
.reader-header .reader-home:focus-visible {
  background: var(--gold);
  color: var(--maroon-dark);
  outline: none;
}

.site-header.has-page-home {
  position: relative;
}

.site-header .page-home {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(239, 181, 32, .7);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: background-color .2s ease, color .2s ease;
}

.site-header .page-home:hover,
.site-header .page-home:focus-visible {
  background: var(--gold);
  color: var(--maroon-dark);
  outline: none;
}
