/* ── FAQ Block ─────────────────────────────────────────── */

.fc-faqs {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 60px;
}

/* Header */
.fc-faqs .faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.fc-faqs .faq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b2d1e;
  margin-bottom: 12px;
}

.fc-faqs h2.fc-faq-h2 {
  font-size: 38px;
  font-weight: 700;
  color: #7b2d1e;
  margin: 0 0 16px;
  line-height: 1.15;
}

/* Decorative underline */
.fc-faqs .faq-header-rule {
  width: 48px;
  height: 3px;
  background: #c4714a;
  margin: 0 auto;
}

/* List */
.fc-faq-list {
  margin-top: 32px;
}

.fc-faqs .faq-group {
  border-top: 1px solid #ddd6ce;
}

.fc-faqs .faq-group:last-child {
  border-bottom: 1px solid #ddd6ce;
}

/* Question row */
.fc-faqs .faq-question {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
}

.fc-faqs .faq-question a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 4px;
  text-decoration: none;
  color: #2b1a12;
  outline: none;
  gap: 16px;
}

.fc-faqs .faq-question a:hover {
  color: #a23c26;
}

/* Active state — question text turns brand color */
.fc-faqs .faq-question.active a {
  color: #a23c26;
}

/* Hide old Font Awesome icons */
.fc-faqs .faq-question-span i {
  display: none !important;
}

/* +/× icon — injected via JS or pseudo */
.fc-faqs .faq-toggle-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #a23c26;
  transition: transform 0.25s ease;
}

/* Answer */
.fc-faqs .faq-answer {
  display: none;
  margin: 0 0 24px 0;
  padding: 0 4px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.fc-faqs .faq-answer p {
  margin: 0;
  color: #5a3a2a;
}

@media (max-width: 600px) {
  .fc-faqs {
    padding: 36px 16px 48px;
  }

  .fc-faqs .faq-question a {
    padding: 18px 2px;
    font-size: 15px;
  }

  .faq-answer img {
    display: block;
    float: none;
    margin: 10px 0;
  }
}