html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Roboto";
  color: #000000;
  background: #f0f0f4;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto";
  font-weight: 700;
  color: #05509b;
}

a {
  color: #05509b;
  text-decoration: none;
}
a:hover {
  color: #05509b;
  text-decoration: underline;
}

.site-header a:hover {
  text-decoration: none;
}

:root {
  --gap: 3.5rem;
  --container-max: 1200px;
  --container-w: 80vw;
  --radius: 12px;
  --hero-h: clamp(260px, 45vw, 520px);
  --hero-border: 16px;
  --hero-radius: var(--radius);
  --divider-h: 16px;
}

.container, .site-footer .footer-nav ul, .header-inner {
  width: min(var(--container-max), var(--container-w));
  margin-inline: auto;
}

.outer-container,
.padding-container,
.content-width-container,
.block {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.stack > * + * {
  margin-top: var(--gap);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
}
.branding .site-title {
  font-size: 1em;
  font-weight: 700;
  color: #05509b;
}
.branding .logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.site-header nav a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: 0.2s;
}

.site-header nav a.active,
.site-header nav a:hover {
  background: #05509b;
  color: #fff;
}

.burger {
  display: none;
  position: relative;
  width: 36px;
  height: 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #05509b;
  transition: 0.2s;
}
.burger span {
  top: 13px;
}
.burger::before {
  top: 4px;
}
.burger::after {
  bottom: 4px;
}

.site-header.is-open .burger::before {
  transform: translateY(9px) rotate(45deg);
}

.site-header.is-open .burger span {
  opacity: 0;
}

.site-header.is-open .burger::after {
  transform: translateY(-9px) rotate(-45deg);
}

.site-main {
  position: relative;
  flex: 1;
  z-index: 0;
  padding: 1.25rem 0 2rem;
  background: linear-gradient(to bottom, #fff 0, #fff calc(1.25rem + var(--hero-border) + var(--hero-h) / 2), #f0f0f4 calc(1.25rem + var(--hero-border) + var(--hero-h) / 2));
}

.hero.container, .site-footer .footer-nav ul.hero, .hero.header-inner {
  margin-bottom: 0;
  background: #fff;
  padding: var(--hero-border);
  border-radius: var(--hero-radius);
  position: relative;
  z-index: 1;
}

.hero.container::before, .site-footer .footer-nav ul.hero::before, .hero.header-inner::before,
.hero.container::after,
.site-footer .footer-nav ul.hero::after,
.hero.header-inner::after {
  content: "";
  position: absolute;
  top: calc(var(--hero-border) + var(--hero-h) / 2 - var(--divider-h) / 2);
  height: var(--divider-h);
  background: #05509b;
}

.hero.container::before, .site-footer .footer-nav ul.hero::before, .hero.header-inner::before {
  left: calc(-1 * (100vw - min(var(--container-max), var(--container-w))) / 2);
  width: calc((100vw - min(var(--container-max), var(--container-w))) / 2);
}

.hero.container::after, .site-footer .footer-nav ul.hero::after, .hero.header-inner::after {
  right: calc(-1 * (100vw - min(var(--container-max), var(--container-w))) / 2);
  width: calc((100vw - min(var(--container-max), var(--container-w))) / 2);
}

.hero img {
  width: 100%;
  height: var(--hero-h);
  object-fit: cover;
  border-radius: 8px;
}

.page-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  margin-top: var(--gap);
  position: relative;
  z-index: 1;
  transition: 0.25s ease;
}
.page-panel:last-child {
  margin-bottom: 0;
}
.page-panel a {
  color: #000000;
  transition: 0.2s;
}
.page-panel a:hover {
  color: #05509b;
  text-decoration: underline;
}

