/* ================================
   PickMyCamper – FAQ Styles
   Purpose: Reset document-style CSS
   and force clean 1-column layout
   ================================ */

/* Wrapper */
.pmc-faq-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;

  /* HARD RESET: columns */
  column-count: 1 !important;
  column-width: auto !important;
  columns: auto !important;

  /* HARD RESET: layout systems */
  display: block !important;
}

/* Reset all children to avoid inherited column rules */
.pmc-faq-content * {
  box-sizing: border-box;

  column-count: 1 !important;
  column-width: auto !important;
  columns: auto !important;

  float: none !important;
}

/* Headings */
.pmc-faq-content h1,
.pmc-faq-content h2,
.pmc-faq-content h3 {
  display: block;
  width: 100%;
  clear: both;

  margin-left: 0;
  margin-right: 0;
}

/* Typography spacing */
.pmc-faq-content h1 {
  margin-bottom: 24px;
}

.pmc-faq-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.pmc-faq-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

/* Text blocks */
.pmc-faq-content p,
.pmc-faq-content ul,
.pmc-faq-content ol {
  width: 100%;
  max-width: 100%;
  display: block;

  margin-left: 0;
  margin-right: 0;
}

/* Lists */
.pmc-faq-content ul,
.pmc-faq-content ol {
  padding-left: 20px;
}

.pmc-faq-content li {
  width: 100%;
  max-width: 100%;
}

/* Links */
.pmc-faq-content a {
  word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
  .pmc-faq-content {
    padding: 32px 16px;
  }
}
