/* Minimal replacement for WordPress' wp-block-library styles: only what the
 * exported post content actually uses (images, alignment, embeds, quotes,
 * tables, buttons, files, font sizes). */
.post-content img,
.program img,
article img {
  max-width: 100%;
  height: auto;
}
.wp-block-image {
  margin: 0 0 1em;
}
.wp-block-image img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.wp-block-image.aligncenter,
.wp-block-image .aligncenter,
img.aligncenter,
.aligncenter {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
figure.wp-block-image.aligncenter,
.wp-block-image .aligncenter {
  display: table;
}
.alignleft,
img.alignleft,
.wp-block-image .alignleft,
.wp-block-image.alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0 !important;
}
.alignright,
img.alignright,
.wp-block-image .alignright,
.wp-block-image.alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em !important;
}
.wp-block-image.is-resized img {
  height: auto;
}
.wp-block-image figcaption,
.wp-caption-text,
.wp-element-caption {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin: 0.5em 0 1em;
}
.wp-caption {
  max-width: 100%;
}
.wp-caption img {
  max-width: 100%;
  height: auto;
}
.wp-block-embed {
  margin: 0 0 1em;
}
.wp-block-embed__wrapper {
  position: relative;
}
.wp-block-embed iframe,
.post-content iframe {
  max-width: 100%;
}
.embed-responsive.embed-responsive-16by9 {
  margin-bottom: 1em;
}
.wp-block-separator {
  border: none;
  border-bottom: 2px solid #ccc;
  margin: 1.65em auto;
  width: 100px;
}
.wp-block-separator.is-style-wide,
.wp-block-separator.has-css-opacity {
  width: 100%;
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-right {
  text-align: right;
}
.has-text-align-left {
  text-align: left;
}
.has-small-font-size {
  font-size: 0.9em;
}
.has-medium-font-size {
  font-size: 1.15em;
}
.has-large-font-size {
  font-size: 1.5em;
}
.has-x-large-font-size {
  font-size: 2em;
}
.wp-block-table table,
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.wp-block-table td,
.wp-block-table th,
.post-content td,
.post-content th {
  border: 1px solid #ddd;
  padding: 0.5em;
  vertical-align: top;
}
.wp-block-quote,
.post-content blockquote {
  border-left: 4px solid #00529b;
  padding: 0.5em 0 0.5em 1.2em;
  margin: 1em 0 1.5em;
  font-size: 1.05em;
}
.wp-block-quote cite {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-top: 0.5em;
}
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1em;
}
.wp-block-button__link {
  display: inline-block;
  background: #00529b;
  color: #fff !important;
  padding: 0.6em 1.4em;
  border-radius: 5px;
  text-decoration: none !important;
  font-weight: 700;
}
.wp-block-file {
  margin-bottom: 1em;
}
.wp-block-file a.wp-block-file__button {
  display: inline-block;
  background: #00529b;
  color: #fff !important;
  padding: 0.4em 1em;
  border-radius: 4px;
  margin-left: 0.5em;
  text-decoration: none !important;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.wp-block-column {
  flex: 1 1 0;
  min-width: 250px;
}
.wp-block-group {
  margin-bottom: 1em;
}
.wp-block-spacer {
  clear: both;
}
.wp-block-preformatted,
.post-content pre {
  white-space: pre-wrap;
}
.post-content ul,
.post-content ol,
article ul,
article ol {
  margin-bottom: 1em;
}
.post-content li,
article li {
  font-size: 1.6em;
  margin-bottom: 0.3em;
}
.post-content li li,
article li li {
  font-size: 1em;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 1em 0 0.5em;
}
.post-content hr {
  margin: 1.5em 0;
}
.clearfix::after,
.post-content::after {
  content: '';
  display: table;
  clear: both;
}
