/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 203:0 Unexpected "`"

**/
```css
.cmp {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--cmp-bg, #F3E7DA);
}

.cmp__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.cmp__intro {
  text-align: left;
}

.cmp__heading {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cmp-heading-color, #8B5A3C);
  margin: 0 0 16px;
}

.cmp__subheading {
  font-size: 17px;
  line-height: 1.5;
  color: var(--cmp-subheading-color, #2E2E2E);
}

.cmp__subheading p {
  margin: 0;
}

.cmp__table-wrap {
  overflow-x: auto;
  border-radius: 12px;
}

.cmp__table {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  min-width: 640px;
  border-radius: 12px;
  overflow: hidden;
}

.cmp__row {
  display: contents;
}

.cmp__cell {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cmp-border-color, #F3E7DA);
  font-size: 14px;
}

.cmp__row:last-child .cmp__cell {
  border-bottom: none;
}

.cmp__cell--feature {
  background: var(--cmp-feature-col-bg, #8B5A3C);
  color: var(--cmp-feature-col-text, #FFFFFF);
  font-weight: 700;
}

.cmp__cell--col1 {
  background: var(--cmp-col1-bg, #FFFFFF);
  justify-content: center;
}

.cmp__cell--col2 {
  background: var(--cmp-col2-bg, #F0D9C4);
  justify-content: center;
}

.cmp__cell--col3 {
  background: var(--cmp-col3-bg, #EDCFB2);
  justify-content: center;
}

.cmp__cell--head.cmp__cell--col1 {
  color: var(--cmp-col1-text, #4A4A4A);
  font-weight: 600;
  text-align: center;
}

.cmp__cell--head.cmp__cell--col2 {
  color: var(--cmp-col2-text, #4A4A4A);
  font-weight: 600;
  text-align: center;
}

.cmp__cell--head.cmp__cell--col3 {
  color: var(--cmp-col3-text, #4A4A4A);
  font-weight: 600;
  text-align: center;
}

.cmp__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cmp__icon svg {
  width: 12px;
  height: 12px;
}

.cmp__icon--check {
  background: var(--cmp-check-color, #8B5A3C);
}

.cmp__icon--cross {
  background: var(--cmp-cross-color, #D9A066);
}

@media (max-width: 900px) {
  .cmp__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cmp__intro {
    text-align: center;
  }
}

/* MOBILE TABLE FIX */
@media (max-width: 599px) {
  .cmp {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cmp__table-wrap {
    overflow-x: hidden;
    width: 100%;
  }

  .cmp__table {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 0.9fr;
  }

  .cmp__cell {
    padding: 11px 5px;
    font-size: 10px;
    line-height: 1.2;
    min-width: 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .cmp__cell--feature {
    padding-left: 7px;
    padding-right: 7px;
  }

  .cmp__cell--head {
    font-size: 9px;
    line-height: 1.15;
    text-align: center;
    justify-content: center;
  }

  .cmp__cell--head.cmp__cell--col1,
  .cmp__cell--head.cmp__cell--col2,
  .cmp__cell--head.cmp__cell--col3 {
    text-align: center;
    justify-content: center;
  }

  .cmp__icon {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
  }

  .cmp__icon svg {
    width: 10px;
    height: 10px;
  }
}
```