.form-container {
  width: min(var(--container-max), var(--container-w));
  margin-inline: auto;
  background: #ffffff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2vw, 2.5rem);
}
.form-container .form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #05509b;
  margin-bottom: 1rem;
}
.form-container .form-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.2rem 0 0.4rem;
  color: #05509b;
}
.form-container .help-block.with-errors {
  color: #ff0c00;
}
.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-container .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-container label > span,
.form-container legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: #05509b;
}
.form-container input.form-control,
.form-container select.form-control,
.form-container textarea.form-control {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid #d4d4d4;
  border-radius: var(--radius);
  font-size: 1rem;
  background: #ffffff;
  color: #000000;
  transition: border-color 0.2s;
}
.form-container input.form-control:focus,
.form-container select.form-control:focus,
.form-container textarea.form-control:focus {
  outline: none;
  border-color: #05509b;
}
.form-container textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.form-container fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-container fieldset label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.form-container input[type=checkbox],
.form-container input[type=radio] {
  accent-color: #05509b;
}
.form-container input[type=submit],
.form-container button,
.form-container .btn.btn-primary {
  background: #ffffff !important;
  color: #05509b !important;
  border: 2px solid #05509b !important;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.form-container input[type=submit]:hover,
.form-container button:hover,
.form-container .btn.btn-primary:hover {
  background: #05509b !important;
  color: #fff !important;
}

.site-footer {
  background: #ffffff;
  padding: 1rem 0;
  text-align: center;
  color: #05509b;
  font-size: 0.95rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--divider-h);
  background: #05509b;
  top: 0;
  transform: translateY(-50%);
}

.site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

@media (max-width: 600px) {
  :root {
    --container-w: 92vw;
    --hero-h: 220px;
    --hero-border: 6px;
  }
  .branding {
    font-size: 1.75rem;
  }
  .branding .logo {
    height: 4rem;
  }
  .burger {
    display: inline-block;
  }
  .site-header nav {
    display: none;
  }
  .site-header.is-open nav {
    display: block;
  }
  .site-header nav ul {
    flex-direction: column;
    align-items: center;
  }
  .site-header nav a {
    width: 100%;
    text-align: center;
    border-radius: 10px;
  }
  .hero.container, .hero.header-inner, .site-footer .footer-nav ul.hero {
    border-radius: 8px;
  }
}
.list-stack,
.mitglied-stack,
.personen-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card-base, .mitglied-card, .person-box, .mitglied-box {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  column-gap: 1.5rem;
  row-gap: 0.6rem;
  align-items: start;
  width: 100%;
  color: #000000;
  line-height: 1.45;
}
.card-base .col, .mitglied-card .col, .person-box .col, .mitglied-box .col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: left;
}
.card-base .col-logo, .mitglied-card .col-logo, .person-box .col-logo, .mitglied-box .col-logo,
.card-base .col-photo,
.mitglied-card .col-photo,
.person-box .col-photo,
.mitglied-box .col-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-base .col-logo img, .mitglied-card .col-logo img, .person-box .col-logo img, .mitglied-box .col-logo img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
}
.card-base .col-photo img, .mitglied-card .col-photo img, .person-box .col-photo img, .mitglied-box .col-photo img {
  max-height: 100px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.mitglied-box {
  grid-template-columns: 120px 1fr 1fr 1fr;
}

.person-box {
  grid-template-columns: 120px 1fr 1fr;
}

.col-company .company,
.person-name {
  font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.2rem);
  font-weight: 500;
  margin: 0;
  color: #000000;
}

.person-role {
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: #000000 !important;
}

.col-person .contact-name {
  margin: 0;
  font-weight: 500;
  color: #000000;
}

.col-person .address i,
.col-info .address i,
.col-contacts i {
  margin-right: 0.45rem;
  color: #000000;
}

.col-contacts p {
  margin: 0;
}

@media (max-width: 900px) {
  .mitglied-box,
  .person-box {
    grid-template-columns: 100px 1fr;
    column-gap: 1.25rem;
    row-gap: 0.75rem;
    padding: 1.5rem;
  }
  .mitglied-box .col-logo,
  .mitglied-box .col-photo,
  .person-box .col-logo,
  .person-box .col-photo {
    grid-column: 1;
    grid-row: 1/span 3;
  }
  .mitglied-box .col-company,
  .mitglied-box .col-person,
  .mitglied-box .col-contacts,
  .mitglied-box .col-info,
  .person-box .col-company,
  .person-box .col-person,
  .person-box .col-contacts,
  .person-box .col-info {
    grid-column: 2;
  }
}
@media (max-width: 600px) {
  .mitglied-box,
  .person-box {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
    padding: 1rem;
  }
  .mitglied-box .col-logo,
  .mitglied-box .col-company,
  .mitglied-box .col-person,
  .mitglied-box .col-contacts,
  .mitglied-box .col-photo,
  .mitglied-box .col-info,
  .person-box .col-logo,
  .person-box .col-company,
  .person-box .col-person,
  .person-box .col-contacts,
  .person-box .col-photo,
  .person-box .col-info {
    grid-column: 1;
    grid-row: auto;
  }
  .mitglied-box .col-logo,
  .person-box .col-logo {
    align-items: flex-start;
  }
  .mitglied-box .col-company .company,
  .person-box .col-company .company {
    font-size: clamp(1.1rem, 1rem + 1vw, 1.25rem);
  }
  .mitglied-box .col-contacts a,
  .person-box .col-contacts a {
    line-height: 1.5;
  }
}
.page-panel:has(.mitglied-grid-premium) {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.mitglied-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
  width: min(var(--container-max), var(--container-w));
  padding: 0;
  align-items: stretch;
}

