.blog-document-frame {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.blog-document-viewport {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.blog-document-stage {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
}

.blog-document-element {
  position: absolute;
  box-sizing: border-box;
}

.blog-document-rich,
.blog-document-button-shell {
  height: 100%;
  width: 100%;
}

.blog-document-align-left {
  text-align: left;
}

.blog-document-align-center {
  text-align: center;
}

.blog-document-align-right {
  text-align: right;
}

.blog-document-text {
  color: #14241e;
  font-family: "Crimson Pro", serif;
  white-space: normal;
}

.blog-document-heading {
  color: #14241e;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

.blog-document-quote-shell {
  position: relative;
  height: 100%;
  padding: 0 1.5rem 2.25rem 2.75rem;
}

.blog-document-quote-mark {
  position: absolute;
  left: 0;
  top: -0.35rem;
  color: rgba(122, 99, 72, 0.22);
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.blog-document-quote {
  color: #7a6348;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.blog-document-button-shell {
  display: flex;
  align-items: center;
}

.blog-document-button-shell.blog-document-align-center {
  justify-content: center;
}

.blog-document-button-shell.blog-document-align-right {
  justify-content: flex-end;
}

.blog-document-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid #7A6348;
  background: #7A6348;
  padding: 0 2.4rem;
  color: #f4f1e6;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.blog-document-button:hover {
  background: #ffffff;
  color: #7A6348;
}

.blog-document-image-shell {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border: 1px solid #d3c8b5;
  background: rgba(255, 255, 255, 0.4);
}

.blog-document-image-media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.blog-document-image-empty {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px dashed #d3c8b5;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(20, 36, 30, 0.48);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-document-divider {
  height: 100%;
  width: 100%;
}

.blog-document-divider--line {
  border-top: 1px solid var(--blog-divider-color, #d3c8b5);
}

.blog-document-divider--fade {
  position: relative;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--blog-divider-color-transparent, rgba(211, 200, 181, 0)),
    var(--blog-divider-color, #d3c8b5),
    var(--blog-divider-color-transparent, rgba(211, 200, 181, 0))
  );
}

.blog-document-divider--double {
  border-top: 1px solid var(--blog-divider-color, #d3c8b5);
  border-bottom: 1px solid var(--blog-divider-color, #d3c8b5);
}

@media (max-width: 767px) {
  .blog-document-quote-shell {
    padding: 0 0.85rem 1.5rem 2rem;
  }

  .blog-document-quote-mark {
    top: -0.15rem;
    font-size: 3.75rem;
  }
}
