/* ==== FAQ Accordion Styles File === */

.faq-section {
  font-family: inherit;
  margin: 24px 0;
}

/* Section heading */
.faq-section > h2,
.faq-section > h3,
.faq-section > h4 {
  margin-bottom: 1rem;
}

/* Individual item */
.faq-item {
/*  border: 1px solid #ffffff;
  border-radius: 6px;
  margin-bottom: 8px;
  background: #fff; */
}

/* Question button */
.faq-q {
  width: 100%;
  background: #f8f8f8;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  text-align: left;
  color: inherit;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.faq-q:hover {
  background: #f1f1f1;
}

/* Chevron indicator */
.faq-chv {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-chv {
  transform: rotate(180deg);
}

/* Answer panel */
.faq-a {
  display: none;
  padding: 0 16px 16px;
  color: #333;
  line-height: 1.65;
  border-bottom: 1px solid #eee;
}

.faq-a-inner > p {
  margin: 0.75em 0;
}

.faq-a-inner > p:first-child { margin-top: 0.75em; }
.faq-a-inner > p:last-child  { margin-bottom: 0; }

.faq-a-inner > ul,
.faq-a-inner > ol {
  margin: 0.5em 0 0.5em 1.4em;
  padding: 0;
}

.faq-a img {
  max-width: 100%;
  height: auto;
}