@charset "UTF-8";
/**
 * FAQ module (accordion). Reference: modulos/mod_faq/mod_faq.css
 */

.mod_faq {
  position: relative;
  margin: 40px 0;
}
.mod_faq .row {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 64em) {
  .mod_faq .row {
    flex-direction: column;
    padding: 20px;
  }
}
.mod_faq .side {
  flex: 0 0 280px;
}
.mod_faq .side h2 {
  margin: 0 0 1.5rem;
}
.mod_faq .content {
  flex: 1;
  min-width: 0;
}
.mod_faq .faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.mod_faq .faq-question {
  margin: 0;
  padding: 1rem 0;
  cursor: pointer;
  user-select: none;
}
.mod_faq .faq-answer {
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, margin 0.3s ease;
}
.mod_faq .faq-item.active .faq-answer {
  max-height: 500px;
  margin: 0 0 1rem;
}
