/* question-bank.css — styling for generated static SEO question pages */

.qb-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

/* Deter copying: disable text selection and iOS long-press callout.
   Content stays in the DOM so search engines can still index it. */
.qb-page,
.qb-page * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.qb-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: #4a5a55;
}

.qb-breadcrumb a {
  color: #117a65;
  text-decoration: none;
}

.qb-breadcrumb a:hover {
  text-decoration: underline;
}

.qb-sep {
  margin: 0 6px;
  color: #9aa8a3;
}

.qb-header {
  margin-bottom: 32px;
}

.qb-header h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.qb-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #33403c;
}

.qb-count {
  font-size: 0.95rem;
  color: #4a5a55;
}

.qb-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: #117a65;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.qb-cta:hover {
  background: #0d6151;
}

.qb-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qb-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 122, 101, 0.15);
  border-radius: 14px;
  padding: 18px 20px;
}

.qb-question {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 700;
}

.qb-num {
  color: #117a65;
}

.qb-options {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qb-option {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}

.qb-option.is-correct {
  background: rgba(17, 122, 101, 0.12);
  border: 1px solid rgba(17, 122, 101, 0.35);
}

.qb-label {
  font-weight: 700;
  color: #117a65;
  min-width: 1.2em;
}

.qb-badge {
  margin-left: auto;
  color: #117a65;
  font-weight: 700;
}

.qb-answer {
  margin: 0;
  font-size: 0.95rem;
  color: #33403c;
}

.qb-faq {
  margin-top: 48px;
}

.qb-faq h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.qb-faq-item {
  margin-bottom: 18px;
}

.qb-faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.qb-faq-item p {
  margin: 0;
  color: #4a5a55;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .qb-header h1 {
    font-size: 1.5rem;
  }
}
