@charset "UTF-8";
/* ── FAQ ── */
/* line 2, app/assets/stylesheets/customer/project_faqs.scss */
.faq-title-bar {
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--brand, #00A63E);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Desktop — single card with dividers */
/* line 12, app/assets/stylesheets/customer/project_faqs.scss */
.faq-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/customer/project_faqs.scss */
.faq-row {
  /* border-bottom: 1px solid #E5E7EB; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  border-radius: 8px;
}

/* line 24, app/assets/stylesheets/customer/project_faqs.scss */
.faq-row:last-child {
  border-bottom: none;
}

/* line 27, app/assets/stylesheets/customer/project_faqs.scss */
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  gap: 16px;
  cursor: pointer;
  border-radius: 8px;
}

/* line 40, app/assets/stylesheets/customer/project_faqs.scss */
.faq-btn-text {
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.45;
  flex: 1;
}

/* line 47, app/assets/stylesheets/customer/project_faqs.scss */
.faq-btn:not(.collapsed) .faq-btn-text {
  /* font-weight: 500; */
}

/* line 50, app/assets/stylesheets/customer/project_faqs.scss */
.faq-chevron-icon {
  font-size: 14px;
  color: #717182;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* line 56, app/assets/stylesheets/customer/project_faqs.scss */
.faq-btn:not(.collapsed) .faq-chevron-icon {
  transform: rotate(180deg);
}

/* line 59, app/assets/stylesheets/customer/project_faqs.scss */
.faq-body {
  font-size: 14px;
  color: #4A5565;
  line-height: 1.65;
  padding: 0 24px 20px;
}

/* Mobile — individual rounded cards */
/* line 67, app/assets/stylesheets/customer/project_faqs.scss */
.faq-card-mobile {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}

/* line 73, app/assets/stylesheets/customer/project_faqs.scss */
.faq-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px;
  text-align: left;
  gap: 12px;
  cursor: pointer;
}

/* line 85, app/assets/stylesheets/customer/project_faqs.scss */
.faq-mobile-question {
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  flex: 1;
  line-height: 1.45;
}

/* line 92, app/assets/stylesheets/customer/project_faqs.scss */
.faq-mobile-chevron {
  font-size: 13px;
  color: #9CA3AF;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* line 98, app/assets/stylesheets/customer/project_faqs.scss */
.faq-mobile-btn:not(.collapsed) .faq-mobile-chevron {
  transform: rotate(90deg);
}

/* line 101, app/assets/stylesheets/customer/project_faqs.scss */
.faq-mobile-answer {
  font-size: 13px;
  color: #4B5563;
  padding: 0 16px 16px;
  line-height: 1.6;
}
