/* Wrapper */

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

hr {
    margin-bottom: 2rem;
}

.faq-list {
        display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Each FAQ */

details {
    cursor: pointer;
}

details summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

details summary div {
    font-weight: 500;
}

details summary i:before {
    display: inline-block;
    transition: all 0.3s ease;
}

details[open] summary i:before {
    transform: rotate(45deg);
}

.no-faq {
  display: none;
  font-weight: 400;
  padding: .75rem 1rem;
  border-radius: .5rem;
  color: #a00;
  background-color: rgb(243, 208, 208);
  font-style: italic;
}

.no-faq.visible {
  display: block;
}
