/* FAQ — Emporium (Altronics) accordion layout */

.html-faq-page .master-wrapper-content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.faq-page {
  text-align: left;
  padding: 0 10px 40px;
}

.faq-page .page-title {
  padding: 0;
  margin: 0 0 36px;
  text-align: left;
}

.faq-page .page-title h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.faq-page .page-body {
  margin: 0;
}

.faq-page .faq-category {
  margin: 0 0 40px;
}

.faq-page .faq-category:last-child {
  margin-bottom: 0;
}

.faq-page .faq-category-header {
  min-height: 0;
  padding: 0 0 12px;
  margin: 0 0 0;
  border-bottom: 1px solid #d9d9d9;
}

.faq-page .faq-category-header h1,
.faq-page .faq-category-header h2,
.faq-page .faq-category-header .title {
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

/* Design mock omits category blurbs; keep markup, hide visually */
.faq-page .faq-category-description {
  display: none;
}

.faq-page .faq-items {
  margin: 0;
  padding: 0;
}

.faq-page .faq-item {
  margin: 0;
  border-bottom: 1px solid #d9d9d9;
}

.faq-page .faq-item .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 18px 0;
  margin: 0;
  overflow: visible;
  cursor: pointer;
  background: none;
  background-image: none;
  transition: color 0.2s ease;
}

.faq-page .faq-item .item-header:hover .question,
.faq-page .faq-item .item-header:hover h1,
.faq-page .faq-item .item-header:hover h3 {
  color: #294951;
}

.faq-page .faq-item .item-header.active {
  background: none;
  background-image: none;
}

.faq-page .faq-item .item-header h1,
.faq-page .faq-item .item-header h3,
.faq-page .faq-item .item-header .question {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #000;
  text-align: left;
}

.faq-page .faq-item .item-header.active h1,
.faq-page .faq-item .item-header.active h3,
.faq-page .faq-item .item-header.active .question {
  color: #000;
}

/* Plus / minus affordance — right side, CSS only (no PNG icons) */
.faq-page .faq-item .item-header:after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  speak: never;
}

.faq-page .faq-item .item-header.active:after {
  content: "\2212"; /* minus sign */
}

.faq-page .faq-item .item-description {
  padding: 0 28px 18px 0;
}

.faq-page .faq-item .item-answer {
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.faq-page .faq-item .item-answer p {
  margin: 0 0 12px;
}

.faq-page .faq-item .item-answer p:last-child {
  margin-bottom: 0;
}

.faq-page .faq-item .item-permalink,
.faq-page .faq-item .item-tags {
  margin: 12px 0 0;
  font-size: 14px;
}

.faq-page .faq-item .item-tags a:not(:last-child):after {
  content: ", ";
}

@media (max-width: 768px) {
  .faq-page .page-title h1 {
    font-size: 26px;
  }

  .faq-page .faq-category-header h1,
  .faq-page .faq-category-header h2,
  .faq-page .faq-category-header .title {
    font-size: 20px;
  }

  .faq-page .faq-item .item-header {
    padding: 16px 0;
  }

  .faq-page .faq-item .item-header h1,
  .faq-page .faq-item .item-header h3,
  .faq-page .faq-item .item-header .question {
    font-size: 15px;
  }
}
