.faq-block {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-title {
  color: #0f1a3a;
  font-family: var(--secondary-font);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 32.5px */
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  border: none;
  background: none;
  text-align: left;
  gap: 5px;

  color: #0f1a3a;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */

  &.open .faq-arrow {
    transform: rotate(180deg);
  }
}

.faq-answer {
  display: none;

  color: #0f1a3a;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  margin-bottom: 16px;

  &[data-open] {
    display: block;
  }
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 26, 58, 0.05);
}

.faq-item:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .faq-block {
    max-width: 1060px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.faq-item--hidden {
  display: none;
}

  .faq-read-more--hidden {
        display: none;
    }

.faq-read-more svg {
  transition: transform 0.3s ease-in-out;
}

.faq-read-more--rotate svg {
  transform: rotate(180deg);
}

.faq-block .faq-read-more {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f1a3a;
}
.faq-block .faq-read-more span {
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

    @media (min-width: 769px) {
    .faq-item--hidden {
        display: block!important;
    }
    
    .faq-read-more {
        display: none!important;
    }
}