.schema-faq.wp-block-yoast-faq-block {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.schema-faq-section {
  border: 1px solid #e0e0e0;
  border-bottom: none;
  background: #fff;
}

.schema-faq-section:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.schema-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f9f9f9;
  transition: background 0.2s ease;
  list-style: none;
  user-select: none;
}

.schema-faq-question:hover {
  background: #f0f0f0;
}

.schema-faq-question.active {
  background: #f0f7ff;
  color: #0057b8;
}

.schema-faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: #888;
  transition: transform 0.3s ease, content 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.schema-faq-question.active::after {
  content: '−';
  color: #0057b8;
}

.schema-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.schema-faq-answer.open {
  max-height: 500px;
  padding: 16px 20px;
}