.faq-section__content {
  max-width: 960px;
  display: flex;
  flex-direction: column;
}
.faq-section__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .faq-section__text {
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .faq-section__text {
    gap: 4rem;
  }
}
@media (min-width: 768px) {
  .faq-section__text {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .faq-section__text {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .faq-section__text {
    margin-bottom: 2.25rem;
  }
}
.faq-section__text .faq-section__title {
  width: 100%;
  max-width: 325px;
}
.faq-section .investments-section__card-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .faq-section .investments-section__card-info {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .faq-section .investments-section__card-info {
    margin-bottom: 2.25rem;
  }
}
.faq-section .investments-section__card-info-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.faq-section .investments-section__card-info-block:last-child {
  border-bottom: none;
}
.faq-section .investments-section__card-info-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
}
.faq-section .investments-section__card-info-label svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .faq-section .investments-section__card-info {
    flex-direction: row;
  }
  .faq-section .investments-section__card-info-block {
    flex-direction: column;
    gap: 0.625rem;
    justify-content: center;
    padding-block: 0.5rem;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
  .faq-section .investments-section__card-info-block:last-child {
    border-right: none;
  }
}
.faq-section .accordion {
  padding-block: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .faq-section .accordion {
    padding-block: 2rem;
  }
}
@media (min-width: 992px) {
  .faq-section .accordion {
    padding-block: 2.25rem;
  }
}
.faq-section .accordion__header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  transition: 0.25s ease;
  border: none;
  background: none;
}
.faq-section .accordion__header:hover {
  color: #000000;
}
.faq-section .accordion__icon {
  width: 24px;
  height: 24px;
  flex: none;
}
@media (min-width: 768px) {
  .faq-section .accordion__icon {
    width: 48px;
    height: 48px;
  }
}
.faq-section .accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-section .accordion__content p {
  padding-top: 1rem;
}
.faq-section .accordion.open .accordion__header {
  color: #000000;
}
.faq-section .accordion.open .accordion__content {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}
