/* FAQ section (BEM) - native details/summary, no JavaScript */

.faq {
  background: #EEDBD1;
}

.faq__title {
  font-size: 2.2em;
  text-align: left;
  font-weight: 300;
  text-transform: uppercase;
  color: #663E3E;
  font-family: 'Tiro Bangla', 'Times New Roman', serif;
}

.faq__subtitle {
  color: #7E6B59;
}

.faq__list {
  width:100%;
  margin: 2rem  0;
  padding: 0;
}

.faq__item {
  border-bottom: 1px solid #000000;
  padding: 1rem 0;
  transition: background 0.2s ease;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item:first-child {
  padding-top: 0;
}

.faq__item[open] {
  background: rgba(0, 0, 0, 0.03);
}

.faq__question {
  font-weight: 600;
  color: #663E3E;
  font-size: 1.05em;
  line-height: 1.2;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  margin: 0 -0.25rem;
  border-radius: 4px;
  list-style: none;
  transition: background 0.2s ease;
}

.faq__question:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Hide default details marker */
.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::before {
  content: "▶";
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.65em;
  line-height: 1.2;
  transition: transform 0.2s ease;
  margin-top:-2px;
}

.faq__item[open] .faq__question::before {
  transform: rotate(90deg);
}

.faq__answer {
  margin: 0.75rem 0 0;
  color: #7E6B59;
  line-height: 1.6;
  max-width: 80em;
}
