/* Display styles for rendered rich text content (the public FAQ page, and the
 * editorial block on restaurant pages).
 *
 * trix.css ships the display rules for .trix-content, but it is linked only on
 * the admin edit views — loading it publicly would also ship trix-editor and
 * trix-toolbar chrome to every visitor. So the handful of rules a READER needs
 * are restated here. Without them an embedded image overflows the layout on
 * mobile, and actiontext.css (which IS in the public bundle) applies its
 * `max-width: 33%` gallery override to the children of a container nothing has
 * told to be a flex row. */
.trix-content p {
  margin: 1rem 0;
}

.trix-content ul,
.trix-content ol {
  margin: 1rem 0 1rem 1rem;
}

.trix-content li {
  margin-left: 1rem;
}

.trix-content img {
  height: auto;
  max-width: 100%;
}

.trix-content blockquote {
  border-left: 0.3em solid var(--border-gray);
  margin-left: 0.3em;
  padding-left: 0.6em;
}

.trix-content pre {
  display: inline-block;
  overflow-x: auto;
  padding: 0.5em;
  white-space: pre-wrap;
  width: 100%;
}

.trix-content .attachment {
  display: inline-block;
  max-width: 100%;
  position: relative;
}

.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

.trix-content .attachment__caption {
  text-align: center;
}

.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
