/** Shopify CDN: Minification failed

Line 67:0 Comments in CSS use "/* ... */" instead of "//"
Line 415:3 Expected "}" to go with "{"

**/
.article-content {
  --element-margin-bottom: 2em;
  --heading-margin-bottom: 1.5em;
}
.article-content p,
.article-content ol,
.article-content ul,
.article-content blockquote,
.article-content img {
  margin-bottom: var(--element-margin-bottom, 2em);
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin-top: var(--heading-margin-bottom, 1.5em);
}
.article-content img {
  padding-top: calc(2 * var(--space-unit));
  padding-bottom: calc(2 * var(--space-unit));
}
.article-content blockquote {
  padding-top: calc(4 * var(--space-unit));
  font-size: 2rem;
  font-style: italic;
  line-height: 2.4rem;
}
.article-content blockquote p:last-child {
  margin-bottom: 0;
}
.article-content iframe {
  max-width: 100%;
}

.article__image--wider .media {
  width: calc(100% + var(--gutter) * 2);
  max-width: calc(100% + var(--gutter) * 2);
  margin-inline-start: calc(var(--gutter) * -1);
}

@media (max-width: 1023.98px) {
  .article-content,
  .article-width {
    max-width: 37em;
  }
}
@media (min-width: 768px) {
  .article-content img {
    padding-top: calc(4 * var(--space-unit));
  }
}
@media (min-width: 1024px) {
  .article-content blockquote {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}

//* MODIFIED_BY_RYAN to allow blog to be styled correctly *//
.article-content {
  --element-margin-bottom: 2em;
  --heading-margin-bottom: 1.5em;
}

.article-content p,
.article-content ol,
.article-content ul,
.article-content blockquote,
.article-content img {
  margin-bottom: var(--element-margin-bottom, 2em);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin-top: var(--heading-margin-bottom, 1.5em);
}

.article-content img {
  padding-top: calc(2 * var(--space-unit));
  padding-bottom: calc(2 * var(--space-unit));
}

.article-content blockquote {
  padding-top: calc(4 * var(--space-unit));
  font-size: 2rem;
  font-style: italic;
  line-height: 2.4rem;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Blog Content Links */
.blog-content a {
  color: #006BCC !important;
  text-decoration: none !important;
}

.blog-content a:hover,
.blog-content a:focus {
  color: #000F1C !important;
  font-weight: bold !important;
}

.blog-content a:not(.table-of-contents a) {
  text-decoration: underline !important;
}

/* Blog Headings */
.blog-content h1 {
  background: none !important;
  color: #000F1C !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  display: block !important;
  text-align: left !important; /* Left-align H1 */
}

.article.js-article .article__title {
  text-align: left !important; /* Ensure Shopify's H1 is left-aligned */
}

.article.js-article .article__content.blog-content h2:not(.table-of-contents h2) {
  background-color: #000F1C;
  color: #FFFFFF;
  border-radius: 99px !important;
  padding: 10px 25px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 1400px !important;
  width: 100% !important;
  font-size: 1em !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  margin: 3em auto 20px !important; /* Consistent 3em top margin */
  text-align: center !important;
}

.article.js-article .article__content.blog-content h2:not(.table-of-contents h2):first-of-type {
  margin-top: 0 !important; /* No gap for first H2 */
}

.blog-content h3 {
  color: #000F1C !important;
  font-size: 1.2em !important;
  padding-bottom: 3px !important;
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

.blog-content h4 {
  color: #000F1C !important;
  font-size: 1.1em !important;
  font-weight: normal !important;
  margin: 0 0 0 20px !important;
  padding: 8px 0 !important;
  border-top: none !important;
}

.blog-content h4.faq-question {
  cursor: pointer;
  transition: transform 0.2s ease-out, font-weight 0.2s ease-out !important;
  border-top: 1px solid #D9DBDD !important;
  line-height: 1.2 !important;
}

.blog-content h4.faq-question:hover {
  transform: scale(1.025) !important;
  font-weight: bold !important;
}

/* Hide empty <p> as a fallback */
.blog-content .faq-answer p:empty,
.blog-content .faq-answer p:where(:empty, :only-child:where(:matches( ))) {
  display: none !important;
}

/* Ensure non-FAQ h4 content is visible */
.blog-content h4:not(.faq-question) + p,
.blog-content h4:not(.faq-question) + ul,
.blog-content h4:not(.faq-question) + ol,
.blog-content h4:not(.faq-question) + table,
.blog-content h4:not(.faq-question) + div {
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  padding: inherit !important;
  margin: inherit !important;
}

/* Content Shifts */
.blog-content p {
  margin-left: 20px !important;
  margin-bottom: 1em !important;
}

.blog-content h4:not(.faq-question) + p {
  margin-left: 20px !important;
  margin-bottom: 1em !important;
}

.blog-content ul,
.blog-content ol,
.blog-content table {
  margin-left: 30px !important;
}

/* Table of Contents */
.table-of-contents {
  background-color: #EAEAEA !important;
  padding: 20px 10px 20px 20px !important; /* Top 0px, bottom 20px */
  border-radius: 15px !important;
  margin: 0px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: hidden !important;
  gap: 5px !important;
}

.article.js-article .article__content .table-of-contents h2#table-of-contents {
  font-size: 1.2em !important;
  text-align: left !important;
  margin: 0 0 10px 0 !important; /* Force top margin to 0 */
  padding: 0 !important;
}

.table-of-contents a {
  color: #006BCC !important;
  text-decoration: underline !important;
}

.table-of-contents a:hover {
  color: #000F1C !important;
}

/* Tables */
.blog-content table {
  width: 90% !important;
  max-width: 100% !important;
  margin: 15px auto !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  font-size: 16px !important;
  text-align: left !important;
}

.blog-content th {
  background-color: #000F1C !important;
  color: #FFFFFF !important;
  font-weight: bold !important;
  padding: 10px !important;
  border: 1px solid #ddd !important;
}

.blog-content td {
  border: 1px solid #ddd !important;
  padding: 10px !important;
}

/* Banner and Title Styling */
.article-template,
.page-width {
  max-width: none !important;
  width: 100% !important;
}

/* Banner Container */
.article.js-article .article__image .media {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* Banner Image */
.article.js-article .article__image .media img {
  width: 100% !important;
  max-width: 1200px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  border-radius: 15px !important;
}

/* H1 Title Styling */
.article.js-article .article__title {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  text-align: left !important; /* Reinforce left alignment */
}

/* Content Width */
.article.js-article .article__content {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Media Queries */
@media (max-width: 1023.98px) {
  .article-content,
  .article-width {
    max-width: 37em;
  }
  .article.js-article .article__image .media,
  .article.js-article .article__title,
  .article.js-article .article__content {
    width: 100% !important;
    max-width: 90% !important;
  }
}

@media (min-width: 768px) {
  .article-content img {
    padding-top: calc(4 * var(--space-unit));
  }
  .blog-content table {
    max-width: calc(1400px - 20px) !important;
  }
}

@media (min-width: 1024px) {
  .article-content blockquote {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  .blog-content {
    max-width: 100vw !important;
    padding: 0 !important;
    overflow-x: visible !important;
  }
  .article.js-article .article__content.blog-content h2:not(.table-of-contents h2) {
    max-width: 91vw !important;
    width: 91vw !important;
    padding: 7px 17px !important;
    font-size: 1em !important;
    margin-left: -5vw !important;
    margin-right: -5vw !important;
  }
  .blog-content ul,
  .blog-content ol {
    padding-left: 45px !important;
    margin-left: 0 !important;
  }
  .article.js-article .article__image .media,
  .article.js-article .article__title,
  .article.js-article .article__content {
    width: 90% !important;
    max-width: 1200px !important;
  }
  .article.js-article .article__image .media.relative.text-center.w-full {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 10px !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  .article.js-article .article__image .media.relative.text-center.w-full img.banner-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    display: block !important;
  }
  .article.js-article .article__image {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    overflow: visible !important;
  }
  .faq-answer p, .faq-answer ul, .faq-answer ol, .faq-answer table {
    margin-left: 30px !important;
    margin-bottom: 1em !important;
  }
  /* Add this rule here */
  .faq-question strong {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
  }