
.ds-faq-accordion {
  width: 100%;
  display: grid;
  gap: 10px;
}

.ds-faq-entry {
  background: transparent;
}

.ds-faq-trigger {
  width: 100%;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 44px;
  background: #E6DCC8 !important;
  color: #111111;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color .25s ease;
}

.ds-faq-trigger:hover,
.ds-faq-trigger:focus,
.ds-faq-trigger:active {
  background: #E6DCC8 !important;
  color: #111111;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;
}

.ds-faq-question-text {
  margin: 0;
  font-family: inherit;
  font-size: clamp(24px, 2.55vw, 37px);
  line-height: 1.18;
  font-weight: 500;
  color: #111111;
}

.ds-faq-icon {
  flex: 0 0 auto;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.ds-faq-icon svg {
  display: block;
  width: 35px;
  height: 35px;
}

.ds-faq-entry.is-open .ds-faq-icon {
  transform: rotate(180deg);
}

.ds-faq-panel {
  display: block;
  overflow: hidden;
  background: #ffffff;
  height: 0;
  opacity: 0;
  visibility: hidden;
  will-change: height;
  transition: height .82s cubic-bezier(.22,.61,.36,1), opacity .42s ease;
}

.ds-faq-panel-inner {
  padding: 28px 44px 18px;
  color: #262626;
  font-size: 18px;
  line-height: 1.75;
}

.ds-faq-panel-inner p:first-child { margin-top: 0; }
.ds-faq-panel-inner p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .ds-faq-trigger {
    min-height: 96px;
    padding: 20px 22px;
    gap: 14px;
  }

  .ds-faq-question-text {
    font-size: clamp(20px, 6vw, 28px);
  }

  .ds-faq-icon svg {
    width: 28px;
    height: 28px;
  }

  .ds-faq-panel-inner {
    padding: 22px 22px 14px;
    font-size: 16px;
    line-height: 1.7;
  }
}
