.blog-v1-faq-wrap {
  margin-bottom: 44px;
}

.blog-v1-faq-title {
  margin: 0 0 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}

.blog-v1-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-v1-faq-item {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.blog-v1-faq-item.is-open {
  border-color: #1d1d1d;
}

.blog-v1-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: #111111;
}

.blog-v1-faq-question:hover,
.blog-v1-faq-question:focus-visible {
  color: #0b3c6d;
}

.blog-v1-faq-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
}

.blog-v1-faq-icon::before,
.blog-v1-faq-icon::after {
  content: "";
  position: absolute;
  background: #111111;
  border-radius: 1px;
}

.blog-v1-faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.blog-v1-faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.blog-v1-faq-item.is-open .blog-v1-faq-icon {
  transform: rotate(45deg);
}

.blog-v1-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.3s ease;
}

.blog-v1-faq-answer p {
  margin: 0 0 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #4a4a4a;
}

@media (max-width: 1024px) {
  .blog-v1-faq-wrap {
    margin-bottom: 30px;
  }

  .blog-v1-faq-title {
    font-size: 20px;
    line-height: 28px;
  }

  .blog-v1-faq-question {
    padding: 16px 18px;
    font-size: 15px;
    line-height: 22px;
  }

  .blog-v1-faq-answer {
    padding: 0 18px;
  }
}
