/** Shopify CDN: Minification failed

Line 154:39 Unexpected "{"
Line 154:48 Expected ":"
Line 154:55 Unexpected "{"

**/
/* START_SECTION:feature-highlights (INDEX:30) */
.fh {
    width: 100%;
    overflow: hidden;
  }

  .fh__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .fh--image-left .fh__grid {
    direction: rtl;
  }

  .fh--image-left .fh__grid > * {
    direction: ltr;
  }

  .fh__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(28px, 4vw, 48px);
    padding: var(--padding-section-top, 60px) clamp(24px, 6vw, 80px) var(--padding-section-bottom, 60px) clamp(24px, 6vw, 80px);
  }

  .fh__header .section-title,
  .fh__header .section-description {
    text-align: left;
  }

  .fh__features {
    display: grid;
    grid-template-columns: repeat(var(--fh-columns, 2), 1fr);
    gap: 40px clamp(24px, 4vw, 56px);
  }

  .fh__feature {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .fh__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-btn-bg-color, currentColor);
  }

  .fh__feature-icon svg {
    width: 100%;
    height: 100%;
  }

  .fh__feature-icon--custom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fh__feature-title {
    margin: 0;
    font-family: var(--heading-font-stack, inherit);
    font-weight: var(--header-font-weight, 600);
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-scheme-text-color, currentColor);
  }

  .fh__feature-text {
    margin: 0;
    font-family: var(--body-font-stack, inherit);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-scheme-text-color, currentColor);
    opacity: 0.75;
  }

  .fh__feature-text p {
    margin: 0;
  }

  .fh__cta {
    margin-top: 8px;
  }

  .fh__media {
    position: relative;
    min-height: 320px;
  }

  .fh__media-wrapper {
    position: absolute !important;
    inset: 0;
    height: 100% !important;
    width: 100% !important;
  }

  .fh__media-wrapper img {
    height: 100% !important;
    object-fit: cover;
  }

  .fh__media-wrapper--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-scheme-border-color, #e5e5e5);
  }

  .fh__media-wrapper--placeholder .icon--placeholder {
    width: 40%;
    height: 40%;
  }

  @media screen and (max-width: 989px) {
    .fh__grid {
      grid-template-columns: 1fr;
      min-height: 0;
    }

    .fh--image-left .fh__grid {
      direction: ltr;
    }

    .fh__media {
      order: -1;
      min-height: 60svh;
    }

    .fh__content {
      padding: 48px 24px;
      gap: 32px;
    }

    .fh__features {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .fh__cta .dynamic-section-button--{{ section.id }} {
      width: 100%;
      text-align: center;
    }
  }
/* END_SECTION:feature-highlights */
