.career-faq {
  background: #14163a;
  padding: 60px 70px 70px;
}

.career-faq__intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.career-faq .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.career-faq .headline {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #2b2e57;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2f27ce;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

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

.faq-item__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #c7c9d9;
  padding: 0 4px 22px;
  max-width: 640px;
}

@media (max-width: 900px) {
  .career-faq {
    padding: 40px 30px 50px;
  }

  .career-faq .headline {
    font-size: 24px;
  }
}
