
.d9n-description {
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}
.d9n-description h2 {
  color: #111827;
  font-size: 28px;
  line-height: 1.3;
  margin: 1.2em 0 0.6em;
}
.d9n-description h3 {
  color: #1f2937;
  font-size: 22px;
  line-height: 1.35;
  margin: 1.1em 0 0.55em;
}
.d9n-description p {
  margin: 0 0 1em;
}

/* ─── FAQ container ─── */
.d9nfaq_container {
  max-width: 800px;
  
  margin-top: 14px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  font-family: inherit;
  --d9nfaq-bg: #ffffff;
  --d9nfaq-radius: 8px;
  --d9nfaq-question-color: #111827;
  --d9nfaq-answer-color: #374151;
  --d9nfaq-question-size: 16px;
  --d9nfaq-answer-size: 16px;
  --d9nfaq-accent: #111827;
  --d9nfaq-link: #111827;
  --d9nfaq-icon-size: 20px;
  --d9nfaq-divider-color: #e5e7eb;
  --d9nfaq-divider-thickness: 1px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
}

/* ─── FAQ item (details element) ─── */
.d9nfaq_container .d9nfaq_item {
  box-sizing: border-box;
  border-bottom: 1px solid #e5e7eb;
}
.d9nfaq_container .d9nfaq_item:last-child { border-bottom: none; }

/* ─── Question (summary) ─── */
.d9nfaq_container .d9nfaq_question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  box-sizing: border-box;
  font-family: var(--d9nfaq-font-body, inherit);
  font-weight: 600;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  padding: 16px 0;
}
.d9nfaq_container .d9nfaq_question::-webkit-details-marker { display: none; }

/* ─── Answer ─── */
.d9nfaq_container .d9nfaq_answer {
  font-family: inherit;
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
}
.d9nfaq_container .d9nfaq_answer_content {
  padding: 0 0 16px;
  font-size: inherit;
  line-height: inherit;
}
.d9nfaq_container .d9nfaq_answer_content p {
  margin: 0 0 0.75em;
  font-size: inherit;
  line-height: inherit;
}
.d9nfaq_container .d9nfaq_answer_content p:last-child {
  margin-bottom: 0;
}
.d9nfaq_container .d9nfaq_answer_content ul,
.d9nfaq_container .d9nfaq_answer_content ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
  font-size: inherit;
  line-height: inherit;
}
.d9nfaq_container .d9nfaq_answer_content ul {
  list-style: disc;
}
.d9nfaq_container .d9nfaq_answer_content ol {
  list-style: decimal;
}
.d9nfaq_container .d9nfaq_answer_content li + li {
  margin-top: 0.25rem;
}
.d9nfaq_container .d9nfaq_answer_content li {
  font-size: inherit;
  line-height: inherit;
}
.d9nfaq_container .d9nfaq_answer_content a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}
.d9nfaq_container .d9nfaq_answer_content a:hover {
  opacity: 0.9;
}

/* ─── Horizontal rule divider inside answers ─── */
.d9nfaq_container hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

