.runda-faq {
  position: relative;
  padding: calc(var(--text-gap-lg) * 2) 0;
}

.runda-faq-decorator-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 31.9%;
  z-index: -1;
  transform: translateY(9%);
  max-width: 700px;
}

.runda-faq-decorator-img img {
  width: 100%;
  height: auto;
}

.runda-faq-title span {
  color: #232323;
  font-size: var(--title-size-h2);
  font-weight: 400;
  line-height: normal;
}

.runda-faq-title .runda-faq-highlights {
  color: var(--color-primary);
}

.runda-faq-sub-title {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.60);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
}

.runda-faq-list {
  margin-top: var(--text-gap);
}

.runda-faq-item-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 15px 0;
}

.runda-faq-item-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f7f7f7;
  color: #000;
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  flex-shrink: 0;
  line-height: 38px;
  text-align: center;
}

.runda-faq-item-title {
  color: #000;
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  margin-left: 16px;
  flex: 1;
}

.runda-faq-item-svg-wrapper {
  display: block;
  width: 14px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.runda-faq-item.active .runda-faq-item-svg-wrapper {
  transform: rotate(180deg);
}

.runda-faq-item-svg-wrapper svg {
  width: 100%;
  height: auto;
}

.runda-faq-item-answer {
  display: none;
  border-bottom: 1px solid #E5E5E5;
  padding: 16px 0px 16px 50px;
}

.runda-faq-item-answer p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}


@media screen and (max-width: 992px) {
  .runda-faq-item-question {
    padding: 11px 0;
  }

  .runda-faq-item-num {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .runda-faq-item-answer p {
    font-size: 12px;
  }

  .runda-faq-item-svg-wrapper {
    width: 12px;
  }

  .runda-faq-item-answer {
    padding: 12px 0px 12px 36px;
  }

}