/** Shopify CDN: Minification failed

Line 1101:136 Unexpected "/"

**/
/* START_SECTION:article-cta-banner (INDEX:5) */
.art-banner {
    padding: 0 0 56px;
    background: #FFFFFF;
  }

  .art-banner__inner {
    padding: 0 var(--page-margin);
  }

  .art-banner__box {
    background: #1a3a5c;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    min-height: 220px;
  }

  .art-banner__content {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
  }

  .art-banner__heading {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    max-width: 480px;
  }

  .art-banner__description {
    color: #484848;
  }

  /* Badges */
  .art-banner__badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .art-banner__badge-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .art-banner__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
  }

  .art-banner__badge svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }

  /* CTAs */
  .art-banner__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2px;
  }

  .art-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    padding: 12px 24px;
    white-space: nowrap;
  }

  .art-banner__cta--primary {
    background: #B31942;
    color: #fff;
    border: 1px solid #B31942;
  }

  .art-banner__cta--primary:hover { background: #B31942; border-color: #B31942; }

  .art-banner__cta--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
  }

  .art-banner__cta--outline:hover { border-color: #fff; }

  /* Image */
  .art-banner__image-wrap {
    max-width: 500px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 20px;
  }

  .art-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media screen and (max-width: 749px) {
    .art-banner__inner {
      width: 100%;
      padding: 0 var(--page-margin);
    }
    .art-banner__box { grid-template-columns: 1fr; }
    .art-banner__image-wrap { width: 100%; height: 180px; }
    .art-banner__content { padding: 28px 24px; }
    .art-banner__ctas { flex-direction: column; }
    .art-banner__heading { font-size: 1.2rem; }
    .art-banner__badge-row { gap: 12px; }
  }
/* END_SECTION:article-cta-banner */
/* START_SECTION:bd-exit-intent (INDEX:17) */
.bd-exit[hidden] {
    /* The attribute alone loses to the display below in the cascade. */
    display: none !important;
  }

  .bd-exit {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 20px;
  }

  .bd-exit__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.62);
  }

  .bd-exit__panel {
    position: relative;
    width: 100%;
    max-width: var(--bd-exit-max, 640px);
    animation: bd-exit-in 0.22s ease-out;
  }

  @keyframes bd-exit-in {
    from { opacity: 0; transform: translateY(8px) scale(0.985); }
    to   { opacity: 1; transform: none; }
  }

  .bd-exit__link,
  .bd-exit__img {
    display: block;
  }

  .bd-exit__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .bd-exit__media {
    position: relative;
  }

  /* Invisible by design — the button it covers is part of the artwork. */
  .bd-exit__hotspot {
    position: absolute;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Never invisible to the keyboard, though. */
  .bd-exit__hotspot:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgb(0 0 0 / 0.45);
  }

  /* Setup aid — switched on from the section settings while lining the
     targets up against the artwork, and off again afterwards.

     The fill is deliberately faint: it only has to show where the target
     sits, and at a heavier tint it hides the very button being aimed at.
     The dashed edge does the actual work of showing the bounds. */
  .bd-exit__media.is-outlined .bd-exit__hotspot {
    outline: 2px dashed #00c2ff;
    outline-offset: -2px;
    background: rgb(0 194 255 / 0.08);
  }

  .bd-exit__copied {
    padding: 6px 14px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
  }

  .bd-exit__copied[hidden] { display: none; }

  .bd-exit__close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.28);
  }

  .bd-exit__close:hover { background: #f1f2f4; }

  .bd-exit__dismiss {
    display: block;
    margin: 14px auto 0;
    padding: 6px 12px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }

  body.bd-exit-open {
    overflow: hidden;
  }

  @media screen and (max-width: 749px) {
    .bd-exit { padding: 16px; }

    /* Clear of the edge, since there is no room to sit outside the panel. */
    .bd-exit__close {
      top: 8px;
      right: 8px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .bd-exit__panel { animation: none; }
  }
/* END_SECTION:bd-exit-intent */
/* START_SECTION:blog-recent (INDEX:61) */
/* ── Recent articles section ──────────────────────── */
  .blog-recent {
    background: var(--color-background);
    padding: 56px 0 72px;
  }

  .blog-recent__inner {
    padding: 0 var(--page-margin);
  }

  .blog-recent__heading {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
  }

  /* ── Tag filter pills ─────────────────────────────── */
  .blog-recent__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
  }

  .blog-recent__tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.2);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
  }

  .blog-recent__tag-pill:hover {
    border-color: rgb(var(--color-foreground-rgb) / 0.5);
    color: var(--color-foreground);
  }

  .blog-recent__tag-pill.is-active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    font-weight: 600;
  }

  /* ── Article grid ─────────────────────────────────── */
  .blog-recent__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .blog-recent__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 0;
    color: rgb(var(--color-foreground-rgb) / 0.45);
    font-size: 0.95rem;
  }

  /* ── Card ─────────────────────────────────────────── */
  .blog-recent__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    gap: 0;
  }

  .blog-recent__card-img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
  }

  .blog-recent__card-img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .blog-recent__card:hover .blog-recent__card-img-el { transform: scale(1.04); }

  .blog-recent__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  }

  .blog-recent__card-body {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .blog-recent__card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── Pagination ───────────────────────────────────── */
  .blog-recent__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 0 0;
    flex-wrap: wrap;
  }

  .blog-recent__page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    background: transparent;
    cursor: pointer;
  }

  .blog-recent__page-btn:hover:not(.blog-recent__page-btn--current) {
    border-color: rgb(var(--color-foreground-rgb) / 0.5);
  }

  .blog-recent__page-btn--current {
    background: #DD1F51;
    border-color: #DD1F51;
    color: #fff;
    cursor: default;
  }

  .blog-recent__page-btn--ellipsis {
    border-color: transparent;
    cursor: default;
    width: auto;
    padding: 0 4px;
  }

  /* ── Responsive ───────────────────────────────────── */
  @media screen and (max-width: 989px) {
    .blog-recent { padding: 44px 0 56px; }
    .blog-recent__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .blog-recent__tags { margin-bottom: 28px; }
  }

  @media screen and (max-width: 749px) {
    .blog-recent { padding: 36px 0 48px; }
    .blog-recent__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
    .blog-recent__card-title { font-size: 0.85rem; }
    .blog-recent__heading { margin-bottom: 16px; }
    .blog-recent__tags { gap: 6px; margin-bottom: 20px; }
    .blog-recent__tag-pill { font-size: 0.78rem; padding: 5px 12px; }
  }