/* ─── Icon: mask-based (CSS only) ─── */
.d9nfaq_container .d9nfaq_icon {
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.d9nfaq_container .d9nfaq_icon::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #111827;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}
.d9nfaq_container details[open] .d9nfaq_icon {
  transform: rotate(180deg);
  transform-origin: center;
}
/* ─── Image ──────────────────────────────────────────────── */
.d9nfaq_img_wrap,
.wtffaq_img_wrap {
  margin: 16px auto;
  display: block;
}
.d9nfaq_img_wrap--small, .wtffaq_img_wrap--small { max-width: 300px; }
.d9nfaq_img_wrap--medium, .wtffaq_img_wrap--medium { max-width: 560px; }
.d9nfaq_img_wrap--full, .wtffaq_img_wrap--full { max-width: 100%; }
.d9nfaq_img_wrap--left, .wtffaq_img_wrap--left { margin-left: 0; margin-right: auto; }
.d9nfaq_img_wrap--right, .wtffaq_img_wrap--right { margin-left: auto; margin-right: 0; }
.d9nfaq_img,
.wtffaq_img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.d9nfaq_img--rounded,
.wtffaq_img--rounded {
  border-radius: 8px;
}
.d9nfaq_img_caption,
.wtffaq_img_caption {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin: 6px 0 0;
}

/* ─── Gallery ────────────────────────────────────────────── */
.d9nfaq_gallery,
.wtffaq_gallery {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}
.d9nfaq_gallery--cols2, .wtffaq_gallery--cols2 { grid-template-columns: repeat(2, 1fr); }
.d9nfaq_gallery--cols3, .wtffaq_gallery--cols3 { grid-template-columns: repeat(3, 1fr); }
.d9nfaq_gallery--cols4, .wtffaq_gallery--cols4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) {
  .d9nfaq_gallery--cols3,
  .d9nfaq_gallery--cols4,
  .wtffaq_gallery--cols3,
  .wtffaq_gallery--cols4 { grid-template-columns: repeat(2, 1fr); }
}
.d9nfaq_gallery_img,
.wtffaq_gallery_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* ─── Gallery carousel (CSS scroll-snap, no JS needed) ───── */
.wtf-cs {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  margin: 20px 0;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.wtf-cs::-webkit-scrollbar { height: 4px; }
.wtf-cs::-webkit-scrollbar-track { background: transparent; }
.wtf-cs::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
.wtf-cs-slide {
  flex: 0 0 calc(90% - 5px);
  scroll-snap-align: start;
}
.wtf-cs--2 .wtf-cs-slide { flex: 0 0 calc(50% - 5px); }
.wtf-cs--3 .wtf-cs-slide { flex: 0 0 calc(33.333% - 7px); }
.wtf-cs--4 .wtf-cs-slide { flex: 0 0 calc(25% - 8px); }
.wtf-cs-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (max-width: 640px) {
  .wtf-cs--2 .wtf-cs-slide,
  .wtf-cs--3 .wtf-cs-slide,
  .wtf-cs--4 .wtf-cs-slide {
    flex: 0 0 calc(80% - 5px);
  }
}

/* ─── Layout columns ─────────────────────────────────────── */
.wtf-columns {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}
.wtf-columns--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wtf-columns--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wtf-column { min-width: 0; }
@media (max-width: 640px) {
  .wtf-columns,
  .wtf-columns--2,
  .wtf-columns--3 { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── Two-row section (stacked canvas: text + image, etc.) ─ */
.wtf-two-row-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  box-sizing: border-box;
}
.wtf-two-row-section .wtf-section-row {
  min-width: 0;
}
.wtf-two-row-section .wtf-section-row + .wtf-section-row {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}

/* ─── Highlight / Callout ────────────────────────────────── */
.d9nfaq_highlight,
.wtffaq_highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid;
  margin: 16px 0;
  box-sizing: border-box;
}
.d9nfaq_highlight--default, .wtffaq_highlight--default { background: #f9fafb; border-color: #d1d5db; }
.d9nfaq_highlight--blue, .wtffaq_highlight--blue { background: #eff6ff; border-color: #3b82f6; }
.d9nfaq_highlight--green, .wtffaq_highlight--green { background: #f0fdf4; border-color: #22c55e; }
.d9nfaq_highlight--yellow, .wtffaq_highlight--yellow { background: #fefce8; border-color: #eab308; }
.d9nfaq_highlight--red, .wtffaq_highlight--red { background: #fff1f2; border-color: #ef4444; }
.d9nfaq_highlight--purple, .wtffaq_highlight--purple { background: #faf5ff; border-color: #8b5cf6; }
.d9nfaq_highlight_icon,
.wtffaq_highlight_icon {
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 1px;
}
.d9nfaq_highlight_body, .wtffaq_highlight_body { flex: 1; min-width: 0; }
.d9nfaq_highlight_title,
.wtffaq_highlight_title {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 4px;
  line-height: 1.4;
}
.d9nfaq_highlight_text,
.wtffaq_highlight_text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

/* ─── Benefits row ───────────────────────────────────────── */
.d9nfaq_benefits,
.wtffaq_benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
@media (max-width: 480px) {
  .d9nfaq_benefits, .wtffaq_benefits { grid-template-columns: 1fr 1fr; }
}
.d9nfaq_benefit,
.wtffaq_benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-sizing: border-box;
  background: #fafafa;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.d9nfaq_benefit:hover,
.wtffaq_benefit:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.d9nfaq_benefit_icon,
.wtffaq_benefit_icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.d9nfaq_benefit_title,
.wtffaq_benefit_title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  display: block;
  margin-bottom: 6px;
}
.d9nfaq_benefit_text,
.wtffaq_benefit_text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
}

/* ─── Comparison table ───────────────────────────────────── */
.wtf-cmp {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.wtf-cmp table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 280px;
}
.wtf-cmp thead tr {
  background: #f9fafb;
}
.wtf-cmp-th {
  padding: 11px 14px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
}
.wtf-cmp-th.wtf-cmp-feature-label {
  text-align: left;
}
.wtf-cmp-td {
  padding: 10px 14px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.wtf-cmp tbody tr:last-child .wtf-cmp-td {
  border-bottom: none;
}
.wtf-cmp-feature {
  font-weight: 500;
  color: #374151;
}
.wtf-cmp-value {
  text-align: center;
  color: #6b7280;
}
.wtf-cmp tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* ─── Divider ────────────────────────────────────────────── */
.d9nfaq_divider,
.wtffaq_divider {
  border: none;
  border-top: var(--d9nfaq-divider-thickness, var(--wtffaq-divider-thickness, 1px)) solid var(--d9nfaq-divider-color, var(--wtffaq-divider-color, #e5e7eb));
  margin: 24px 0;
}
.d9nfaq_divider_labeled,
.wtffaq_divider_labeled {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}
.d9nfaq_divider_labeled::before,
.d9nfaq_divider_labeled::after,
.wtffaq_divider_labeled::before,
.wtffaq_divider_labeled::after {
  content: '';
  flex: 1;
  height: var(--d9nfaq-divider-thickness, var(--wtffaq-divider-thickness, 1px));
  background: var(--d9nfaq-divider-color, var(--wtffaq-divider-color, #e5e7eb));
  display: block;
}
.d9nfaq_divider_label,
.wtffaq_divider_label {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
  flex-shrink: 0;
}