.mitglied-card {
  flex: unset;
  max-width: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 1.25rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mitglied-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.mitglied-card .card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.mitglied-card .card-logo img {
  width: 100%;
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}
.mitglied-card .card-company {
  font-size: clamp(1rem, 0.85vw + 0.8rem, 1.15rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.mitglied-card .card-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}
.mitglied-card .card-contacts p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
}

@media (max-width: 1000px) {
  .mitglied-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
  .mitglied-card {
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .mitglied-grid-premium {
    grid-template-columns: 1fr;
  }
  .mitglied-card {
    padding: 1rem;
  }
  .mitglied-card .card-logo img {
    max-width: 120px;
    max-height: 55px;
  }
}
.event-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.event-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 1.5rem;
  row-gap: 0.6rem;
  color: #000000;
  line-height: 1.45;
}
.event-box .col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
}
.event-box .col-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-box .col-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.event-title {
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.4rem);
  font-weight: 700;
  color: #000000;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  line-height: 1.5;
}
.event-meta time,
.event-meta p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
}
.event-meta i {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .event-box {
    grid-template-columns: 160px 1fr;
    column-gap: 1.25rem;
    padding: 1.5rem;
  }
  .event-box .col-image img {
    height: 140px;
  }
}
@media (max-width: 600px) {
  .event-box {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .event-box .col-image,
  .event-box .col-text {
    grid-column: 1;
  }
  .event-box .col-image {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .event-box .col-image img {
    height: auto;
  }
}
.login-panel {
  max-width: 400px;
  margin: 10vh auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius);
}
.login-panel h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #05509b;
  font-weight: 700;
}
.login-panel label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #000000;
}
.login-panel input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #d4d4d4;
  border-radius: var(--radius);
  font-size: 1rem;
  background: #ffffff;
  color: #000000;
  transition: border-color 0.2s;
}
.login-panel input:focus {
  outline: none;
  border-color: #05509b;
}
.login-panel button {
  display: block;
  margin: 0 auto;
  background: #ffffff;
  color: #05509b;
  border: 2px solid #05509b;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.login-panel button:hover {
  background: #05509b;
  color: #ffffff;
}

