/* Gutenberg frontend/editor compatibility */

.entry-content-single [class^="wp-block-"],
.entry-content-single [class*=" wp-block-"] {
  box-sizing: border-box;
}

.entry-content-single .wp-block-image,
.entry-content-single .wp-block-embed,
.entry-content-single .wp-block-video,
.entry-content-single .wp-block-audio,
.entry-content-single .wp-block-gallery,
.entry-content-single .wp-block-table,
.entry-content-single .wp-block-buttons,
.entry-content-single .wp-block-columns,
.entry-content-single .wp-block-media-text,
.entry-content-single .wp-block-cover,
.entry-content-single .wp-block-quote,
.entry-content-single .wp-block-pullquote,
.entry-content-single .wp-block-code,
.entry-content-single .wp-block-preformatted,
.entry-content-single .wp-block-separator {
  margin-bottom: 1.5em;
}

.entry-content-single .wp-block-image img,
.entry-content-single .wp-block-media-text__media img,
.entry-content-single .wp-block-cover img,
.entry-content-single .wp-block-video video {
  max-width: 100%;
  height: auto;
}

.entry-content-single .wp-block-image figure,
.entry-content-single figure.wp-block-image,
.entry-content-single figure.wp-block-embed {
  max-width: 100%;
}

.entry-content-single .wp-block-embed__wrapper,
.entry-content-single .fluid-width-video-wrapper {
  position: relative;
  width: 100%;
}

.entry-content-single .wp-has-aspect-ratio .wp-block-embed__wrapper {
  height: 0;
  overflow: hidden;
}

.entry-content-single .wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}

.entry-content-single .wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  padding-bottom: 75%;
}

.entry-content-single .wp-has-aspect-ratio .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.entry-content-single .wp-block-embed iframe,
.entry-content-single .wp-block-video iframe {
  max-width: 100%;
}

.entry-content-single .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.entry-content-single .alignleft {
  float: left;
  margin: 0.35em 1.5em 1em 0;
}

.entry-content-single .alignright {
  float: right;
  margin: 0.35em 0 1em 1.5em;
}

.entry-content-single .alignwide {
  width: min(100%, 1100px);
  max-width: 1100px;
}

.blognetwork-single-no-sid .entry-content-single .alignwide {
  margin: auto;
}

.blognetwork-single-no-sid .entry-content-single .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.entry-content-single .wp-block-columns {
  display: flex;
  gap: 2em;
  flex-wrap: nowrap;
}

.entry-content-single .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}

.entry-content-single .wp-block-buttons {
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
  align-items: center;
}

.entry-content-single .wp-block-button__link {
  display: inline-block;
  text-decoration: none;
}

.entry-content-single .wp-block-table {
  overflow-x: auto;
}

.entry-content-single .wp-block-table table {
  width: 100%;
}

.entry-content-single .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.entry-content-single .wp-block-gallery .wp-block-image {
  margin: 0;
}

.entry-content-single .wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
}

.entry-content-single .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.entry-content-single .wp-block-quote {
  border-left: 4px solid currentColor;
  padding-left: 1em;
}

.entry-content-single .wp-block-pullquote {
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  padding: 2em 0;
  text-align: center;
}

.entry-content-single .wp-block-separator {
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.25;
}

@media (max-width: 768px) {
  .entry-content-single .alignleft,
  .entry-content-single .alignright {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .entry-content-single .wp-block-columns {
    flex-direction: column;
    gap: 1em;
  }

  .entry-content-single .wp-block-media-text {
    display: block;
  }
}
