/* Venue introduction + the PDF viewer block.
   Mirrors scss/theme/pdf-viewer.theme.scss (no build tooling installed in this
   theme). */
.cafe-intro {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
  color: #4b2307;
}
.cafe-intro::before,
.cafe-intro::after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  max-width: 12rem;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, #ad6832 35%, #ad6832 65%, transparent);
}
.cafe-intro::before {
  margin-bottom: 2.25rem;
}
.cafe-intro::after {
  margin-top: 2.25rem;
}
.cafe-intro p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.95;
  letter-spacing: 0.01em;
}
.cafe-intro p:last-child {
  margin-bottom: 0;
}
.cafe-intro__title {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4b2307;
}
.cafe-intro__title::after {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 1rem auto 0;
  content: "";
  background-color: #ad6832;
  transform: rotate(45deg);
}

.pdf-viewer {
  max-width: 60rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 3.75rem;
  text-align: center;
}
.pdf-viewer__header {
  margin-bottom: 2.25rem;
}
.pdf-viewer__title {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4b2307;
}
.pdf-viewer__rule {
  display: block;
  width: 4.5rem;
  height: 1px;
  margin: 1.125rem auto 0;
  background-color: #ad6832;
}
.pdf-viewer__frame {
  position: relative;
  overflow: hidden;
  background-color: #f8f5f3;
  border: 1px solid #e6d9d1;
  box-shadow: 0 1.5rem 3rem rgba(75, 35, 7, 0.08);
}
.pdf-viewer__doc {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.414;
  border: 0;
}
@media (max-width: 767.98px) {
  .pdf-viewer__doc {
    aspect-ratio: 3/4;
  }
}
.pdf-viewer__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  color: #7e4b30;
}
.pdf-viewer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.pdf-viewer__btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f7f3f0;
  background-color: #7e4b30;
  border: 1px solid #7e4b30;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pdf-viewer__btn:hover, .pdf-viewer__btn:focus {
  color: #f7f3f0;
  background-color: #4b2307;
  border-color: #4b2307;
}
.pdf-viewer__btn--ghost {
  color: #7e4b30;
  background-color: transparent;
}
.pdf-viewer__btn--ghost:hover, .pdf-viewer__btn--ghost:focus {
  color: #f7f3f0;
  background-color: #7e4b30;
}
.pdf-viewer__size {
  font-weight: 400;
  letter-spacing: 0.08em;
}