/* END_SECTION:blog-recent */
/* START_SECTION:church-expert-consultation (INDEX:66) */
.bd-church-consult {
    background: var(--color-background);
    padding: 40px var(--page-margin);
  }

  .bd-church-consult__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.7fr);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    background: var(--bd-cec-panel-bg, #0A3161);
    padding: 44px 48px;
  }

  /* ── Left panel ── */
  .bd-church-consult__left {
    position: relative;
    color: var(--bd-cec-panel-text, #c8d8f0);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
  }

  .bd-church-consult__dots {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 64px;
    height: 64px;
    background-image: radial-gradient(rgb(255 255 255 / 0.35) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
  }

  .bd-church-consult__eyebrow-wrap {
    position: relative;
    z-index: 1;
    padding-top: 40px;
  }

  .bd-church-consult__eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bd-cec-accent, #B31942);
  }

  .bd-church-consult__eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    margin-top: 10px;
    background: var(--bd-cec-accent, #B31942);
  }

  .bd-church-consult__badge {
    text-align: center;
    margin-top: auto;
    max-width: 250px;
  }

  .bd-church-consult__trust {
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: var(--bd-cec-panel-text, #c8d8f0);
  }

  .bd-church-consult__note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--bd-cec-accent, #B31942);
  }

  .bd-church-consult__note svg {
    flex-shrink: 0;
  }

  /* ── Right panel ── */
  .bd-church-consult__right {
    background: #fff;
    padding: 44px 48px;
    border-radius: 24px;
  }

  .bd-church-consult__heading {
    margin: 0 0 24px;
    font-size: 32px;
    font-weight: 700;
    color: #0B2A5F;
  }

  .bd-church-consult__event-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .bd-church-consult__event-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--bd-cec-accent, #B31942) 12%, transparent);
    color: var(--bd-cec-accent, #B31942);
  }

  .bd-church-consult__event-title {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
  }

  .bd-church-consult__event-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 13px;
    color: #777;
  }

  .bd-church-consult__divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
  }

  .bd-church-consult__calendly-wrap.is-cropped {
    overflow: hidden;
    border-radius: 12px;
  }

  .bd-church-consult__calendly-wrap.is-cropped .calendly-inline-widget {
    margin-top: calc(-1 * var(--bd-cec-crop, 0px));
  }

  .bd-church-consult__empty {
    margin: 0;
    padding: 24px;
    border: 1px dashed #c9ced6;
    border-radius: 12px;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
  }

  @media screen and (max-width: 989px) {
    .bd-church-consult__inner {
      grid-template-columns: 1fr;
    }

    .bd-church-consult__left {
      padding: 36px 28px;
    }

    .bd-church-consult__eyebrow-wrap {
      padding-top: 0;
    }

    .bd-church-consult__badge {
      margin-top: 24px;
    }
  }

  @media screen and (max-width: 749px) {
    .bd-church-consult {
      padding: 0;
    }

    .bd-church-consult__inner {
      border-radius: 0;
      padding: 0;
      background-color: transparent;
    }

    .bd-church-consult__right {
      padding: 32px 20px;
    }

    .bd-church-consult__left {
      align-items: center;
      background-color: var(--bd-cec-panel-bg, #0A3161);
    }

    .bd-church-consult__heading {
      font-size: 24px;
    }
  }
/* END_SECTION:church-expert-consultation */
/* START_SECTION:marquee (INDEX:100) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .marquee__content :is(p, h1, h2, h3, h4, h5, h6) {
    white-space: nowrap;
  }

  .marquee__content .marquee__repeated-items * {
    max-width: none;
  }

  .marquee__repeated-items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
    justify-content: center;
  }

  .marquee__repeated-items > * {
    align-content: center;
  }

  @media (prefers-reduced-motion: no-preference) {
    marquee-component:not([data-disabled]) .marquee__wrapper {
      animation: marquee-motion var(--marquee-speed) linear infinite var(--marquee-direction);
    }
  }

  @keyframes marquee-motion {
    to {
      transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
  }
/* END_SECTION:marquee */
/* START_SECTION:media-with-content (INDEX:105) */
.section--page-width {
    &.media-with-content {
      grid-template-areas: 'margin-left media margin-right' 'margin-left content margin-right';

      @media screen and (min-width: 750px) {
        /* Wide proportion is media 3.5 parts, content 2.5 parts. Which equals 7|5. So divide the central column by 7+5 and multiply accordingly */
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 7)
          calc((var(--full-page-grid-central-column-width) / 12) * 5) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left media content margin-right';
      }
    }

    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 5)
          calc((var(--full-page-grid-central-column-width) / 12) * 7) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left content media margin-right';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          repeat(2, calc(var(--full-page-grid-central-column-width) / 2)) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 3) * 2)
          calc(var(--full-page-grid-central-column-width) / 3) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc(var(--full-page-grid-central-column-width) / 3)
          calc((var(--full-page-grid-central-column-width) / 3) * 2) var(--full-page-grid-margin);
      }
    }
  }

  .section--full-width {
    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2.5fr 3.5fr;

        grid-template-areas: 'content media';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 1fr 1fr;
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2fr 4fr;
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 4fr 2fr;
      }
    }
  }

  /* Keep the CSS specificity lower assuming that liquid won't assign this class with a full width section */
  .media-with-content.media-with-content--media-extend {
    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'margin-left content margin-right';

    @media screen and (min-width: 750px) {
      grid-template-areas: 'media media content margin-right';
    }
  }

  .media-with-content--media-extend.media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content {
    --media-with-content-grid-columns: var(--full-page-grid-with-margins);

    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'content content content';

    @media screen and (min-width: 750px) {
      --media-with-content-grid-columns: 3.5fr 2.5fr;

      /* Default desktop layout is wide media, on the left, in full page section */
      grid-template-areas: 'media content';
    }

    .media-block {
      grid-area: media;
    }

    .media-with-content__content {
      grid-area: content;
    }

    /* Inner blocks spacing */
    .media-with-content__content > .group-block-content {
      padding-inline: var(--page-margin);
      padding-block: calc(2 * var(--page-margin));

      @media screen and (min-width: 750px) {
        padding-block: var(--page-margin);
      }
    }

    &.section--page-width .media-with-content__content > .group-block-content {
      padding-inline: 0;

      @media screen and (min-width: 750px) {
        padding-inline-start: var(--page-margin);
      }
    }

    &.section--page-width.media-with-content--media-right .media-with-content__content > .group-block-content {
      padding-inline-end: var(--page-margin);
      padding-inline-start: 0;
    }
  }

  .media-with-content[data-shopify-visual-preview] {
    --hero-min-height: 500px;

    min-height: 500px;
  }
