/* FAQ Page Scoped */
.ah-faq .container {
  max-width: 1100px;
}

/* HERO (Frequently asked questions) */
.ah-faq-hero {
  background: #eef1ea;
  padding: 90px 0 70px;
  text-align: center;
}

.ah-faq-hero__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 500;
  color: #111;
}

.ah-faq-hero__subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}

/* Optional intro area */
.ah-faq-intro {
  padding: 30px 0 0;
}

/* SECTION area */
.ah-faq-section {
  /* background: #e6f0ee; */
  padding: 60px 0;
}

.ah-faq-admin-hint {
  margin: 0 0 25px 46px;
  font-size: 13px;
  opacity: .7;
}

/* SECTION TITLES (Main heading) + bottom border */
.ah-faq-section__title{
  margin: 0 0 14px;
  padding: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(0,0,0,.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* Space after title before accordion */
.ah-faq-section__title + .ah-faq-accordion{
  margin-top: 10px;
}

/* ACCORDION */
.ah-faq-accordion {
  margin-bottom: 26px; /* gap between sections */
}

/* Each item */
.ah-faq-item {
  position: relative;
  padding-left: 14px;
}

.ah-faq-item + .ah-faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Left vertical accent (only on open) */
.ah-faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: transparent;
  border-radius: 2px;
}

.ah-faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
}

.ah-faq-q__left {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

/* Number */
.ah-faq-q__no {
  min-width: 28px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
}

/* Question */
.ah-faq-q__text {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
}

/* Toggle (+ / -) */
.ah-faq-q__toggle {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.45);
}

/* Answer (hidden by default) */
.ah-faq-a {
  display: none;
  padding: 0 0 18px 46px; /* aligns under question text */
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.70);
}

/* OPEN state */
.ah-faq-item.is-open::before {
  background: #c58b24; /* orange line */
}

.ah-faq-item.is-open .ah-faq-q__no,
.ah-faq-item.is-open .ah-faq-q__text {
  color: #c58b24; /* orange active */
}

.ah-faq-item.is-open .ah-faq-q__toggle {
  color: rgba(0, 0, 0, 0.6);
}

.ah-faq-item.is-open .ah-faq-a {
  display: block;
}

/* Mobile */
@media (max-width: 640px) {
  .ah-faq-hero { padding: 70px 0 55px; }
  .ah-faq-q__text { font-size: 16px; }
  .ah-faq-a { padding-left: 40px; }

  .ah-faq-section__title{
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
