/* AllTrips FAQ — Yellowstone Wood Boat Tours Override */
/* Matched to Horizon acf/faq original styling — card-based with teal/blue accents */

@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@300;400;600;700&display=swap');

.alltrips-faq {
  --faq-bg-color: transparent;
  padding: 50px 0;
  background: transparent;
}

.alltrips-faq__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.alltrips-faq__heading {
  font-family: 'Bitter', serif;
  font-size: 37.4px;
  font-weight: 600;
  color: #224d5a;
  margin-bottom: 30px;
}

/* Card-based items with asymmetric radius */
.alltrips-faq__item {
  background: #fff;
  border-radius: 16px 0px;
  margin-bottom: 14px;
  overflow: hidden;
  border-left: 4px solid #a2cced;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(34,77,90,0.07);
}

.alltrips-faq__item:last-child {
  margin-bottom: 0;
}

.alltrips-faq__question {
  padding: 20px 24px;
  gap: 20px;
}

.alltrips-faq__question:hover {
  opacity: 0.85;
}

.alltrips-faq__question h3 {
  font-family: 'Bitter', serif;
  font-size: 20px;
  font-weight: 600;
  color: #224d5a;
  line-height: 1.4;
}

/* Circular toggle button */
.alltrips-faq__toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #a2cced;
  transition: background 0.3s ease;
}

.alltrips-faq__toggle::before {
  content: '+';
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Bitter', serif;
  color: #224d5a;
  line-height: 1;
  transition: color 0.3s ease;
}

.alltrips-faq__item.open .alltrips-faq__toggle {
  transform: none;
  background: #224d5a;
}

.alltrips-faq__item.open .alltrips-faq__toggle::before {
  content: '\2212';
  color: #fff;
}

/* Answer */
.alltrips-faq__answer-inner {
  font-family: 'sofia-pro', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #000;
  padding: 0 24px 20px;
}

/* Answer links */
.alltrips-faq__answer-inner a {
  color: #224d5a;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.alltrips-faq__answer-inner a:hover {
  color: #a2cced;
}

/* Responsive */
@media (max-width: 768px) {
  .alltrips-faq__content { padding: 0 24px; }
  .alltrips-faq__heading { font-size: 28px; }
  .alltrips-faq__question h3 { font-size: 17px; }
}
