/* FAQ page - uses content.css shell. */

.faq-section,
.c-faq--page {
  background: #fff;
  border: 1.5px solid #ece8df;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 10px 28px rgba(10,10,10,.04);
}
.faq-section > h2,
.faq-theme {
  font-family: var(--font-display, Georgia, serif);
  font-size: 28px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3eee7;
}
.faq-section > h2:first-child,
.faq-theme:first-child { margin-top: 0; }
.faq-section > h3,
.faq-q,
.c-faq--page .c-faq__question {
  font-family: var(--font-display, Georgia, serif);
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 10px;
}
.faq-section > h2 + h3,
.faq-theme + .faq-q,
.faq-theme + .c-faq__question { margin-top: 0; }
.faq-section > p,
.faq-a,
.c-faq--page .c-faq__answer {
  font-size: 15.5px;
  line-height: 1.82;
  color: #333;
  margin: 0 0 16px;
}
.faq-section > p:last-child,
.faq-a:last-child,
.c-faq--page .c-faq__answer:last-child { margin-bottom: 0; }
.faq-section a {
  color: #e20612;
  font-weight: 800;
}
.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 28px;
  overflow: hidden;
  border-radius: 12px;
}
.faq-table th {
  background: #0a0a0a;
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
}
.faq-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  background: #fff;
}
.faq-table tr:last-child td { border-bottom: none; }
.faq-table .hl { font-weight: 800; color: #e20612; }
.faq-steps {
  list-style: none;
  padding: 0;
  margin: 12px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #faf8f5;
  border: 1.5px solid #f0ede8;
  border-radius: 12px;
  padding: 14px;
}
.faq-step__num {
  background: #e20612;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-step__body h4 {
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 6px;
}
.faq-step__body p {
  color: #333;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.faq-note {
  background: #fdf8f0;
  border: 1.5px solid #f2dfbd;
  border-left: 4px solid #c8922a;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0;
}
.faq-alert {
  background: #fff5f5;
  border: 1.5px solid #fde0e0;
  border-left: 4px solid #e20612;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0;
}
.seo-after {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

.seo-after .prod-cta {
  margin-top: 0;
}

@media (max-width: 700px) {
  .faq-section,
  .c-faq--page { padding: 22px 18px; border-radius: 12px; }
  .faq-theme { font-size: 24px; margin-top: 34px; }
  .faq-q,
  .c-faq--page .c-faq__question { font-size: 20px; margin-top: 22px; }
  .faq-table { display: block; overflow-x: auto; }
  .seo-after { gap: 18px; margin-top: 32px; }
}
