/** Shopify CDN: Minification failed

Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"
Line 23:12 Expected identifier but found whitespace
Line 23:14 Unexpected "{"
Line 23:23 Expected ":"
Line 23:54 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
Line 24:26 Expected ":"
... and 25 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-spec-sheet (INDEX:22) */
.spec-sheet {
    background-color: {{ section.settings.background_color }};
    padding: {{ section.settings.padding_vertical }}px 0;
    margin-top: {{ section.settings.margin_top }}px;
    margin-bottom: {{ section.settings.margin_bottom }}px;
  }

  .spec-sheet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
  }

  .spec-sheet__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: {{ section.settings.accent_color }};
    margin: 0 0 16px 0;
  }

  .spec-sheet__title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: {{ section.settings.heading_color }};
    margin: 0;
  }

  .spec-sheet__table {
    display: flex;
    flex-direction: column;
  }

  .spec-sheet__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid {{ section.settings.divider_color }};
    gap: 20px;
  }

  .spec-sheet__row:first-child {
    border-top: 1px solid {{ section.settings.divider_color }};
  }

  .spec-sheet__row-label {
    font-size: 15px;
    color: {{ section.settings.label_color }};
    flex: 1;
  }

  .spec-sheet__row-value {
    font-size: 15px;
    font-weight: 700;
    color: {{ section.settings.value_color }};
    flex: 1;
    text-align: left;
  }

  @media screen and (max-width: 900px) {
    .spec-sheet__container {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 32px;
    }

    .spec-sheet__header {
      position: static;
    }
  }

  @media screen and (max-width: 600px) {
    .spec-sheet__container {
      padding: 0 20px;
    }

    .spec-sheet__title {
      font-size: 28px;
    }

    .spec-sheet__row {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      padding: 16px 0;
    }

    .spec-sheet__row-label {
      font-size: 13px;
    }

    .spec-sheet__row-value {
      font-size: 15px;
    }
  }
/* END_SECTION:custom-spec-sheet */