.erply-stores-scope .faq__wrapper {
  width: 100%;
  background: #F6F6F4 !important;
  overflow: hidden;
  max-width: 44rem;
  margin: 0 auto;
  padding: 120px 38px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.erply-stores-scope .faq .title {
  margin: 0;
  color: #111 !important;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.erply-stores-scope .faq__list {
  margin-top: 3rem;
  padding: 0;
  list-style: none;
}

.erply-stores-scope .faq__list > *:not(:first-child) {
  margin-top: 0.25rem;
}

.erply-stores-scope .faq__item {
  border-radius: 2px;
  padding: 1.21875rem 1rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.03em;
  background-color: #fff !important;
  border: 1px solid #C8C8C3;
  transition: opacity 0.25s ease;
}

.erply-stores-scope .faq__item:is(:hover, :focus-within) {
  opacity: 0.85;
}

.erply-stores-scope .faq__item__head {
  color: #111 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.erply-stores-scope .faq__item__chevron {
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.erply-stores-scope .faq__item__content__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s ease;
}

.erply-stores-scope .faq__item__content {
  min-height: 0;
  color: #666 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.erply-stores-scope .faq__item--open .faq__item__content__wrapper {
  grid-template-rows: 1fr;
}

.erply-stores-scope .faq__item--open .faq__item__content {
  padding-top: 1.85rem;
}

.erply-stores-scope .faq__item--open .faq__item__chevron {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .erply-stores-scope .faq__wrapper {
    padding: 80px 22px;
  }

  .erply-stores-scope .faq .title {
    font-size: 28px;
  }

  .erply-stores-scope .faq__item,
  .erply-stores-scope .faq__item__content {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .erply-stores-scope .faq__wrapper {
    padding: 60px 22px;
  }

  .erply-stores-scope .faq .title {
    font-size: 24px;
  }
}