/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 27 2026 | 03:25:16 */
/* ==================================================
   BLKFOG FAQ – Final System Locked
================================================== */

.blkfog-faq {
  padding: 80px 20px;
}

.blkfog-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   Header
=============================== */

.blkfog-faq-header h1 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--bf-black);
}

.blkfog-faq-header p {
  margin-bottom: 50px;
  color: var(--bf-muted);
}

/* ===============================
   List Structure
=============================== */

.blkfog-faq-list {
  border-top: 1px solid #E5E5E5;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
}

/* ===============================
   Question Button
=============================== */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.5;

  color: var(--bf-black);
  cursor: pointer;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  text-align: left;
}

/* Control readable width cleanly */
.faq-text {
  max-width: 42ch;
}

.faq-question:focus {
  outline: none;
}

/* Arrow */

.faq-question::before {
  content: "→";
  font-size: 14px;
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
}

/* Active State */

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-item.active .faq-question::before {
  transform: rotate(0deg);
}

/* ===============================
   Answer
=============================== */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 14px 0 28px 32px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--bf-body);
}

/* ===============================
   Section Titles
=============================== */

.faq-section {
  margin-bottom: 60px;
  padding: 0 40px 0 0;
}

.faq-section-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--bf-muted);
}

/* ===============================
   Grid Layout
=============================== */

.faq-grid {
  display: grid;
  gap: 40px;
}

/* Smaller gap mobile */

@media (max-width: 600px) {
	.faq-question {
		font-size: 13px;
	}
  .faq-grid {
    gap: 28px;
  }

  .faq-section {
    margin-bottom: 10px;
  }

}

/* Desktop 2-column */

@media (min-width: 900px) {

    .faq-grid {
    grid-template-columns: minmax(0, 520px) minmax(0, 520px);
    gap: 120px;
    justify-content: center;
  }

}