/* Custom styles untuk TalentScout - dipakai bersama Tailwind CDN */

/* Hero Slider */
.hero-slide {
  opacity: 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-dot.active {
  background-color: rgb(31 41 55) !important;
  transform: scale(1.2);
}
.hero-dot:not(.active) {
  background-color: rgb(156 163 175);
}

/* FAQ Accordion */
.faq-details summary {
  list-style: none;
}
.faq-details summary::-webkit-details-marker {
  display: none;
}
.faq-details .faq-chevron {
  transition: transform 0.2s ease;
}
.faq-details[open] .faq-chevron {
  transform: rotate(180deg);
}
