/** Shopify CDN: Minification failed

Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:25 Expected ":"
Line 26:12 Expected identifier but found whitespace
Line 26:14 Unexpected "{"
Line 26:23 Expected ":"
Line 26:55 Expected ":"

**/
/* SEO Content Section Styles */
.seo-content-section {
  position: relative;
  width: 100%;
}

.seo-content-section__container {
  position: relative;
  width: 100%;
}

.seo-content-section__heading {
  margin: 0 0 1rem 0;
  line-height: {{ section.settings.heading_line_height }};
  font-size: {{ section.settings.heading_font_size }}px;
  color: inherit;
}

.seo-content-section__content {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  line-height: var(--content-line-height, 1.6);
}

.seo-content-section__content.collapsed {
  max-height: calc(3 * var(--content-line-height, 1.6) * 1em);
}

.seo-content-section__content.expanded {
  max-height: 3000px !important;
}

.seo-content-section__content.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-background, white) 90%);
  pointer-events: none;
}

.seo-content-section__content.expanded::after {
  display: none;
}

.seo-content-section__richtext {
  line-height: var(--content-line-height, 1.6);
}

.seo-content-section__richtext p {
  margin-bottom: 0.75rem;
}

.seo-content-section__richtext p:last-child {
  margin-bottom: 0;
}

.seo-content-section__toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-background, white);
  border: none;
  padding: 0 0 5px 10px;
  cursor: pointer;
  font-size: 0.9em;
  color: inherit;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}

.seo-content-section__toggle:hover {
  opacity: 1;
}

.seo-content-section__toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.seo-content-section__content.expanded .seo-content-section__toggle-icon {
  transform: rotate(180deg);
}

.seo-content-section__toggle .plus path:nth-child(2) {
  transition: opacity 0.3s ease;
}

.seo-content-section__content.expanded .seo-content-section__toggle .plus path:nth-child(2) {
  opacity: 0;
}