/******* Functions *******/
/******* Mixins *******/
/******* Bootstrap *******/
/**
* Fonts
*/
:root {
  --bs-primary: $blue;
  --bs-secondary: $gray-600;
  --bs-tertiary: $teal;
  --bs-success: $green;
  --bs-info: $cyan;
  --bs-warning: $yellow;
  --bs-danger: $red;
  --bs-light: $gray-100;
  --bs-dark: $gray-900;
}

/******* Variables *******/
.wysiwyg__header {
  margin-top: 0;
}

.wysiwyg__text {
  color: var(--bs-quaternary);
}

.wysiwyg__text *:first-child {
  margin-top: 0;
}

.wysiwyg--1:has(.wysiwyg__subheader) > .container {
  margin-top: 3.5rem;
}

.wysiwyg--1:has(.wysiwyg__subheader) .wysiwyg__subheader {
  margin-bottom: 1.5rem;
  margin-top: -3.5rem;
  border: 1px solid var(--light-gray);
}

.wysiwyg--2 {
  background-color: transparent;
}

.wysiwyg--2 .wysiwyg__text ul,
.wysiwyg--2 .wysiwyg__text ol,
.wysiwyg--2 .wysiwyg__text p {
  font-size: 1.125rem;
  color: var(--bs-quaternary) !important;
}

.wysiwyg--2 > .container > .wysiwyg-container {
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 1199.98px) {
  .wysiwyg--2 > .container > .wysiwyg-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 991.98px) {
  .wysiwyg--2 > .container > .wysiwyg-container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
@media (max-width: 767.98px) {
  .wysiwyg--2 > .container > .wysiwyg-container {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
  }
}
@media (max-width: 575.98px) {
  .wysiwyg--2 > .container > .wysiwyg-container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.wysiwyg--2[data-bs-theme=dark] > .container > .wysiwyg-container {
  background-color: var(--bs-dark) !important;
}

.wysiwyg--2[data-bs-theme=light] > .container > .wysiwyg-container {
  background-color: white !important;
}
