/* HerbalExt global FAQ component ------------------------------------------ */
.hef-faq-section {
  background: #fff;
}

.hef-faq-heading {
  max-width: 920px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.hef-faq-heading .hef-eyebrow {
  margin-bottom: 18px;
}

.hef-faq-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  text-wrap: balance;
}

.hef-faq-description {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--hef-text, #52605a);
  font-size: 1rem;
  line-height: 1.7;
}

.hef-faq-list {
  width: min(980px, 100%);
  margin-inline: auto;
}

.hef-faq-section .hef-faq-item {
  overflow: hidden;
  margin: 0 0 12px;
  border: 1px solid #dce7dc;
  border-radius: 14px;
  background: #f5f8f5;
  transition: border-color .18s ease, background-color .18s ease;
}

.hef-faq-section .hef-faq-item:last-child {
  margin-bottom: 0;
}

.hef-faq-section .hef-faq-item:hover {
  border-color: #c9ddcb;
  background: #f7faf7;
}

.hef-faq-section .hef-faq-item[open] {
  border-color: #bdd2c1;
  background: #fff;
}

.hef-faq-section .hef-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 72px 16px 22px;
  color: var(--hef-forest, #214b35);
  font-family: var(--hef-font-heading);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition: color .18s ease, background-color .18s ease;
}

.hef-faq-section .hef-faq-item summary::-webkit-details-marker {
  display: none;
}

.hef-faq-section .hef-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e2ede1;
  color: var(--hef-forest, #214b35);
  font: 500 1.22rem/1 var(--hef-font-heading);
  transition: background-color .18s ease, color .18s ease;
}

.hef-faq-section .hef-faq-item[open] > summary {
  background: #f5f8f5;
  color: var(--hef-forest, #214b35);
}

.hef-faq-section .hef-faq-item[open] summary::after {
  content: "−";
  border: 1px solid #cfe0d1;
  background: #e2ede1;
  color: var(--hef-forest, #214b35);
}

.hef-faq-section .hef-faq-item[open] > summary:hover,
.hef-faq-section .hef-faq-item[open] > summary:focus-visible {
  background: #f0f6f0;
  color: var(--hef-forest, #214b35);
}

.hef-faq-section .hef-faq-item summary:hover,
.hef-faq-section .hef-faq-item summary:focus-visible {
  color: var(--hef-brand, #499b58);
}

.hef-faq-section .hef-faq-item summary:focus-visible {
  outline: 2px solid rgba(73, 155, 88, .32);
  outline-offset: -2px;
}

.hef-faq-section .hef-faq-answer {
  max-width: none;
  padding: 20px 72px 24px 22px;
  background: #fff;
  color: var(--hef-text, #52605a);
}

.hef-faq-section .hef-faq-answer p {
  max-width: 820px;
  margin: 0;
  font-size: .95rem;
  line-height: 1.75;
}

.hef-faq-section .hef-faq-answer p + p {
  margin-top: 12px;
}

@media (max-width: 782px) {
  .hef-faq-heading {
    margin-bottom: 30px;
  }

  .hef-faq-heading .hef-eyebrow {
    margin-bottom: 14px;
  }

  .hef-faq-description {
    margin-top: 14px;
    font-size: .94rem;
  }

  .hef-faq-section .hef-faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .hef-faq-section .hef-faq-item summary {
    min-height: 62px;
    padding: 16px 60px 16px 18px;
    font-size: .95rem;
  }

  .hef-faq-section .hef-faq-item summary::after {
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }

  .hef-faq-section .hef-faq-answer {
    padding: 18px 54px 20px 18px;
  }

  .hef-faq-section .hef-faq-answer p {
    font-size: .92rem;
  }
}
