/* FAQ + header logo — единственное нужное из sharedFiles/css/main.css для курсов */
.faq {
  padding: 20px 0;
}
.faq-item {
  padding: 10px 20px;
  box-shadow: 0 0 9px 3px #0003;
  border-radius: 10px;
  margin-bottom: 20px;
}
.faq-item__header {
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  font-size: 18px;
  cursor: pointer;
  padding: 10px 0;
}
.faq-item__arrow {
  width: 14px;
  transform: rotate(-90deg);
  cursor: pointer;
}
.faq-item--active .faq-item__arrow {
  transform: rotate(0);
}
.faq-item__body {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.faq-item--active .faq-item__body {
  height: auto;
  opacity: 1;
}
.logo svg {
  display: block;
  max-width: 100%;
}