/* END_SECTION:media-with-content */
/* START_SECTION:mockup-request-popup (INDEX:106) */
.mrp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .mrp-overlay.is-open { display: flex; }

  .mrp-dialog {
    position: relative;
    display: grid;
    grid-template-columns: 310px 1fr;
    width: 958px;
    max-width: calc(100vw - 40px);
    /* Cap to the viewport; .mrp-right scrolls inside it. */
    max-height: calc(100dvh - 40px);
    /* Cap the ROW too: an auto row sizes to its tallest item's max-content and
       would grow straight past the max-height above, leaving the dialog to
       clip instead of its columns to scroll. */
    grid-template-rows: minmax(0, 1fr);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  }


  /* Capped dialog: each column scrolls rather than being clipped. */
  /* A grid item defaults to min-height:auto and will not shrink below its
     content, so overflow-y above never engages and the dialog clips instead
     of scrolling. This is what makes the submit button reachable on short
     screens. */
  .mrp-left, .mrp-right { overflow-y: auto; min-height: 0; }
  .mrp-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 10;
    width: 32px; 
    height: 32px;
    display: grid; 
    place-items: center;
    border: none; 
    border-radius: 50%;
    background: #00000012;
    color: #000000; 
    cursor: pointer;
    transition: background 0.15s;
  }
  .mrp-close:hover { background: rgba(255,255,255,0.32); }

  /* Left panel */
  .mrp-left {
    background-color: var(--mrp-panel-bg, #0B2A5F);
    background-size: cover; 
    background-position: center;
    color: var(--mrp-panel-text, #c8d8f0);
    padding: 32px 22px 28px;
    display: flex; 
    flex-direction: column; 
    gap: 22px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }
  .mrp-badge { text-align: center; }
  .mrp-badge__laurel { width: 160px; height: auto; display: block; margin: 0 auto 6px; color: var(--mrp-panel-text, #c8d8f0); }
  /* .mrp-badge__img    { width: 120px; height: auto; display: block; margin: 0 auto 6px; object-fit: contain; } */
  .mrp-badge__label  { color: var(--mrp-panel-text, #c8d8f0); font-size: 12px; margin: 0; line-height: 1.4; opacity: 0.85; }
  .mrp-badge__years  { display: none; font-size: 28px; font-weight: 700; color: #fff; line-height: 1.2; }

  .mrp-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; }
  .mrp-trust__item { display: flex; align-items: flex-start; gap: 10px; }
  .mrp-trust__icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; display: flex; align-items: center; color: var(--mrp-accent, #C0192B); }
  .mrp-trust__icon svg, .mrp-trust__icon img { display: block; }
  .mrp-trust__item strong { display: block; color: #fff; font-size: 12px; font-weight: 600; }
  .mrp-trust__item span   { display: block; color: var(--mrp-panel-text, #c8d8f0); font-size: 11px; margin-top: 1px; opacity: 0.8; }

  .mrp-steps { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; }
  .mrp-steps h4 { color: #fff; font-size: 13px; font-weight: 600; margin: 0 0 12px; }
  .mrp-steps ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .mrp-steps li { display: flex; align-items: flex-start; gap: 10px; color: var(--mrp-panel-text, #c8d8f0); font-size: 12px; line-height: 1.5; }
  .mrp-steps li span { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--mrp-accent, #C0192B); color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; margin-top: 1px; }

  /* Right panel */
  .mrp-right { overflow-y: auto; }
  .mrp-form-wrap { padding: 14px 36px 20px; }
  .mrp-dialog h2 { font-size: 24px; font-weight: 700; color: #111; margin: 0 0 4px; }
  .mrp-subtitle   { color: #777; font-size: 13px; margin: 0 0 16px; }

  .mrp-form { display: flex; flex-direction: column; gap: 4px; }
  /* Without this the display above outranks the browser's [hidden] rule
     and form.hidden = true is silently ignored. */
  .mrp-form[hidden] { display: none; }
  .mrp-field { display: flex; flex-direction: column; gap: 2px; }
  .mrp-field label { font-size: 13px; font-weight: 500; color: #333; }
  .mrp-req { color: var(--mrp-accent, #C0192B); margin-left: 1px; }

  .mrp-field input,
  .mrp-field select,
  .mrp-field textarea {
    width: 100%; padding: 9px 12px;
    border: 1px solid #ddd; border-radius: 8px;
    font-size: 13px; color: #222; background: #fff;
    box-sizing: border-box; font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .mrp-field input:focus,
  .mrp-field select:focus,
  .mrp-field textarea:focus {
    outline: none;
    border-color: var(--mrp-focus, #0B2A5F);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mrp-focus, #0B2A5F) 12%, transparent);
  }
  .mrp-field input.mrp-invalid  { border-color: #C0192B; background: #fff8f8; }
  .mrp-field input.mrp-invalid:focus { box-shadow: 0 0 0 3px rgba(192,25,43,0.12); }
  .mrp-field textarea { resize: none; }
  .mrp-dimensions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .mrp-field-error { font-size: 11px; color: #C0192B; min-height: 14px; line-height: 1.3; }

  .mrp-date-field .pdm-event-date {
    padding: 10px;
    gap: 6px;
    margin-top: 0;
  }
  .mrp-date-field .pdm-event-date__text h3 {
    font-size: 13px;
    font-weight: 500;
  }
  .mrp-date-field .pdm-event-date__text p,
  .mrp-date-field .pdm-event-date__notice p {
    font-size: 12px;
  }
  .mrp-date-field .pdm-event-date__notice svg {
    width: 16px;
  }
  .mrp-date-field .pdm-event-date__notice strong {
    font-weight: 500;
  }
  .mrp-date-field .pdm-event-date__btn {
    padding: 6px 14px;
  }
  .mrp-date-field .pdm-event-date__notice {
    padding: 4px 12px;
  }

  /* Upload section */
  .mrp-upload { display: flex; flex-direction: column; gap: 0; }
  .mrp-upload__label { font-size: 13px; font-weight: 500; color: #333; margin: 0 0 8px; }

  .mrp-upload__tabs {
    display: flex;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    border: 1px solid #ddd;
    border-bottom: none;
  }
  .mrp-tab {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    padding: 9px 10px;
    border: none; background: #f5f5f5;
    color: #555; font-size: 12px; font-weight: 500;
    cursor: pointer; font-family: inherit;
    transition: background 0.15s, color 0.15s;
    border-right: 1px solid #ddd;
  }
  .mrp-tab:last-child { border-right: none; }
  .mrp-tab.is-active { background: var(--mrp-panel-bg, #0B2A5F); color: #fff; }

  .mrp-upload__panels { border: 1px solid #ddd; border-radius: 0 0 8px 8px; }

  .mrp-panel { padding: 12px; }

  /* Dropzone */
  .mrp-dropzone {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px;
    border: 1.5px dashed #ccc; border-radius: 8px;
    cursor: pointer; text-align: center;
    transition: border-color 0.15s, background 0.15s;
  }
  .mrp-dropzone:hover,
  .mrp-dropzone.is-over { border-color: var(--mrp-panel-bg, #0B2A5F); background: #f0f4fb; }
  .mrp-dropzone svg { color: #aaa; }
  .mrp-dropzone__cta { font-size: 13px; color: #444; }
  .mrp-dropzone__cta u { color: var(--mrp-panel-bg, #0B2A5F); text-decoration-color: var(--mrp-panel-bg, #0B2A5F); }
  .mrp-dropzone__file { font-size: 13px; font-weight: 500; color: var(--mrp-panel-bg, #0B2A5F); }
  .mrp-dropzone small { font-size: 11px; color: #aaa; }
  .mrp-file-input { display: none; }

  .mrp-panel input[type="url"] {
    width: 100%; padding: 9px 12px;
    border: 1px solid #ddd; border-radius: 8px;
    font-size: 13px; box-sizing: border-box; font-family: inherit;
  }
  .mrp-panel input[type="url"]:focus { outline: none; border-color: var(--mrp-focus, #0B2A5F); }

  .mrp-email-note { font-size: 13px; color: #555; line-height: 1.6; margin: 4px 0; }

  /* Button */
  /* Off-screen, not display:none - some bots skip hidden inputs. */
  .mrp-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .mrp-submit {
    width: 100%; padding: 13px;
    background: var(--mrp-btn-bg, #9B1D2A);
    color: var(--mrp-btn-text, #fff);
    border: none; border-radius: 8px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: filter 0.15s; letter-spacing: 0.01em;
    margin-top: 4px;
  }
  .mrp-submit:hover:not(:disabled) { filter: brightness(0.88); }
  .mrp-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .mrp-note { text-align: center; font-size: 12px; color: #aaa; margin: 0; }

  /* Success */
  /* /* Visibility comes from the [hidden] attribute the submit handler toggles;
     the hardcoded display:none that used to be here beat it, so the
     confirmation never appeared. */
  .mrp-success[hidden] { display: none; }
  .mrp-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 28px 40px; gap: 12px; } */
  .mrp-success h3 { font-size: 22px; color: #111; margin: 0; }
  .mrp-success p  { color: #666; font-size: 14px; line-height: 1.6; margin: 0; }

  /* Tablet */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .mrp-dialog { grid-template-columns: 260px 1fr; width: 100%; height: 666px; }
    .mrp-form-wrap { padding: 24px 22px; }
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    .mrp-overlay { padding: 0; align-items: flex-end; }
    .mrp-dialog { grid-template-columns: 1fr; width: 100%; height: auto; min-height: 420px; max-height: 92dvh; border-radius: 20px; bottom: 10%; }
    .mrp-left { display: none; }
    .mrp-right { overflow-y: auto; }
    .mrp-close { background: rgba(0,0,0,0.07); color: #444; }
    .mrp-form-wrap { padding: 24px 20px 20px; }
    .mrp-dialog h2 { font-size: 20px; }
    .mrp-form {
        overflow-y: scroll;
        max-height: 500px;
    }
    .mrp-dimensions { grid-template-columns: 1fr 1fr; }
    .mrp-dimensions .mrp-field:last-child { grid-column: 1 / -1; }

  }
/* END_SECTION:mockup-request-popup */
/* START_SECTION:plp-testimonials (INDEX:112) */
.plp-testimonials {
    background: var(--color-background);
    padding: 64px 0;
  }

  .plp-testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* ── Head row ─────────────────────────────────────── */
  .plp-testimonials__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
  }

  .plp-testimonials__head-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .plp-testimonials__heading {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
  }

  .plp-testimonials__subheading {
    font-size: 0.95rem;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    margin: 0;
  }

  /* Aggregate rating */
  .plp-testimonials__aggregate {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }

  .plp-testimonials__aggregate-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .plp-testimonials__star--empty { color: #d1d5db; }

  .plp-testimonials__aggregate-score {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  .plp-testimonials__aggregate-label {
    font-size: 0.82rem;
    color: rgb(var(--color-foreground-rgb) / 0.5);
  }

  /* Arrow nav */
  .plp-testimonials__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }

  .plp-testimonials__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.18);
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-foreground);
    transition: border-color 0.15s, opacity 0.2s;
    flex-shrink: 0;
  }

  .plp-testimonials__arrow:hover:not(:disabled) {
    border-color: rgb(var(--color-foreground-rgb) / 0.45);
  }

  /* ── Track ────────────────────────────────────────── */
  .plp-testimonials__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .plp-testimonials__track::-webkit-scrollbar { display: none; }

  /* ── Card ─────────────────────────────────────────── */
  .plp-testimonials__card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 260px;
    scroll-snap-align: start;
    background: var(--color-background);
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s;
  }

  .plp-testimonials__card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  }

  /* Stars */
  .plp-testimonials__stars {
    display: flex;
    gap: 3px;
  }

  .plp-testimonials__star {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .plp-testimonials__star--filled { fill: #f59e0b; }
  .plp-testimonials__star--empty  { fill: #e5e7eb; }

  /* Quote */
  .plp-testimonials__quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgb(var(--color-foreground-rgb) / 0.75);
    margin: 0;
    flex: 1;
    font-style: normal;
  }

  /* Author row */
  .plp-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    margin-top: auto;
  }

  /* Avatar */
  .plp-testimonials__avatar { flex-shrink: 0; }

  .plp-testimonials__avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  .plp-testimonials__avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a3a5c;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Author info */
  .plp-testimonials__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .plp-testimonials__author-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .plp-testimonials__author-title {
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── Responsive ───────────────────────────────────── */
  @media screen and (max-width: 989px) {
    .plp-testimonials { padding: 48px 0; }
    .plp-testimonials__card { flex: 0 0 calc((100% - 24px) / 2); }
    .plp-testimonials__head { align-items: flex-start; }
  }

  @media screen and (max-width: 749px) {
    .plp-testimonials { padding: 40px 0; }
    .plp-testimonials__card { flex: 0 0 82vw; padding: 20px; }
    .plp-testimonials__heading { font-size: 1.3rem; }
    .plp-testimonials__head {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }
    .plp-testimonials__head-left { width: 100%; }
  }
/* END_SECTION:plp-testimonials */
/* START_BLOCK:_featured-product-gallery (INDEX:161) */
.featured-product-section .card-gallery .quick-add__button {
    position: absolute;
    right: var(--quick-add-offset, var(--padding-sm));
    bottom: var(--quick-add-offset, var(--padding-sm));
  }
/* END_BLOCK:_featured-product-gallery */
/* START_SNIPPET:bento-grid (INDEX:250) */
.bento-box {
    display: grid;
    column-gap: var(--bento-gap);
    row-gap: calc(var(--bento-gap) * 1.5);
    width: 100%;
  }

  .bento-box:has(.collection-card--image-bg) {
    row-gap: var(--bento-gap);
  }

  .bento-box ~ .bento-box {
    padding-block-start: var(--bento-gap);
  }

  @media screen and (max-width: 900px) {
    .bento-box {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-box__item {
      /* Prevent grid items from overflowing their cells when children have aspect-ratio */
      min-width: 0;
      overflow: hidden;
    }

    .bento-box__item:nth-child(3n + 1) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 2) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 3) {
      grid-column: span 2;
    }

    /* Ensure last items create a full row */
    .bento-box__item:last-child:nth-child(3n + 5) {
      grid-column: span 1;
    }

    .bento-box__item:last-child:nth-child(3n + 4) {
      grid-column: span 2;
    }
  }

  @media screen and (min-width: 901px) {
    .bento-box {
      grid-template-columns: repeat(12, 1fr);
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K L L L L';
    }

    .bento-box__item:nth-child(1) {
      grid-area: A;
    }

    .bento-box__item:nth-child(2) {
      grid-area: B;
    }

    .bento-box__item:nth-child(3) {
      grid-area: C;
    }

    .bento-box__item:nth-child(4) {
      grid-area: D;
    }

    .bento-box__item:nth-child(5) {
      grid-area: E;
    }

    .bento-box__item:nth-child(6) {
      grid-area: F;
    }

    .bento-box__item:nth-child(7) {
      grid-area: G;
    }

    .bento-box__item:nth-child(8) {
      grid-area: H;
    }

    .bento-box__item:nth-child(9) {
      grid-area: I;
    }

    .bento-box__item:nth-child(10) {
      grid-area: J;
    }

    .bento-box__item:nth-child(11) {
      grid-area: K;
    }

    .bento-box__item:nth-child(12) {
      grid-area: L;
    }

    /* === Overrides for specific item counts === */

    /* Exactly 1 item */
    .bento-box--items-1 {
      grid-template-areas: 'A A A A A A A A A A A A';
    }

    /* Exactly 2 items */
    .bento-box--items-2 {
      grid-template-areas: 'A A A A A A B B B B B B';
    }

    /* Exactly 4 items */
    .bento-box--items-4 {
      grid-template-areas:
        'A A A A B B B B B B B B'
        'C C C C C C C C D D D D';
    }

    /* Exactly 5 items */
    .bento-box--items-5 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E E E E';
    }

    /* Exactly 7 items */
    .bento-box--items-7 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D D D D E E E'
        'F F F F F F G G G G G G';
    }

    /* Exactly 8 items */
    .bento-box--items-8 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H H H H H H H';
    }

    /* Exactly 10 items */
    .bento-box--items-10 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G G G G G G G H H H'
        'I I I J J J J J J J J J';
    }

    /* Exactly 11 items */
    .bento-box--items-11 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K K K K K';
    }
  }
/* END_SNIPPET:bento-grid */
/* START_SNIPPET:group (INDEX:278) */
.group-block__link {
    position: absolute;
    inset: 0;
  }

  .group-block__link ~ :is(.group-block-content, .group-block__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .group-block__link ~ to be specific enough to take effect. */
  .group-block__link ~ .group-block-content--design-mode {
    pointer-events: auto;
  }
/* END_SNIPPET:group */
/* START_SNIPPET:quantity-selector (INDEX:328) */
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .price-per-item {
    display: block;
    color: var(--color-foreground);
    font-size: var(--font-size--sm);
    font-weight: normal;
  }
/* END_SNIPPET:quantity-selector */
/* START_SNIPPET:resource-image (INDEX:335) */
.resource-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--layer-base);
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--ratio);
  }

  .resource-image__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */
/* START_SNIPPET:resource-list-carousel (INDEX:336) */
.resource-list__carousel {
    --slide-width: 60vw;
    width: 100%;
    position: relative;
    container-type: inline-size;
    container-name: resource-list-carousel;

    .slideshow-control[disabled] {
      display: none;
    }

    .slideshow-control--next {
      margin-inline-start: auto;
    }
  }

  @container resource-list-carousel (max-width: 749px) {
    .resource-list__carousel .resource-list__slide {
      --slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
    }
  }

  @container resource-list-carousel (min-width: 750px) {
    .resource-list__carousel .resource-list__slide {
      --section-slide-width: calc(
        (100% - (var(--resource-list-column-gap) * (var(--column-count) - 1)) - var(--peek-next-slide-size)) /
          var(--column-count)
      );
      --fallback-slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
      --slide-width: var(--section-slide-width, var(--fallback-slide-width));
    }
  }

  .resource-list__carousel slideshow-slides {
    gap: var(--resource-list-column-gap);

    /* Add padding to prevent hover animations from being clipped in slideshow
     15px accommodates:
     - Scale effect (9px on each side from 1.03 scale)
     - Lift effect (4px upward movement)
     - Shadow (15px spread with -5px offset)
     Using 16px for better alignment with our spacing scale */
    margin-block: -16px;
    padding-block: 16px;
  }

  .resource-list__carousel slideshow-arrows {
    padding-inline: var(--util-page-margin-offset);
  }

  .resource-list__carousel .resource-list__slide {
    width: var(--slide-width);
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 0;
  }

  /*
   * Resource list carousels have peeking slides on both sides.
   * We try to kick load them beforehand (they are lazy loaded otherwise).
   */
  .resource-list__carousel
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
/* END_SNIPPET:resource-list-carousel */
