.sc__programs .post__title {
  margin-bottom: 32px;
}
.sc__programs .main__left-box {
  max-width: 550px;
}
.red__subtitle {
  text-align: center;
  color: #c8102e;
  font-size: 2rem;
  margin-bottom: 15px;
}

.faq-question {
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #8080809c;
  p {
    margin: 0;
  }
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  padding: 16px 0;
  font-weight: 500;
}

.faq-question span:first-child {
  flex: 1;
}

/* Кружечок */
.faq-icon {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  transition: transform 0.3s ease;
}

/* Малюємо шеврон */
.faq-icon::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-bottom: 2px;
  border-right: 2px solid #5f6368;
  border-bottom: 2px solid #5f6368;

  transform: rotate(45deg); /* вниз */
  display: block;
}

/* Поворот при відкритті */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  margin-bottom: 4px;
}

/* Відповідь */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  color: #5f6368;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 870px;
  padding-bottom: 16px;
}
.faq-item.active.long .faq-answer {
  max-height: none;
  padding-bottom: 16px;
}
@media screen and (max-width: 1199px) {
  .main__left-box {
    padding-right: 15px;
  }
}
