/* AllTrips FAQ — Tiny Town Campground Override */
/* Matched to Horizon acf/faq original styling */

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

.alltrips-faq {
  --faq-bg-color: #f4f6f8;
  padding: 50px 0;
}

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

.alltrips-faq__heading {
  font-family: 'Syne', sans-serif;
  font-size: 37.4px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.alltrips-faq__item {
  border-bottom: 2px dashed #48382A;
}

.alltrips-faq__item:last-child {
  border-bottom: 2px dashed #48382A;
}

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

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

.alltrips-faq__question h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #294C7B;
  line-height: 1.4;
}

/* +/− toggle */
.alltrips-faq__toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.alltrips-faq__toggle::before {
  content: '+';
  font-size: 18px;
  font-weight: 900;
  color: #505050;
  transition: color 0.2s ease;
}

.alltrips-faq__item.open .alltrips-faq__toggle {
  transform: none;
}

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

/* Answer */
.alltrips-faq__answer-inner {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #505050;
  padding: 0 0 20px 0;
}

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

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

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