/* Book promo in header */

.theader {
  position: relative;
}

.book-promo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  background: rgba(0,0,0,0.65);
  padding: 10px 12px;
  border-radius: 6px;
}

.book-promo__img img {
  width: 64px;
  height: auto;
  display: block;
}

.book-promo__text {
  color: #ffffff;
  line-height: 1.25;
}

.book-promo__title {
  font-weight: bold;
  font-size: 1em;
}

.book-promo__blurb {
  font-size: 0.9em;
  margin: 4px 0 6px;
}

.book-promo__cta {
  color: #ffd27d;
  font-size: 0.9em;
  text-decoration: underline;
}
