/* =====================================================
   iz_faq — FAQ page
   ===================================================== */

#faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  color: #3d2314;
}

/* Title */
#faq h1.h2 {
  font-size: 3rem;
  text-align: center;
  color: #3d2314;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Subtitle */
#faq .ss-title-faq {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* FAQ list — remove default ul styling */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list > li {
  margin-bottom: 2.5rem;
}

/* Category heading */
.faq-list .category-name {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3d2314;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* Question items block */
.questions-list {
}

.faq-query {
  border: 1px solid #d8d3ce;
  margin-bottom: 10px;
}

/* Question row */
.question_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  user-select: none;
}

.question_container .question {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: #3d2314;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0;
}

/* Chevron */
.question_container .chevron {
  flex-shrink: 0;
  margin-left: 1rem;
  color: #3d2314;
  transition: transform 0.2s ease;
  line-height: 1;
}

.question_container[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* Answer */
.answer {
  padding: 0.25rem 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.answer p:last-child {
  margin-bottom: 0;
}
