.question {
  overflow: hidden;

  margin-bottom: 3rem;
  padding: 4rem 3.5rem;

  cursor: pointer;

  border-radius: 5px;
  background: #fff;
}
.question:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.question.active .question__button {
  transform: rotate(180deg);

  color: #0c6ef1;
}
.question.active .question__content {
  display: block;

  height: auto;

  text-overflow: ellipsis;
}
.question.active .question__title {
  color: #0c6ef1;
}
.question.active .question__body .question__icon {
  background: #000;
}

.question__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding-bottom: 2rem;
}

.question__icon {
  display: block;

  width: 3rem;
  height: 3rem;
  margin: 0.2rem 3rem 0 0;

  text-align: center;

  color: #fff;
  border-radius: 50%;
  background: #c5c5c5;

  font-size: 1.8rem;
  line-height: 3rem;
}

.question__icon--primary {
  color: #fff;
  background: #0c6ef1;
}

.question__button {
  margin-left: 3rem;

  transition: all 0.3s ease;

  color: #999;

  font-size: 2.4rem;
  line-height: 2.4rem;
}

.question__title {
  flex: 1;

  color: #000;

  font-size: 2rem;
}

.question__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding-right: 6rem;
}

.question__content {
  display: -webkit-box;
  overflow: hidden;
  flex: 1;
  -webkit-box-orient: vertical;

  height: 5rem;

  transition: all 0.3s ease;
  text-overflow: ellipsis;

  color: #747474;

  font-size: 1.5rem;
  line-height: 2.5rem;

  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .question {
    padding: 2rem;
  }
  .question__body {
    padding: 0;
  }
}