








.editor-styles-wrapper .faq,
.faq {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.editor-styles-wrapper .faq>.wp-block-group__inner-container,
.faq>.wp-block-group__inner-container {
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
}

.editor-styles-wrapper .faq .wp-block-details,
.faq .wp-block-details {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  border-radius: var(--border-radius);
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.95);
  overflow: hidden;
  max-height: 460px;
  margin-bottom: 10px;
}

.editor-styles-wrapper .faq .wp-block-details summary,
.faq .wp-block-details summary {
  position: relative;
  margin: 0;
  padding: 22px 68px 22px 28px;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.editor-styles-wrapper .faq .wp-block-details summary::-webkit-details-marker,
.faq .wp-block-details summary::-webkit-details-marker {
  display: none;
}

.editor-styles-wrapper .faq .wp-block-details summary::after,
.faq .wp-block-details summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.editor-styles-wrapper .faq .wp-block-details[open] summary::after,
.faq .wp-block-details[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

.editor-styles-wrapper .faq .wp-block-details> :not(summary),
.faq .wp-block-details> :not(summary) {
  margin: 0;
  padding: 0 28px 24px;

}

.editor-styles-wrapper .faq .wp-block-details>p,
.faq .wp-block-details>p {
  color: var(--text, #4a4a4a);
}

.editor-styles-wrapper .faq .wp-block-details>*+*,
.faq .wp-block-details>*+* {
  margin-top: 0;
}

@media (max-width: 767px) {

  .editor-styles-wrapper .faq .wp-block-details summary,
  .faq .wp-block-details summary {
    padding: 18px 56px 18px 20px;
    font-size: 18px;
  }

  .editor-styles-wrapper .faq .wp-block-details> :not(summary),
  .faq .wp-block-details> :not(summary) {
    padding: 0 20px 20px;
  }

  .editor-styles-wrapper .faq,
  .faq {
    gap: 20px;
  }
}