/* Font-family deliberately left unset — inherits the theme's/Elementor
   global kit's typography rather than overriding it. */

.pfaq-section {
  margin: 24px 0;
}

.pfaq-heading {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 16px;
}

.pfaq-list {
  border-top: 1px solid #e8e8e8;
}

.pfaq-item {
  border-bottom: 1px solid #e8e8e8;
}

.pfaq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  list-style: none;
}

.pfaq-question::-webkit-details-marker {
  display: none;
}

.pfaq-question::marker {
  content: '';
}

.pfaq-question:focus-visible {
  outline: 2px solid #7e4deb;
  outline-offset: 2px;
}

.pfaq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.pfaq-icon::before,
.pfaq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #666;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.pfaq-icon::before {
  width: 12px;
  height: 2px;
}

.pfaq-icon::after {
  width: 2px;
  height: 12px;
}

.pfaq-item[open] .pfaq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.pfaq-answer {
  padding: 0 4px 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.pfaq-answer p {
  margin: 0 0 12px;
}

.pfaq-answer p:last-child {
  margin-bottom: 0;
}
