@charset "UTF-8";
/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-columns {
  color: var(--wp--preset--color--gray-dark);
}
.s-columns__ttl {
  margin-bottom: 2rem;
  margin: 0;
  color: var(--wp--preset--color--red);
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-columns__ttl {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns__ttl {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns__ttl {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 991px) {
  .s-columns__ttl {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns__ttl {
    margin-bottom: 1.25rem;
  }
}
.s-columns__grid {
  display: grid;
  align-items: flex-start;
  width: 100%;
  gap: 1.25rem;
}
@media screen and (max-width: 991px) {
  .s-columns__grid {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns__grid {
    gap: 1rem;
  }
}
.s-columns__grid.is-align-start {
  align-items: flex-start;
}
.s-columns__grid.is-align-center {
  align-items: center;
}
.s-columns__grid.is-align-end {
  align-items: flex-end;
}
.s-columns__slots {
  display: contents;
}
.s-columns__grid.is-cols-1 {
  grid-template-columns: minmax(0, 1fr);
}
.s-columns__grid.is-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  .s-columns__grid.is-cols-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.s-columns__grid.is-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .s-columns__grid.is-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns__grid.is-cols-3 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns__grid.is-reversed.is-cols-2 .s-columns-column:nth-child(1) {
    order: 2;
  }
  .s-columns__grid.is-reversed.is-cols-2 .s-columns-column:nth-child(2) {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .s-columns__grid.is-reversed.is-cols-3 .s-columns-column:nth-child(1) {
    order: 3;
  }
  .s-columns__grid.is-reversed.is-cols-3 .s-columns-column:nth-child(2) {
    order: 2;
  }
  .s-columns__grid.is-reversed.is-cols-3 .s-columns-column:nth-child(3) {
    order: 1;
  }
}

.s-columns-column {
  min-width: 0;
}
.s-columns-column.is-content-pad-medium .s-columns-column__blocks {
  padding: 2.1875rem;
  border-radius: 1.125rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-content-pad-medium .s-columns-column__blocks {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-content-pad-medium .s-columns-column__blocks {
    padding: 1.25rem;
  }
}
.s-columns-column.is-pad-left-small {
  padding-left: 1.5rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-pad-left-small {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-pad-left-small {
    padding-left: 0;
  }
}
.s-columns-column.is-pad-left-medium {
  padding-left: 3rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-pad-left-medium {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-pad-left-medium {
    padding-left: 0;
  }
}
.s-columns-column.is-pad-left-large {
  padding-left: 6.25rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-pad-left-large {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-pad-left-large {
    padding-left: 0;
  }
}
.s-columns-column.is-pad-right-small {
  padding-right: 1.5rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-pad-right-small {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-pad-right-small {
    padding-right: 0;
  }
}
.s-columns-column.is-pad-right-medium {
  padding-right: 3rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-pad-right-medium {
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-pad-right-medium {
    padding-right: 0;
  }
}
.s-columns-column.is-pad-right-large {
  padding-right: 6.25rem;
}
@media screen and (max-width: 991px) {
  .s-columns-column.is-pad-right-large {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-pad-right-large {
    padding-right: 0;
  }
}
.s-columns-column.is-image-square .s-columns-column__blocks :where(.wp-block-image) {
  aspect-ratio: 1/1;
}
.s-columns-column.is-image-square .s-columns-column__blocks :where(.wp-block-image) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .s-columns-column.is-image-square .s-columns-column__blocks :where(.wp-block-image) {
    aspect-ratio: 16/10;
  }
}
.s-columns-column__blocks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  min-width: 0;
  color: var(--wp--preset--color--gray-dark);
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks > *:first-child {
  margin-top: 0;
}
.s-columns-column__blocks > *:last-child {
  margin-bottom: 0;
}
.s-columns-column__blocks h1,
.s-columns-column__blocks h2 {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
  margin: 2rem 0 1rem;
}
.s-columns-column__blocks h1,
.s-columns-column__blocks h2 {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks h1,
  .s-columns-column__blocks h2 {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks h1,
  .s-columns-column__blocks h2 {
    font-size: 3.5rem;
  }
}
.s-columns-column__blocks h1:first-child,
.s-columns-column__blocks h2:first-child {
  margin-top: 0;
}
.s-columns-column__blocks h3 {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
  color: var(--wp--preset--color--red);
  margin: 1.75rem 0 0.75rem;
}
.s-columns-column__blocks h3 {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks h3 {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks h3 {
    font-size: 1.625rem;
  }
}
.s-columns-column__blocks h3:first-child {
  margin-top: 0;
}
.s-columns-column__blocks h4,
.s-columns-column__blocks h5,
.s-columns-column__blocks h6 {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
  margin: 1.5rem 0 0.5rem;
}
.s-columns-column__blocks h4,
.s-columns-column__blocks h5,
.s-columns-column__blocks h6 {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks h4,
  .s-columns-column__blocks h5,
  .s-columns-column__blocks h6 {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks h4,
  .s-columns-column__blocks h5,
  .s-columns-column__blocks h6 {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks h4:first-child,
.s-columns-column__blocks h5:first-child,
.s-columns-column__blocks h6:first-child {
  margin-top: 0;
}
.s-columns-column__blocks h6 {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.s-columns-column__blocks h6 {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks h6 {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks h6 {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks p {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  margin: 0 0 1rem;
}
.s-columns-column__blocks p {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks p {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks p {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks p:last-child {
  margin-bottom: 0;
}
.s-columns-column__blocks a:not(.c-btn) {
  color: var(--wp--preset--color--pink);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .s-columns-column__blocks a:not(.c-btn):hover {
    color: var(--wp--preset--color--red);
  }
}
.s-columns-column__blocks b,
.s-columns-column__blocks strong {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 700;
}
.s-columns-column__blocks b,
.s-columns-column__blocks strong {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks b,
  .s-columns-column__blocks strong {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks b,
  .s-columns-column__blocks strong {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks i,
.s-columns-column__blocks em {
  font-style: italic;
}
.s-columns-column__blocks u {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.s-columns-column__blocks s,
.s-columns-column__blocks del,
.s-columns-column__blocks strike {
  text-decoration: line-through;
}
.s-columns-column__blocks mark {
  background-color: color-mix(in srgb, var(--wp--preset--color--pink) 15%, transparent);
  color: inherit;
  padding: 0.0625rem 0.25rem;
}
.s-columns-column__blocks small {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.s-columns-column__blocks small {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks small {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks small {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks sub,
.s-columns-column__blocks sup {
  font-size: 0.75em;
  line-height: 0;
}
.s-columns-column__blocks code,
.s-columns-column__blocks kbd,
.s-columns-column__blocks samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
  background-color: var(--wp--preset--color--beige-light);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.s-columns-column__blocks code,
.s-columns-column__blocks kbd,
.s-columns-column__blocks samp {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks code,
  .s-columns-column__blocks kbd,
  .s-columns-column__blocks samp {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks code,
  .s-columns-column__blocks kbd,
  .s-columns-column__blocks samp {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks pre {
  margin: 1.5rem 0;
  padding: 1.25rem;
  overflow-x: auto;
  background-color: var(--wp--preset--color--beige-light);
  border-radius: 0.5rem;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks pre {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks pre {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks pre {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.s-columns-column__blocks ul,
.s-columns-column__blocks ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.s-columns-column__blocks ul:first-child,
.s-columns-column__blocks ol:first-child {
  margin-top: 0;
}
.s-columns-column__blocks ul:last-child,
.s-columns-column__blocks ol:last-child {
  margin-bottom: 0;
}
.s-columns-column__blocks ul ul,
.s-columns-column__blocks ul ol,
.s-columns-column__blocks ol ul,
.s-columns-column__blocks ol ol {
  margin: 0.5rem 0 0;
}
.s-columns-column__blocks ul li,
.s-columns-column__blocks ol li {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks ul li,
.s-columns-column__blocks ol li {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks ul li,
  .s-columns-column__blocks ol li {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks ul li,
  .s-columns-column__blocks ol li {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks ul li::marker,
.s-columns-column__blocks ol li::marker {
  color: var(--wp--preset--color--pink);
}
.s-columns-column__blocks ul li + li,
.s-columns-column__blocks ol li + li {
  margin-top: 0.5rem;
}
.s-columns-column__blocks ul li > ul,
.s-columns-column__blocks ul li > ol,
.s-columns-column__blocks ol li > ul,
.s-columns-column__blocks ol li > ol {
  margin-top: 0.5rem;
}
.s-columns-column__blocks ul {
  list-style: disc;
}
.s-columns-column__blocks ol {
  list-style: decimal;
}
.s-columns-column__blocks dl {
  margin: 1rem 0;
}
.s-columns-column__blocks dl dt {
  font-weight: 700;
  margin-top: 0.75rem;
}
.s-columns-column__blocks dl dt:first-child {
  margin-top: 0;
}
.s-columns-column__blocks dl dd {
  margin: 0.25rem 0 0 1rem;
}
.s-columns-column__blocks blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 0.1875rem solid var(--wp--preset--color--pink);
}
.s-columns-column__blocks blockquote p {
  margin: 0;
}
.s-columns-column__blocks blockquote p + p {
  margin-top: 0.75rem;
}
.s-columns-column__blocks blockquote cite,
.s-columns-column__blocks blockquote footer {
  display: block;
  margin-top: 0.75rem;
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
}
.s-columns-column__blocks blockquote cite,
.s-columns-column__blocks blockquote footer {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks blockquote cite,
  .s-columns-column__blocks blockquote footer {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks blockquote cite,
  .s-columns-column__blocks blockquote footer {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--wp--preset--color--beige-medium);
}
.s-columns-column__blocks img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}
.s-columns-column__blocks figure {
  margin: 1.5rem 0;
  max-width: 100%;
}
.s-columns-column__blocks figure img {
  margin: 0;
}
.s-columns-column__blocks figure figcaption {
  margin-top: 0.5rem;
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.75;
}
.s-columns-column__blocks figure figcaption {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks figure figcaption {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks figure figcaption {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks figure img {
  margin: 0;
}
.s-columns-column__blocks table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks table {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks table {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks table {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks table th,
.s-columns-column__blocks table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wp--preset--color--beige-medium);
  text-align: left;
  vertical-align: top;
}
.s-columns-column__blocks table th {
  font-weight: 700;
  background-color: var(--wp--preset--color--beige-light);
}
.s-columns-column__blocks h1 {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-columns-column__blocks h1 {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks h1 {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks h1 {
    font-size: 3.5rem;
  }
}
.s-columns-column__blocks h1:not(:first-child) {
  margin-top: 2rem;
}
.s-columns-column__blocks h6 {
  font-weight: 400;
  font-family: "the-seasons", serif;
}
.s-columns-column__blocks h6 {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks h6 {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks h6 {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks h6:not(:first-child) {
  margin-top: 1rem;
}
.s-columns-column__blocks figure {
  margin: 2rem 0;
  max-width: 100%;
}
.s-columns-column__blocks figure:first-child {
  margin-top: 0;
}
.s-columns-column__blocks figure img {
  margin: 0;
}
.s-columns-column__blocks figcaption,
.s-columns-column__blocks .wp-element-caption,
.s-columns-column__blocks .wp-caption-text {
  margin-top: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.75;
}
.s-columns-column__blocks figcaption,
.s-columns-column__blocks .wp-element-caption,
.s-columns-column__blocks .wp-caption-text {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks figcaption,
  .s-columns-column__blocks .wp-element-caption,
  .s-columns-column__blocks .wp-caption-text {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks figcaption,
  .s-columns-column__blocks .wp-element-caption,
  .s-columns-column__blocks .wp-caption-text {
    font-size: 0.75rem;
  }
}
.s-columns-column__blocks .wp-caption {
  max-width: 100%;
}
.s-columns-column__blocks .wp-caption img {
  margin: 0;
}
.s-columns-column__blocks .aligncenter {
  display: block;
  margin-inline: auto;
  text-align: center;
}
.s-columns-column__blocks .aligncenter figcaption,
.s-columns-column__blocks .aligncenter .wp-element-caption {
  text-align: center;
}
.s-columns-column__blocks .alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1rem 0;
  max-width: 50%;
}
.s-columns-column__blocks .alignright {
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
  max-width: 50%;
}
.s-columns-column__blocks .alignwide {
  width: min(100%, 100% + 5rem);
  max-width: none;
  margin-inline: auto;
}
.s-columns-column__blocks .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  border-radius: 0;
}
.s-columns-column__blocks .alignfull img {
  border-radius: 0;
}
.s-columns-column__blocks img.size-medium,
.s-columns-column__blocks figure.size-medium img {
  max-width: 25rem;
  width: 100%;
}
.s-columns-column__blocks img.size-thumbnail,
.s-columns-column__blocks figure.size-thumbnail img {
  max-width: 9.375rem;
  width: auto;
}
.s-columns-column__blocks blockquote,
.s-columns-column__blocks .wp-block-quote {
  margin: 1.5rem 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 0.1875rem solid currentColor;
  font-style: italic;
}
.s-columns-column__blocks blockquote p,
.s-columns-column__blocks .wp-block-quote p {
  margin-top: 0.75rem;
}
.s-columns-column__blocks blockquote p:first-child,
.s-columns-column__blocks .wp-block-quote p:first-child {
  margin-top: 0;
}
.s-columns-column__blocks blockquote cite,
.s-columns-column__blocks blockquote footer,
.s-columns-column__blocks .wp-block-quote cite,
.s-columns-column__blocks .wp-block-quote footer {
  display: block;
  margin-top: 0.75rem;
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
}
.s-columns-column__blocks blockquote cite,
.s-columns-column__blocks blockquote footer,
.s-columns-column__blocks .wp-block-quote cite,
.s-columns-column__blocks .wp-block-quote footer {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks blockquote cite,
  .s-columns-column__blocks blockquote footer,
  .s-columns-column__blocks .wp-block-quote cite,
  .s-columns-column__blocks .wp-block-quote footer {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks blockquote cite,
  .s-columns-column__blocks blockquote footer,
  .s-columns-column__blocks .wp-block-quote cite,
  .s-columns-column__blocks .wp-block-quote footer {
    font-size: 0.75rem;
  }
}
.s-columns-column__blocks .wp-block-pullquote {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--wp--preset--color--beige-medium);
  border-bottom: 1px solid var(--wp--preset--color--beige-medium);
  border-left: none;
}
.s-columns-column__blocks .wp-block-pullquote blockquote {
  border: none;
  padding: 0;
  margin: 0;
}
.s-columns-column__blocks .wp-block-pullquote cite {
  margin-top: 1rem;
}
.s-columns-column__blocks code,
.s-columns-column__blocks kbd,
.s-columns-column__blocks samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
  background-color: var(--wp--preset--color--beige-medium);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.s-columns-column__blocks code,
.s-columns-column__blocks kbd,
.s-columns-column__blocks samp {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks code,
  .s-columns-column__blocks kbd,
  .s-columns-column__blocks samp {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks code,
  .s-columns-column__blocks kbd,
  .s-columns-column__blocks samp {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks pre,
.s-columns-column__blocks .wp-block-code {
  margin: 1.5rem 0;
  padding: 1.25rem;
  overflow-x: auto;
  background-color: var(--wp--preset--color--beige-medium);
  border-radius: 0.5rem;
}
.s-columns-column__blocks pre code,
.s-columns-column__blocks .wp-block-code code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.s-columns-column__blocks table,
.s-columns-column__blocks .wp-block-table table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-weight: 400;
}
.s-columns-column__blocks table,
.s-columns-column__blocks .wp-block-table table {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks table,
  .s-columns-column__blocks .wp-block-table table {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks table,
  .s-columns-column__blocks .wp-block-table table {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks table th,
.s-columns-column__blocks table td,
.s-columns-column__blocks .wp-block-table table th,
.s-columns-column__blocks .wp-block-table table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wp--preset--color--beige-medium);
  text-align: left;
  vertical-align: top;
}
.s-columns-column__blocks table th,
.s-columns-column__blocks .wp-block-table table th {
  font-weight: 700;
}
.s-columns-column__blocks .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.s-columns-column__blocks hr,
.s-columns-column__blocks .wp-block-separator {
  margin: 2.5rem auto;
  border: none;
  border-top: 1px solid var(--wp--preset--color--beige-medium);
  opacity: 1;
  max-width: 7.5rem;
}
.s-columns-column__blocks hr.is-style-wide,
.s-columns-column__blocks .wp-block-separator.is-style-wide {
  max-width: 100%;
}
.s-columns-column__blocks hr.is-style-dots,
.s-columns-column__blocks .wp-block-separator.is-style-dots {
  border: none;
  max-width: none;
  text-align: center;
}
.s-columns-column__blocks hr.is-style-dots::before,
.s-columns-column__blocks .wp-block-separator.is-style-dots::before {
  content: "···";
  letter-spacing: 0.75rem;
  font-weight: 400;
}
.s-columns-column__blocks hr.is-style-dots::before,
.s-columns-column__blocks .wp-block-separator.is-style-dots::before {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks hr.is-style-dots::before,
  .s-columns-column__blocks .wp-block-separator.is-style-dots::before {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks hr.is-style-dots::before,
  .s-columns-column__blocks .wp-block-separator.is-style-dots::before {
    font-size: 1.25rem;
  }
}
.s-columns-column__blocks .wp-block-embed,
.s-columns-column__blocks .wp-block-video,
.s-columns-column__blocks .wp-block-audio,
.s-columns-column__blocks .wp-block-media-text {
  margin: 2rem 0;
  max-width: 100%;
}
.s-columns-column__blocks .wp-block-embed__wrapper,
.s-columns-column__blocks .wp-block-video video {
  max-width: 100%;
}
.s-columns-column__blocks .wp-block-embed iframe {
  max-width: 100%;
}
.s-columns-column__blocks .wp-block-gallery,
.s-columns-column__blocks .blocks-gallery-grid,
.s-columns-column__blocks .wp-block-media-text {
  gap: 0.5rem;
}
.s-columns-column__blocks .wp-block-gallery,
.s-columns-column__blocks .blocks-gallery-grid {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}
.s-columns-column__blocks .wp-block-buttons {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.s-columns-column__blocks .wp-block-button__link {
  text-decoration: none;
}
.s-columns-column__blocks ul ul,
.s-columns-column__blocks ol ol,
.s-columns-column__blocks ul ol,
.s-columns-column__blocks ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.s-columns-column__blocks dl {
  margin: 1.5rem 0;
}
.s-columns-column__blocks dt {
  font-weight: 700;
  margin-top: 0.75rem;
}
.s-columns-column__blocks dd {
  margin-left: 1rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.s-columns-column__blocks mark {
  background-color: rgba(255, 128, 0, 0.25);
  padding: 0.0625rem 0.25rem;
}
.s-columns-column__blocks sub,
.s-columns-column__blocks sup {
  font-size: 0.75em;
  line-height: 0;
}
.s-columns-column__blocks .has-text-align-center {
  text-align: center;
}
.s-columns-column__blocks .has-text-align-right {
  text-align: right;
}
.s-columns-column__blocks .has-text-align-left {
  text-align: left;
}
@media screen and (max-width: 991px) {
  .s-columns-column__blocks .alignleft,
  .s-columns-column__blocks .alignright {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  .s-columns-column__blocks .alignwide,
  .s-columns-column__blocks .alignfull {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  .s-columns-column__blocks figure,
  .s-columns-column__blocks .wp-block-image,
  .s-columns-column__blocks .wp-caption,
  .s-columns-column__blocks .wp-block-media-text__media {
    max-width: 100%;
  }
  .s-columns-column__blocks figure img,
  .s-columns-column__blocks .wp-block-image img,
  .s-columns-column__blocks .wp-caption img,
  .s-columns-column__blocks .wp-block-media-text__media img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin: 0;
  }
  .s-columns-column__blocks .wp-caption {
    margin: 1.5rem 0;
  }
  .s-columns-column__blocks > img,
  .s-columns-column__blocks p > img,
  .s-columns-column__blocks .wp-block-gallery .blocks-gallery-item img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .s-columns-column__blocks img.size-medium,
  .s-columns-column__blocks figure.size-medium img,
  .s-columns-column__blocks img.size-thumbnail,
  .s-columns-column__blocks figure.size-thumbnail img {
    max-width: 100%;
    width: 100%;
  }
  .s-columns-column__blocks figcaption,
  .s-columns-column__blocks .wp-element-caption,
  .s-columns-column__blocks .wp-caption-text {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .s-columns-column__blocks pre,
  .s-columns-column__blocks .wp-block-code {
    padding: 1rem;
  }
}
.s-columns-column__blocks::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 991px) {
  .s-columns-column__blocks {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .s-columns-column__blocks {
    gap: 1.25rem;
  }
}
.s-columns-column__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}
.s-columns-column__blocks p,
.s-columns-column__blocks .wp-block-paragraph {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks p,
.s-columns-column__blocks .wp-block-paragraph {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks p,
  .s-columns-column__blocks .wp-block-paragraph {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks p,
  .s-columns-column__blocks .wp-block-paragraph {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.s-columns-column__blocks .has-ui-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.s-columns-column__blocks .has-ui-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .s-columns-column__blocks .has-ui-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .s-columns-column__blocks .has-ui-font-size {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.s-columns-column__blocks .has-small-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.s-columns-column__blocks .has-small-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .s-columns-column__blocks .has-small-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .s-columns-column__blocks .has-small-font-size {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.s-columns-column__blocks .has-base-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.s-columns-column__blocks .has-base-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .s-columns-column__blocks .has-base-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .s-columns-column__blocks .has-base-font-size {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.s-columns-column__blocks .has-medium-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 700;
}
.s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.s-columns-column__blocks .has-medium-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .s-columns-column__blocks .has-medium-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .s-columns-column__blocks .has-medium-font-size {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.s-columns-column__blocks .has-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.s-columns-column__blocks .has-large-font-size {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .s-columns-column__blocks .has-large-font-size {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .s-columns-column__blocks .has-large-font-size {
    font-size: 1.625rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.s-columns-column__blocks .has-x-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.s-columns-column__blocks .has-x-large-font-size {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .s-columns-column__blocks .has-x-large-font-size {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .s-columns-column__blocks .has-x-large-font-size {
    font-size: 3.5rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.s-columns-column__blocks .has-display-xl-font-size {
  font-family: "poppins", sans-serif;
  line-height: 0.96;
  font-weight: 500;
}
.s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.s-columns-column__blocks .has-display-xl-font-size {
  font-size: 32px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .s-columns-column__blocks .has-display-xl-font-size {
    font-size: calc(32px + 18 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .s-columns-column__blocks .has-display-xl-font-size {
    font-size: 3.125rem;
  }
}
.s-columns-column__blocks :where(.wp-block-image) {
  margin: 0;
  width: 100%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.s-columns-column__blocks :where(.wp-block-image) img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
}
.s-columns-column__blocks :where(.wp-block-video, .wp-block-embed) {
  margin: 0;
  width: 100%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.s-columns-column__blocks :where(.wp-block-quote, .wp-block-pullquote) {
  margin: 0;
}
.s-columns-column__blocks :where(.wp-block-list) {
  margin: 0;
}
.s-columns-column__blocks :where(.wp-block-separator) {
  margin: 0;
}
.s-columns-column__blocks :where(.c-buttons, .wp-block-madare-theme-buttons, .wp-block-madare-theme-button) {
  margin: 0;
}
.s-columns-column__blocks .wp-block-heading {
  margin: 0;
}
.s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
  color: var(--wp--preset--color--red) !important;
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
    font-size: 3.5rem;
  }
}
.s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
  color: var(--wp--preset--color--red);
  font-size: 1.625rem !important;
}
.s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
    font-size: 1.625rem;
  }
}
.s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
  font-size: 0.875rem !important;
}
.s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
  font-size: 0.8125rem !important;
}
.s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
  color: var(--wp--preset--color--red);
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 3.5rem;
  }
}
.s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
  color: var(--wp--preset--color--red);
}
.s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 1.625rem;
  }
}
.s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks p,
.s-columns-column__blocks .wp-block-paragraph {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks p,
.s-columns-column__blocks .wp-block-paragraph {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks p,
  .s-columns-column__blocks .wp-block-paragraph {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks p,
  .s-columns-column__blocks .wp-block-paragraph {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.s-columns-column__blocks .has-ui-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.s-columns-column__blocks .has-ui-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .s-columns-column__blocks .has-ui-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .s-columns-column__blocks .has-ui-font-size {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.s-columns-column__blocks .has-small-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.s-columns-column__blocks .has-small-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .s-columns-column__blocks .has-small-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .s-columns-column__blocks .has-small-font-size {
    font-size: 0.8125rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.s-columns-column__blocks .has-base-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.s-columns-column__blocks .has-base-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .s-columns-column__blocks .has-base-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .s-columns-column__blocks .has-base-font-size {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.s-columns-column__blocks .has-medium-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 700;
}
.s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.s-columns-column__blocks .has-medium-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .s-columns-column__blocks .has-medium-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .s-columns-column__blocks .has-medium-font-size {
    font-size: 0.875rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.s-columns-column__blocks .has-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.s-columns-column__blocks .has-large-font-size {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .s-columns-column__blocks .has-large-font-size {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .s-columns-column__blocks .has-large-font-size {
    font-size: 1.625rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.s-columns-column__blocks .has-x-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.s-columns-column__blocks .has-x-large-font-size {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .s-columns-column__blocks .has-x-large-font-size {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .s-columns-column__blocks .has-x-large-font-size {
    font-size: 3.5rem;
  }
}
.s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.s-columns-column__blocks .has-display-xl-font-size {
  font-family: "poppins", sans-serif;
  line-height: 0.96;
  font-weight: 500;
}
.s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.s-columns-column__blocks .has-display-xl-font-size {
  font-size: 32px;
}
@media screen and (min-width: 569px) {
  .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .s-columns-column__blocks .has-display-xl-font-size {
    font-size: calc(32px + 18 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .s-columns-column__blocks .has-display-xl-font-size {
    font-size: 3.125rem;
  }
}

.editor-styles-wrapper .s-columns-column__blocks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  min-width: 0;
  color: var(--wp--preset--color--gray-dark);
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks > *:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks > *:last-child {
  margin-bottom: 0;
}
.editor-styles-wrapper .s-columns-column__blocks h1,
.editor-styles-wrapper .s-columns-column__blocks h2 {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
  margin: 2rem 0 1rem;
}
.editor-styles-wrapper .s-columns-column__blocks h1,
.editor-styles-wrapper .s-columns-column__blocks h2 {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks h1,
  .editor-styles-wrapper .s-columns-column__blocks h2 {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks h1,
  .editor-styles-wrapper .s-columns-column__blocks h2 {
    font-size: 3.5rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks h1:first-child,
.editor-styles-wrapper .s-columns-column__blocks h2:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks h3 {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
  color: var(--wp--preset--color--red);
  margin: 1.75rem 0 0.75rem;
}
.editor-styles-wrapper .s-columns-column__blocks h3 {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks h3 {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks h3 {
    font-size: 1.625rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks h3:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks h4,
.editor-styles-wrapper .s-columns-column__blocks h5,
.editor-styles-wrapper .s-columns-column__blocks h6 {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
  margin: 1.5rem 0 0.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks h4,
.editor-styles-wrapper .s-columns-column__blocks h5,
.editor-styles-wrapper .s-columns-column__blocks h6 {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks h4,
  .editor-styles-wrapper .s-columns-column__blocks h5,
  .editor-styles-wrapper .s-columns-column__blocks h6 {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks h4,
  .editor-styles-wrapper .s-columns-column__blocks h5,
  .editor-styles-wrapper .s-columns-column__blocks h6 {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks h4:first-child,
.editor-styles-wrapper .s-columns-column__blocks h5:first-child,
.editor-styles-wrapper .s-columns-column__blocks h6:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks h6 {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.editor-styles-wrapper .s-columns-column__blocks h6 {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks h6 {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks h6 {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks p {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  margin: 0 0 1rem;
}
.editor-styles-wrapper .s-columns-column__blocks p {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks p {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks p {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks p:last-child {
  margin-bottom: 0;
}
.editor-styles-wrapper .s-columns-column__blocks a:not(.c-btn) {
  color: var(--wp--preset--color--pink);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .editor-styles-wrapper .s-columns-column__blocks a:not(.c-btn):hover {
    color: var(--wp--preset--color--red);
  }
}
.editor-styles-wrapper .s-columns-column__blocks b,
.editor-styles-wrapper .s-columns-column__blocks strong {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 700;
}
.editor-styles-wrapper .s-columns-column__blocks b,
.editor-styles-wrapper .s-columns-column__blocks strong {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks b,
  .editor-styles-wrapper .s-columns-column__blocks strong {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks b,
  .editor-styles-wrapper .s-columns-column__blocks strong {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks i,
.editor-styles-wrapper .s-columns-column__blocks em {
  font-style: italic;
}
.editor-styles-wrapper .s-columns-column__blocks u {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.editor-styles-wrapper .s-columns-column__blocks s,
.editor-styles-wrapper .s-columns-column__blocks del,
.editor-styles-wrapper .s-columns-column__blocks strike {
  text-decoration: line-through;
}
.editor-styles-wrapper .s-columns-column__blocks mark {
  background-color: color-mix(in srgb, var(--wp--preset--color--pink) 15%, transparent);
  color: inherit;
  padding: 0.0625rem 0.25rem;
}
.editor-styles-wrapper .s-columns-column__blocks small {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks small {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks small {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks small {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks sub,
.editor-styles-wrapper .s-columns-column__blocks sup {
  font-size: 0.75em;
  line-height: 0;
}
.editor-styles-wrapper .s-columns-column__blocks code,
.editor-styles-wrapper .s-columns-column__blocks kbd,
.editor-styles-wrapper .s-columns-column__blocks samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
  background-color: var(--wp--preset--color--beige-light);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.editor-styles-wrapper .s-columns-column__blocks code,
.editor-styles-wrapper .s-columns-column__blocks kbd,
.editor-styles-wrapper .s-columns-column__blocks samp {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks code,
  .editor-styles-wrapper .s-columns-column__blocks kbd,
  .editor-styles-wrapper .s-columns-column__blocks samp {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks code,
  .editor-styles-wrapper .s-columns-column__blocks kbd,
  .editor-styles-wrapper .s-columns-column__blocks samp {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks pre {
  margin: 1.5rem 0;
  padding: 1.25rem;
  overflow-x: auto;
  background-color: var(--wp--preset--color--beige-light);
  border-radius: 0.5rem;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks pre {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks pre {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks pre {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.editor-styles-wrapper .s-columns-column__blocks ul,
.editor-styles-wrapper .s-columns-column__blocks ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks ul:first-child,
.editor-styles-wrapper .s-columns-column__blocks ol:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks ul:last-child,
.editor-styles-wrapper .s-columns-column__blocks ol:last-child {
  margin-bottom: 0;
}
.editor-styles-wrapper .s-columns-column__blocks ul ul,
.editor-styles-wrapper .s-columns-column__blocks ul ol,
.editor-styles-wrapper .s-columns-column__blocks ol ul,
.editor-styles-wrapper .s-columns-column__blocks ol ol {
  margin: 0.5rem 0 0;
}
.editor-styles-wrapper .s-columns-column__blocks ul li,
.editor-styles-wrapper .s-columns-column__blocks ol li {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks ul li,
.editor-styles-wrapper .s-columns-column__blocks ol li {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks ul li,
  .editor-styles-wrapper .s-columns-column__blocks ol li {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks ul li,
  .editor-styles-wrapper .s-columns-column__blocks ol li {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks ul li::marker,
.editor-styles-wrapper .s-columns-column__blocks ol li::marker {
  color: var(--wp--preset--color--pink);
}
.editor-styles-wrapper .s-columns-column__blocks ul li + li,
.editor-styles-wrapper .s-columns-column__blocks ol li + li {
  margin-top: 0.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks ul li > ul,
.editor-styles-wrapper .s-columns-column__blocks ul li > ol,
.editor-styles-wrapper .s-columns-column__blocks ol li > ul,
.editor-styles-wrapper .s-columns-column__blocks ol li > ol {
  margin-top: 0.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks ul {
  list-style: disc;
}
.editor-styles-wrapper .s-columns-column__blocks ol {
  list-style: decimal;
}
.editor-styles-wrapper .s-columns-column__blocks dl {
  margin: 1rem 0;
}
.editor-styles-wrapper .s-columns-column__blocks dl dt {
  font-weight: 700;
  margin-top: 0.75rem;
}
.editor-styles-wrapper .s-columns-column__blocks dl dt:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks dl dd {
  margin: 0.25rem 0 0 1rem;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 0.1875rem solid var(--wp--preset--color--pink);
}
.editor-styles-wrapper .s-columns-column__blocks blockquote p {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote p + p {
  margin-top: 0.75rem;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote cite,
.editor-styles-wrapper .s-columns-column__blocks blockquote footer {
  display: block;
  margin-top: 0.75rem;
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote cite,
.editor-styles-wrapper .s-columns-column__blocks blockquote footer {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks blockquote cite,
  .editor-styles-wrapper .s-columns-column__blocks blockquote footer {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks blockquote cite,
  .editor-styles-wrapper .s-columns-column__blocks blockquote footer {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--wp--preset--color--beige-medium);
}
.editor-styles-wrapper .s-columns-column__blocks img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}
.editor-styles-wrapper .s-columns-column__blocks figure {
  margin: 1.5rem 0;
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks figure img {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks figure figcaption {
  margin-top: 0.5rem;
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.75;
}
.editor-styles-wrapper .s-columns-column__blocks figure figcaption {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks figure figcaption {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks figure figcaption {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks figure img {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks table {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks table {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks table {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks table th,
.editor-styles-wrapper .s-columns-column__blocks table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wp--preset--color--beige-medium);
  text-align: left;
  vertical-align: top;
}
.editor-styles-wrapper .s-columns-column__blocks table th {
  font-weight: 700;
  background-color: var(--wp--preset--color--beige-light);
}
.editor-styles-wrapper .s-columns-column__blocks h1 {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks h1 {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks h1 {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks h1 {
    font-size: 3.5rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks h1:not(:first-child) {
  margin-top: 2rem;
}
.editor-styles-wrapper .s-columns-column__blocks h6 {
  font-weight: 400;
  font-family: "the-seasons", serif;
}
.editor-styles-wrapper .s-columns-column__blocks h6 {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks h6 {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks h6 {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks h6:not(:first-child) {
  margin-top: 1rem;
}
.editor-styles-wrapper .s-columns-column__blocks figure {
  margin: 2rem 0;
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks figure:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks figure img {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks figcaption,
.editor-styles-wrapper .s-columns-column__blocks .wp-element-caption,
.editor-styles-wrapper .s-columns-column__blocks .wp-caption-text {
  margin-top: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.75;
}
.editor-styles-wrapper .s-columns-column__blocks figcaption,
.editor-styles-wrapper .s-columns-column__blocks .wp-element-caption,
.editor-styles-wrapper .s-columns-column__blocks .wp-caption-text {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks figcaption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-element-caption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-caption-text {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks figcaption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-element-caption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-caption-text {
    font-size: 0.75rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-caption {
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-caption img {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks .aligncenter {
  display: block;
  margin-inline: auto;
  text-align: center;
}
.editor-styles-wrapper .s-columns-column__blocks .aligncenter figcaption,
.editor-styles-wrapper .s-columns-column__blocks .aligncenter .wp-element-caption {
  text-align: center;
}
.editor-styles-wrapper .s-columns-column__blocks .alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1rem 0;
  max-width: 50%;
}
.editor-styles-wrapper .s-columns-column__blocks .alignright {
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
  max-width: 50%;
}
.editor-styles-wrapper .s-columns-column__blocks .alignwide {
  width: min(100%, 100% + 5rem);
  max-width: none;
  margin-inline: auto;
}
.editor-styles-wrapper .s-columns-column__blocks .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  border-radius: 0;
}
.editor-styles-wrapper .s-columns-column__blocks .alignfull img {
  border-radius: 0;
}
.editor-styles-wrapper .s-columns-column__blocks img.size-medium,
.editor-styles-wrapper .s-columns-column__blocks figure.size-medium img {
  max-width: 25rem;
  width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks img.size-thumbnail,
.editor-styles-wrapper .s-columns-column__blocks figure.size-thumbnail img {
  max-width: 9.375rem;
  width: auto;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote {
  margin: 1.5rem 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 0.1875rem solid currentColor;
  font-style: italic;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote p,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote p {
  margin-top: 0.75rem;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote p:first-child,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote p:first-child {
  margin-top: 0;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote cite,
.editor-styles-wrapper .s-columns-column__blocks blockquote footer,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote cite,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote footer {
  display: block;
  margin-top: 0.75rem;
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
}
.editor-styles-wrapper .s-columns-column__blocks blockquote cite,
.editor-styles-wrapper .s-columns-column__blocks blockquote footer,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote cite,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-quote footer {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks blockquote cite,
  .editor-styles-wrapper .s-columns-column__blocks blockquote footer,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-quote cite,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-quote footer {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks blockquote cite,
  .editor-styles-wrapper .s-columns-column__blocks blockquote footer,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-quote cite,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-quote footer {
    font-size: 0.75rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-pullquote {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--wp--preset--color--beige-medium);
  border-bottom: 1px solid var(--wp--preset--color--beige-medium);
  border-left: none;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-pullquote blockquote {
  border: none;
  padding: 0;
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-pullquote cite {
  margin-top: 1rem;
}
.editor-styles-wrapper .s-columns-column__blocks code,
.editor-styles-wrapper .s-columns-column__blocks kbd,
.editor-styles-wrapper .s-columns-column__blocks samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
  background-color: var(--wp--preset--color--beige-medium);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.editor-styles-wrapper .s-columns-column__blocks code,
.editor-styles-wrapper .s-columns-column__blocks kbd,
.editor-styles-wrapper .s-columns-column__blocks samp {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks code,
  .editor-styles-wrapper .s-columns-column__blocks kbd,
  .editor-styles-wrapper .s-columns-column__blocks samp {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks code,
  .editor-styles-wrapper .s-columns-column__blocks kbd,
  .editor-styles-wrapper .s-columns-column__blocks samp {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks pre,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-code {
  margin: 1.5rem 0;
  padding: 1.25rem;
  overflow-x: auto;
  background-color: var(--wp--preset--color--beige-medium);
  border-radius: 0.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks pre code,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-code code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.editor-styles-wrapper .s-columns-column__blocks table,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-table table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks table,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-table table {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks table,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-table table {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks table,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-table table {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks table th,
.editor-styles-wrapper .s-columns-column__blocks table td,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-table table th,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-table table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wp--preset--color--beige-medium);
  text-align: left;
  vertical-align: top;
}
.editor-styles-wrapper .s-columns-column__blocks table th,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-table table th {
  font-weight: 700;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.editor-styles-wrapper .s-columns-column__blocks hr,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-separator {
  margin: 2.5rem auto;
  border: none;
  border-top: 1px solid var(--wp--preset--color--beige-medium);
  opacity: 1;
  max-width: 7.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks hr.is-style-wide,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-separator.is-style-wide {
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks hr.is-style-dots,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-separator.is-style-dots {
  border: none;
  max-width: none;
  text-align: center;
}
.editor-styles-wrapper .s-columns-column__blocks hr.is-style-dots::before,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-separator.is-style-dots::before {
  content: "···";
  letter-spacing: 0.75rem;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks hr.is-style-dots::before,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-separator.is-style-dots::before {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks hr.is-style-dots::before,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-separator.is-style-dots::before {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks hr.is-style-dots::before,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-separator.is-style-dots::before {
    font-size: 1.25rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-embed,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-video,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-audio,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-media-text {
  margin: 2rem 0;
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-embed__wrapper,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-video video {
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-embed iframe {
  max-width: 100%;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-gallery,
.editor-styles-wrapper .s-columns-column__blocks .blocks-gallery-grid,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-media-text {
  gap: 0.5rem;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-gallery,
.editor-styles-wrapper .s-columns-column__blocks .blocks-gallery-grid {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-buttons {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-button__link {
  text-decoration: none;
}
.editor-styles-wrapper .s-columns-column__blocks ul ul,
.editor-styles-wrapper .s-columns-column__blocks ol ol,
.editor-styles-wrapper .s-columns-column__blocks ul ol,
.editor-styles-wrapper .s-columns-column__blocks ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.editor-styles-wrapper .s-columns-column__blocks dl {
  margin: 1.5rem 0;
}
.editor-styles-wrapper .s-columns-column__blocks dt {
  font-weight: 700;
  margin-top: 0.75rem;
}
.editor-styles-wrapper .s-columns-column__blocks dd {
  margin-left: 1rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.editor-styles-wrapper .s-columns-column__blocks mark {
  background-color: rgba(255, 128, 0, 0.25);
  padding: 0.0625rem 0.25rem;
}
.editor-styles-wrapper .s-columns-column__blocks sub,
.editor-styles-wrapper .s-columns-column__blocks sup {
  font-size: 0.75em;
  line-height: 0;
}
.editor-styles-wrapper .s-columns-column__blocks .has-text-align-center {
  text-align: center;
}
.editor-styles-wrapper .s-columns-column__blocks .has-text-align-right {
  text-align: right;
}
.editor-styles-wrapper .s-columns-column__blocks .has-text-align-left {
  text-align: left;
}
@media screen and (max-width: 991px) {
  .editor-styles-wrapper .s-columns-column__blocks .alignleft,
  .editor-styles-wrapper .s-columns-column__blocks .alignright {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  .editor-styles-wrapper .s-columns-column__blocks .alignwide,
  .editor-styles-wrapper .s-columns-column__blocks .alignfull {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  .editor-styles-wrapper .s-columns-column__blocks figure,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-image,
  .editor-styles-wrapper .s-columns-column__blocks .wp-caption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-media-text__media {
    max-width: 100%;
  }
  .editor-styles-wrapper .s-columns-column__blocks figure img,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-image img,
  .editor-styles-wrapper .s-columns-column__blocks .wp-caption img,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-media-text__media img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin: 0;
  }
  .editor-styles-wrapper .s-columns-column__blocks .wp-caption {
    margin: 1.5rem 0;
  }
  .editor-styles-wrapper .s-columns-column__blocks > img,
  .editor-styles-wrapper .s-columns-column__blocks p > img,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-gallery .blocks-gallery-item img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .editor-styles-wrapper .s-columns-column__blocks img.size-medium,
  .editor-styles-wrapper .s-columns-column__blocks figure.size-medium img,
  .editor-styles-wrapper .s-columns-column__blocks img.size-thumbnail,
  .editor-styles-wrapper .s-columns-column__blocks figure.size-thumbnail img {
    max-width: 100%;
    width: 100%;
  }
  .editor-styles-wrapper .s-columns-column__blocks figcaption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-element-caption,
  .editor-styles-wrapper .s-columns-column__blocks .wp-caption-text {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .editor-styles-wrapper .s-columns-column__blocks pre,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-code {
    padding: 1rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 991px) {
  .editor-styles-wrapper .s-columns-column__blocks {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .s-columns-column__blocks {
    gap: 1.25rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}
.editor-styles-wrapper .s-columns-column__blocks p,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks p,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks p,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks p,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 700;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
    font-size: 1.625rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
    font-size: 3.5rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
  font-family: "poppins", sans-serif;
  line-height: 0.96;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
  font-size: 32px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
    font-size: calc(32px + 18 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
    font-size: 3.125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks :where(.wp-block-image) {
  margin: 0;
  width: 100%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.editor-styles-wrapper .s-columns-column__blocks :where(.wp-block-image) img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks :where(.wp-block-video, .wp-block-embed) {
  margin: 0;
  width: 100%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.editor-styles-wrapper .s-columns-column__blocks :where(.wp-block-quote, .wp-block-pullquote) {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks :where(.wp-block-list) {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks :where(.wp-block-separator) {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks :where(.c-buttons, .wp-block-madare-theme-buttons, .wp-block-madare-theme-button) {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading {
  margin: 0;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
  color: var(--wp--preset--color--red) !important;
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h1-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h2-font-size {
    font-size: 3.5rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
  color: var(--wp--preset--color--red);
  font-size: 1.625rem !important;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h3-font-size {
    font-size: 1.625rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
  font-size: 0.875rem !important;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h4-font-size, .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h5-font-size {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
  font-size: 0.8125rem !important;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading.has-heading-h6-font-size {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
  color: var(--wp--preset--color--red);
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h1, h2):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 3.5rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
  color: var(--wp--preset--color--red);
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h3):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 1.625rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h4):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h5):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: var(--wp--preset--color--gray-dark);
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-heading:is(h6):not([class*=has-heading-h]):not([class*=-font-size]) {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks p,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks p,
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks p,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks p,
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-ui-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-ui-font-size {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
  font-family: "poppins", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-small-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-small-font-size {
    font-size: 0.8125rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-base-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-base-font-size {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 700;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-medium-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-medium-font-size {
    font-size: 0.875rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.26;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
    font-size: calc(24px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-large-font-size {
    font-size: 1.625rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
  font-family: "the-seasons", serif;
  line-height: 1.07;
  font-weight: 400;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-x-large-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-x-large-font-size {
    font-size: 3.5rem;
  }
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
  font-family: "poppins", sans-serif;
  line-height: 0.96;
  font-weight: 500;
}
.editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
.editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
  font-size: 32px;
}
@media screen and (min-width: 569px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
    font-size: calc(32px + 18 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .editor-styles-wrapper .s-columns-column__blocks .wp-block-paragraph.has-display-xl-font-size,
  .editor-styles-wrapper .s-columns-column__blocks .has-display-xl-font-size {
    font-size: 3.125rem;
  }
}