/** Shopify CDN: Minification failed

Line 104:10 Unexpected "{"
Line 104:19 Expected ":"
Line 105:14 Expected identifier but found whitespace
Line 105:16 Unexpected "{"
Line 105:25 Expected ":"
Line 105:76 Expected ":"
Line 106:17 Expected identifier but found whitespace
Line 106:19 Unexpected "{"
Line 106:28 Expected ":"
Line 106:82 Expected ":"
... and 14 more hidden warnings

**/
.features-list-section {
  margin: 0 auto;
}

.features-list-section__header {
  margin-bottom: 2rem;
}

.features-list-section__heading {
  margin: 0 0 1rem 0;
  font-weight: 700;
  color: var(--color-foreground);
}

.features-list-section__subheading {
  font-size: 1.1rem;
  color: var(--color-foreground-75);
  line-height: 1.4;
}

.features-list-section__container {
  max-width: 100%;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: var(--features-background-color, #fff9e6);
  border-left: 3px solid var(--features-accent-color, #ffd771);
  padding: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item__icon {
  min-width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 1rem;
  color: var(--features-accent-color, #ffd771);
  font-weight: bold;
}

.feature-item__content {
  flex: 1;
}

.feature-item__text {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--features-text-color, #303030);
}

.feature-item__highlight {
  color: var(--features-highlight-color, #000000);
  font-weight: 600;
}

/* Responsive adjustments */
@media screen and (max-width: 749px) {
  .features-list-section__heading {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 0.875rem;
  }
  
  .feature-item__text {
    font-size: 1.4rem;
  }
}

/* Custom properties for dynamic theming */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.1 | round: 2 }}rem;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.1 | round: 2 }}rem;
}

/* Color scheme support */
.section-{{ section.id }}-padding {
  --features-background-color: {{ section.settings.background_color }};
  --features-accent-color: {{ section.settings.accent_color }};
  --features-text-color: {{ section.settings.text_color }};
  --features-highlight-color: {{ section.settings.highlight_color }};
} 