:where(.mce-content-body, .rte) {
  font-family: "Roboto";
  color: #000000;
  background: transparent;
  font-size: 1rem;
  line-height: 1.65;
  --rte-gap: 0.9rem;
  --rte-gap-small: 0.5rem;
  --rte-softbreak: 0.4rem;
}
:where(.mce-content-body, .rte) > * {
  margin-top: 0;
  margin-bottom: var(--rte-gap);
}
:where(.mce-content-body, .rte) > *:last-child {
  margin-bottom: 0;
}
:where(.mce-content-body, .rte) p {
  margin-bottom: var(--rte-gap);
}
:where(.mce-content-body, .rte) p:empty {
  display: none;
}
:where(.mce-content-body, .rte) p br {
  display: block;
  margin-bottom: var(--rte-softbreak);
  line-height: 0;
}
:where(.mce-content-body, .rte) p br + br {
  margin-top: calc(var(--rte-softbreak) * 0.5);
}
:where(.mce-content-body, .rte) h1, :where(.mce-content-body, .rte) h2, :where(.mce-content-body, .rte) h3, :where(.mce-content-body, .rte) h4, :where(.mce-content-body, .rte) h5, :where(.mce-content-body, .rte) h6 {
  font-family: "Roboto";
  color: #05509b;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 var(--rte-gap);
}
:where(.mce-content-body, .rte) h1 {
  font-size: 2rem;
}
:where(.mce-content-body, .rte) h2 {
  font-size: 1.6rem;
}
:where(.mce-content-body, .rte) h3 {
  font-size: 1.35rem;
}
:where(.mce-content-body, .rte) h4 {
  font-size: 1.2rem;
}
:where(.mce-content-body, .rte) h5 {
  font-size: 1.05rem;
  margin-bottom: var(--rte-gap-small);
}
:where(.mce-content-body, .rte) h6 {
  font-size: 0.95rem;
  margin-bottom: var(--rte-gap-small);
  letter-spacing: 0.02em;
}
:where(.mce-content-body, .rte) strong, :where(.mce-content-body, .rte) b {
  font-weight: 700;
}
:where(.mce-content-body, .rte) em, :where(.mce-content-body, .rte) i {
  font-style: italic;
}
:where(.mce-content-body, .rte) u {
  text-underline-offset: 0.15em;
}
:where(.mce-content-body, .rte) del {
  opacity: 0.85;
}
:where(.mce-content-body, .rte) small {
  font-size: 0.875em;
}
:where(.mce-content-body, .rte) sup, :where(.mce-content-body, .rte) sub {
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
:where(.mce-content-body, .rte) sup {
  position: relative;
  top: -0.4em;
}
:where(.mce-content-body, .rte) sub {
  position: relative;
  top: 0.2em;
}
:where(.mce-content-body, .rte) mark {
  background: #fff59d;
  padding: 0 0.15em;
  border-radius: 2px;
}
:where(.mce-content-body, .rte) a {
  color: #05509b;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
:where(.mce-content-body, .rte) a:hover {
  color: #05509b;
}
:where(.mce-content-body, .rte) a:focus-visible {
  outline: 2px solid #05509b;
  outline-offset: 2px;
  border-radius: 4px;
}
:where(.mce-content-body, .rte) ul, :where(.mce-content-body, .rte) ol {
  margin: 0 0 var(--rte-gap) 1.3em;
  padding: 0;
}
:where(.mce-content-body, .rte) ul {
  list-style: disc outside;
}
:where(.mce-content-body, .rte) ol {
  list-style: decimal outside;
}
:where(.mce-content-body, .rte) li + li {
  margin-top: 0.25rem;
}
:where(.mce-content-body, .rte) li ul, :where(.mce-content-body, .rte) li ol {
  margin-top: 0.25rem;
  margin-left: 0.9em;
}
:where(.mce-content-body, .rte) li ul {
  list-style: circle;
}
:where(.mce-content-body, .rte) li ul ul {
  list-style: square;
}
:where(.mce-content-body, .rte) li ol {
  list-style: lower-alpha;
}
:where(.mce-content-body, .rte) li ol ol {
  list-style: lower-roman;
}
:where(.mce-content-body, .rte) blockquote {
  margin: var(--rte-gap-small) 0 var(--rte-gap);
  padding: 0.45rem 1rem;
  border-left: 4px solid #05509b;
  color: #03305d;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
}
:where(.mce-content-body, .rte) img, :where(.mce-content-body, .rte) video {
  max-width: 100%;
  height: auto;
  display: block;
}
:where(.mce-content-body, .rte) figure {
  margin: 0 0 var(--rte-gap);
}
:where(.mce-content-body, .rte) figcaption {
  font-size: 0.9rem;
  color: rgb(61.2, 61.2, 61.2);
  margin-top: 0.35rem;
  text-align: center;
}
:where(.mce-content-body, .rte) .table-wrap {
  overflow-x: auto;
}
:where(.mce-content-body, .rte) table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--rte-gap) 0;
}
:where(.mce-content-body, .rte) th, :where(.mce-content-body, .rte) td {
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  vertical-align: top;
}
:where(.mce-content-body, .rte) thead th {
  background: rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
:where(.mce-content-body, .rte) tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.02);
}
:where(.mce-content-body, .rte) code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.1em 0.3em;
  border-radius: 4px;
}
:where(.mce-content-body, .rte) pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.8rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 0 0 var(--rte-gap);
}
:where(.mce-content-body, .rte) pre code {
  background: transparent;
  padding: 0;
}
:where(.mce-content-body, .rte) .alignleft {
  float: left;
  margin: 0 0.8rem 0.5rem 0;
}
:where(.mce-content-body, .rte) .alignright {
  float: right;
  margin: 0 0 0.5rem 0.8rem;
}
:where(.mce-content-body, .rte) .aligncenter {
  display: block;
  margin-inline: auto;
}
:where(.mce-content-body, .rte)::after {
  content: "";
  display: table;
  clear: both;
}

/*# sourceMappingURL=style.css.map */
