/** Shopify CDN: Minification failed

Line 34:10 Unexpected "{"
Line 34:19 Expected ":"
Line 35:16 Expected identifier but found whitespace
Line 35:18 Unexpected "{"
Line 35:27 Expected ":"
Line 35:78 Expected ":"
Line 36:19 Expected identifier but found whitespace
Line 36:21 Unexpected "{"
Line 36:30 Expected ":"
Line 36:84 Expected ":"

**/
.rich-text {
  z-index: 1;
}

.rich-text__wrapper {
  display: flex;
  justify-content: center;
  width: calc(100% - 4rem / var(--font-body-scale));
}

.rich-text:not(.rich-text--full-width) .rich-text__wrapper {
  margin: auto;
  width: calc(100% - 8rem / var(--font-body-scale));
}

.rich-text__blocks {
  width: 100%;
}

.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  /* CENTER ALL TEXT INSIDE RICH TEXT SECTION */
  .rich-text__blocks,
  .rich-text__blocks p,
  .rich-text__blocks ul,
  .rich-text__blocks li {
    text-align: center !important;
  }

  /* HEADING STYLE */
  .rich-text__heading {
    color: #cc0000 !important;  /* red */
    font-weight: 700 !important; /* bold */
    text-align: center !important;
  }

  /* RED BULLET POINTS — INLINE (NO ABSOLUTE) */
  .rich-text__text ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 auto;
    text-align: center;
  }

  .rich-text__text ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* space between bullet + text */
    margin: 6px 0;
  }

  .rich-text__text ul li::before {
    content: "•";  /* red dot */
    font-size: 18px;
    color: #CC0000;
    display: inline-block;
    line-height: 1;
  }

  /* BUTTON COLOR UPDATE */
  .rich-text__buttons .button--primary,
  .rich-text__buttons .button.button--primary {
    background-color: #CC2C34 !important;
    border-color: #CC2C34 !important;
  }

  .rich-text__buttons .button--secondary,
  .rich-text__buttons .button.button--secondary {
    color: #CC2C34 !important;
    border-color: #CC2C34 !important;
  }
@media screen and (min-width: 750px) {
  .rich-text__wrapper {
    width: 100%;
  }

  .rich-text__wrapper--left {
    justify-content: flex-start;
  }

  .rich-text__wrapper--right {
    justify-content: flex-end;
  }

  .rich-text__blocks {
    max-width: 50rem;
  }
}

@media screen and (min-width: 990px) {
  .rich-text__blocks {
    max-width: 78rem;
  }
}

.rich-text__blocks * {
  overflow-wrap: break-word;
}

.rich-text__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}

.rich-text__blocks > * + * {
  margin-top: 2rem;
}

.rich-text__blocks > * + a {
  margin-top: 3rem;
}

.rich-text__buttons {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 45rem;
  word-break: break-word;
}

.rich-text__buttons--multiple > * {
  flex-grow: 1;
  min-width: 22rem;
}

.rich-text__buttons + .rich-text__buttons {
  margin-top: 1rem;
}

.rich-text__blocks.left .rich-text__buttons {
  justify-content: flex-start;
}

.rich-text__blocks.right .rich-text__buttons {
  justify-content: flex-end;
}
