#search-results {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.faq_entity {
  padding: 15px;
  border-radius: 10px;
  background-color: #ededed;

  .fd-field-question {
    font-weight: bold;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
  }

  .fd-field-answer {
    padding-block: 15px;
  }

  .fd-field-question[aria-expanded="true"]::after {
    content: " ▲";
  }

  .fd-field-question[aria-expanded="false"]::after {
    content: " ▼";
  }
}
