/* ═══════════════════════════════════════════
   Thm-Samsung-v5 Bold — FAQ V2 Block
   Solid Color Blocks + High Contrast
   ═══════════════════════════════════════════ */

.fl-bold-faq-v2 {
  padding: 48px;
  margin-bottom: 48px;
  background: #DC2626;
}

.fl-bold-faq-v2-header {
  margin-bottom: 40px;
  text-align: center;
}

.fl-bold-faq-v2-title {
  margin: 0 0 12px;
  font-size: 48px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
}

.fl-bold-faq-v2-intro {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.fl-bold-faq-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.fl-bold-faq-v2-item {
  background: #FFFFFF;
}

.fl-bold-faq-v2-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  color: #1A1A2E;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.fl-bold-faq-v2-question:hover {
  background: #F3F4F6;
}

.fl-bold-faq-v2-number {
  font-size: 24px;
  font-weight: 900;
  color: #DC2626;
  min-width: 36px;
}

.fl-bold-faq-v2-icon {
  margin-left: auto;
  font-size: 24px;
  font-weight: 900;
  color: #DC2626;
  transition: transform 0.2s ease;
}

.fl-bold-faq-v2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.fl-bold-faq-v2-answer p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: #6B7280;
}

.fl-bold-faq-v2-item.is-open .fl-bold-faq-v2-icon {
  transform: rotate(45deg);
}

.fl-bold-faq-v2-item.is-open .fl-bold-faq-v2-answer {
  max-height: 500px;
}

@media (max-width: 768px) {
  .fl-bold-faq-v2 {
    padding: 32px 24px;
  }

  .fl-bold-faq-v2-title {
    font-size: 36px;
  }

  .fl-bold-faq-v2-grid {
    grid-template-columns: 1fr;
  }

  .fl-bold-faq-v2-question {
    padding: 20px;
    font-size: 16px;
  }
}
