/** Shopify CDN: Minification failed

Line 10:13 Expected identifier but found whitespace
Line 10:15 Unexpected "{"
Line 10:25 Expected ":"

**/
/* FAQ Card Accordion */
.accordion {
  background: {{ settings.color_background | default: '#ffffff' }};
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-top: 0;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.accordion:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.accordion + .accordion {
  border-top: 1px solid rgba(var(--color-foreground), 0.1); /* restored — each card has its own border */
}
.accordion summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.25rem;
  /* remove: position: relative; line-height: 1; */
}

.accordion .summary__title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  /* this already exists but make sure it's flex, not just flex: 1 */
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::marker { display: none; content: ''; }

.accordion__title {
  margin: 0;
  word-break: break-word;
}
.accordion .svg-wrapper {
  align-self: center;
  fill: rgb(var(--color-foreground));
  height: 1.8rem;
  width: 1.8rem;
  margin-right: 0.4rem;
  opacity: 0.4;
}
.accordion .icon-caret {
  height: .9rem;
  margin-left: auto;
  opacity: 0.35;
  transition: transform 0.2s ease;
}
.accordion details[open] > summary .icon-caret {
  transform: rotate(180deg);
}
.accordion__content {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  font-size: 1.5rem;
  line-height: 1.65;
  word-break: break-word;
  overflow-x: auto;
}
.accordion__content img { max-width: 100%; }

.accordion .accordion__title.h6 {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  line-height: 1.4;
}

.accordion ul {
  padding-left: 0;
  list-style: none;
}

.accordion li {
  position: relative;
  padding-left: 1.5em;
}

.accordion li::before {
  content: "•";
  position: absolute;
  left: 0;
}