/* ── Article body typography ──────────────────────────────────────────── */
.web-page .article-body p,
.web-page .article-body li {
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #001d3d;
}
.web-page .article-body p {
  margin-bottom: 20px;
}
.web-page .article-body h1 {
  /* Article title at H2 visual size (keeps <h1> for SEO/a11y) */
  font-size: 26px !important;
  line-height: 25px !important;
  margin-bottom: 20px !important;
}
.web-page .article-body h4 {
  margin-top: 40px;
  margin-bottom: 16px;
}
.web-page .article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.web-page .article-body li {
  margin-bottom: 0;
}
.web-page .article-body a {
  color: #dc634b;
  text-decoration: underline;
}
.web-page .article-body :last-child {
  margin-bottom: 0;
}

/* Comparison table inside article body */
.web-page .article-body .article-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  border: 1px solid #e0dfdd;
  border-radius: 8px;
}
.web-page .article-body table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.web-page .article-body th,
.web-page .article-body td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #001d3d;
  border-bottom: 1px solid #e0dfdd;
}
.web-page .article-body th + th,
.web-page .article-body td + td {
  border-left: 1px solid #e0dfdd;
}
.web-page .article-body tbody tr:last-child td {
  border-bottom: none;
}
.web-page .article-body th {
  font-weight: 600;
  background: #efeeed;
}

/* ── FAQ inside article (.article-faq) ───────────────────────────────── */
.web-page .article-faq .faq-static-title {
  font-size: 22px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  text-wrap: balance;
}
.web-page .article-faq .article-faq-answer,
.web-page .article-faq .article-faq-answer p {
  font-size: 18px !important;
  line-height: 28px !important;
  color: #001d3d;
}
.web-page .article-faq .faqs-section div:has(> .faq-static-title) {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  gap: 20px !important;
}

/* Article 900px container */
.article-container {
  max-width: 900px;
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ section inside article — collapse bottom padding */
.article-faq .faqs-section {
  padding-bottom: 6px !important;
}

/* Newsletter banner spacing */
.blog-newsletter-wrap {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .article-container {
    padding-left: 0;
    padding-right: 0;
  }

  .web-page .article-body p,
  .web-page .article-body li {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  .web-page .article-body h1 {
    font-size: 40px !important;
    line-height: 42px !important;
  }
  .web-page .article-body h4 {
    margin-top: 64px;
    margin-bottom: 20px;
  }
  .web-page .article-faq .faq-static-title {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  .web-page .article-faq .article-faq-answer,
  .web-page .article-faq .article-faq-answer p {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  .blog-newsletter-wrap {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}

.web-page p {
  text-wrap: pretty;
}
.web-page h1,
.web-page h2,
.web-page h3,
.web-page h4 {
  text-wrap: balance;
}