/** Shopify CDN: Minification failed

Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:24 Expected ":"
Line 29:13 Expected identifier but found whitespace
Line 29:15 Unexpected "{"
Line 29:24 Expected ":"
Line 38:8 Expected identifier but found whitespace
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
Line 45:8 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:rich-text (INDEX:136) */
.custom-rich-text {
  padding: 80px 20px;
  background: {{ section.settings.bg_color }};
}

.custom-rich-text .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: {{ section.settings.text_alignment }};
}

.custom-rich-text .subheading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: {{ section.settings.subheading_color }};
}

.custom-rich-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: {{ section.settings.heading_color }};
}

.custom-rich-text .description {
  font-size: 18px;
  line-height: 1.7;
  color: {{ section.settings.text_color }};
  margin-bottom: 30px;
}

.custom-rich-text .btn-wrapper {
  margin-top: 20px;
}

.custom-rich-text .btn-custom {
  display: inline-block;
  padding: 14px 28px;
  background: {{ section.settings.button_bg }};
  color: {{ section.settings.button_text }};
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.custom-rich-text .btn-custom:hover {
  opacity: 0.85;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .custom-rich-text {
    padding: 50px 15px;
  }

  .custom-rich-text h2 {
    font-size: 28px;
  }

  .custom-rich-text .description {
    font-size: 16px;
  }
}
/* END_SECTION:rich-text */