/* ================================
   FAQ CARD
================================ */
.blog-faq-item {
  background: #ffff;
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 12px 14px;
  transition: all 0.3s ease;
  box-shadow: 2px 4px 9px 2px rgba(123, 75, 222, 0.12);
}
/* ================================
   HEADER
================================ */
.blog-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}
/* Heading (Desktop default) */
.blog-faq-header h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #311b49;
}
/* ================================
   ICON
================================ */
.blog-faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: #EDE1F9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A644FF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
/* PLUS default */
.blog-faq-icon::before {
  content: "+";
}
/* MINUS when active */
.blog-faq-item.active .blog-faq-icon::before {
  content: "−";
}
/* ================================
   CONTENT (FIXED - NO JUMP ISSUE)
================================ */
.blog-faq-content {
  max-height: 0;
  overflow: hidden;
  width: 95%;
  padding-top: 2px; /*  spacing (NO JUMP) */
  margin-top: 0px; /*  spacing (NO JUMP) */
  transition: max-height 0.35s ease;
}
/* ================================
   TEXT
================================ */
.blog-faq-content p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #494949;
}
/* ================================
   RESPONSIVE BREAKPOINTS
================================ */
/* Laptop (1024px – 1279px) */
@media (max-width: 1279px) {
  .blog-faq-header h2 {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .blog-faq-content p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .blog-faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 18px;
  }
}
/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .blog-faq-item {
    padding: 18px 16px;
  }
  .blog-faq-header {
    gap: 10px;
  }
  .blog-faq-header h2 {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .blog-faq-content p {
    font-size: 1.1rem;
    line-height: 1.7rem;
  }
  .blog-faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    font-size: 16px;
    border-radius: 6px;
  }
}