/** Shopify CDN: Minification failed

Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 21:31 Unexpected "{"
Line 22:27 Expected identifier but found whitespace
Line 22:29 Unexpected "{"
Line 22:38 Expected ":"
Line 22:72 Expected ":"
Line 23:24 Expected identifier but found whitespace
Line 23:26 Unexpected "{"
Line 23:35 Expected ":"
... and 39 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:brand-family-section (INDEX:2) */
#brand-family-{{ section.id }} {
    --brand-henagon-height: {{ section.settings.henagon_logo_height }}px;
    --brand-logo-height: {{ section.settings.brand_logo_height }}px;
    background: {{ section.settings.background_color }};
    width: 100%;
    box-sizing: border-box;
  }

  #brand-family-{{ section.id }} .brand-family__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  #brand-family-{{ section.id }} .brand-family__inner--full {
    max-width: none;
  }

  #brand-family-{{ section.id }} .brand-family__henagon {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  #brand-family-{{ section.id }} .brand-family__henagon-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  #brand-family-{{ section.id }} .brand-family__eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: {{ section.settings.muted_text_color }};
  }

  #brand-family-{{ section.id }} .brand-family__henagon-logo {
    height: var(--brand-henagon-height);
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  #brand-family-{{ section.id }} .brand-family__henagon-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: {{ section.settings.text_color }};
  }

  #brand-family-{{ section.id }} .brand-family__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #brand-family-{{ section.id }} .brand-family__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #brand-family-{{ section.id }} .brand-family__logo {
    height: var(--brand-logo-height);
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  #brand-family-{{ section.id }} .brand-family__placeholder {
    font-size: 0.95rem;
    font-weight: 600;
    color: {{ section.settings.muted_text_color }};
  }

  @media screen and (max-width: 749px) {
    #brand-family-{{ section.id }} .brand-family__inner {
      gap: 1.5rem;
    }

    #brand-family-{{ section.id }} .brand-family__grid {
      gap: 1.75rem;
    }
  }
/* END_SECTION:brand-family-section */