.faq-fold-container {
  max-width:800px;
  width:100%;
  padding:0 24px;
}
.faq-title {
  font-family:var(--earn-font);
  font-size:56px;
  font-weight:700;
  text-align:center;
  color:var(--earn-text);
  margin:0 0 48px 0;
  letter-spacing:-0.03em;
}
.faq-title-accent {
  color:var(--earn-green);
}
.faq-list {
  display:flex;
  flex-direction:column;
}
.faq-item {
  border-top:1px solid rgba(255, 255, 255, 0.12);
}
.faq-item:last-child {
  border-bottom:1px solid rgba(255, 255, 255, 0.12);
}
.faq-question {
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  background:transparent;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:var(--earn-font);
  font-size:17px;
  font-weight:600;
  color:var(--earn-text);
  transition:color 0.2s ease;
  outline:none;
}
.faq-question:focus,
.faq-question:focus-visible {
  outline:none;
  box-shadow:none;
}
.faq-question:hover {
  color:rgba(255, 255, 255, 0.7);
}
.faq-question span {
  flex:1;
  padding-right:20px;
}
.faq-chevron {
  width:20px;
  height:20px;
  color:rgba(255, 255, 255, 0.5);
  transition:transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink:0;
}
.faq-item.active .faq-chevron {
  transform:rotate(180deg);
}
.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1), padding 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
  max-height:400px;
  padding-bottom:20px;
}
.faq-answer p {
  margin:0 0 16px 0;
  font-family:var(--earn-font);
  font-size:17px;
  font-weight:400;
  line-height:1.5;
  color:rgba(255, 255, 255, 0.7);
}
.faq-answer p:last-child {
  margin-bottom:0;
}
.faq-learn-more {
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:var(--earn-green);
  font-size:17px;
  font-weight:400;
  text-decoration:none;
  transition:color 0.2s ease;
  margin-top:8px;
  font-family:var(--earn-font);
}
.faq-learn-more:hover {
  color:var(--earn-green-hover);
}
.faq-learn-more::after {
  content:">";
  font-size:20px;
  line-height:1;
  margin-left:2px;
}
@media (max-width:768px) {
  .faq-fold-container {
    padding:0 20px;
  }
  .faq-title {
    font-size:40px;
    margin-bottom:25px;
  }
  .faq-question {
    font-size:15px;
    padding:15px 0;
  }
  .faq-answer p, .faq-learn-more {
    font-size:15px;
  }
}
@media (max-width:480px) {
  .faq-title {
    font-size:32px;
  }
  .faq-question {
    font-size:14px;
  }
  .faq-answer p, .faq-learn-more {
    font-size:14px;
  }
}
