.post-faqs {
  margin: 1rem 0 3.5rem;
  padding-top: 1.5rem;
}

.post-faqs__heading {
  margin-bottom: 1.5rem;
}

.post-faqs__heading {
  margin-bottom: 1.5rem;
}

.post-faqs__item {
  margin-bottom: 1.1rem;
}

/* Question button */
.post-faqs__question {
  width: 100%;
  text-align: left;
  padding: .5em .8em;
  background: #f4f4f4;
  color: inherit;
  border: 1px solid #ccc !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  line-height: 1.2;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.post-faqs__question-text {
  padding-right: 20px ;
}

.post-faqs__question:hover,
.post-faqs__question:active,
.post-faqs__question:focus {
	background: inherit;
	color: inherit;
}

/* Hover tint by default — can be suppressed in override CSS if hover_tint is off in JS (by class) */
.post-faqs--no-hover .post-faqs__question {
  transition: none;
}

.post-faqs__question:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Icon */
.post-faqs__icon {
  font-size: 2.25rem;
  font-weight: 300;
  transition: transform 0.2s ease;
}

/* + to × effect via rotation */
.post-faqs__question[aria-expanded="true"] .post-faqs__icon {
  transform: rotate(45deg);
}

/* Answer panel wrapper */
.post-faqs__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  opacity: 0;
}

.post-faqs__answer-inner {
  padding: 1.5rem 1rem 0.5rem 1rem;
  font-size: 1em;
  line-height: 1.5;
}

/* Open state (JS will set max-height inline) */
.post-faqs__answer--open {
  opacity: 1;
}
