/* ============================================================
   Luminous — blog post content typography
   Scoped strictly to the post rich-text block (.blog_for_type
   .w-richtext); site-wide heading/paragraph styles untouched.
   Type system modeled on Webflow's blog: readable 18px/1.7 body,
   semibold (600) headings, clear scale, air above / tight below.
   ============================================================ */

.blog_for_type.w-richtext {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #33333b;
  letter-spacing: 0;
}

/* ---------- Paragraphs ---------- */
.blog_for_type.w-richtext p {
  font-size: 18px;
  line-height: 1.7;
  color: #33333b;
  margin: 0 0 22px;
}

/* ---------- Headings: 600 weight, no transforms, minor-third-ish scale ---------- */
.blog_for_type.w-richtext h1,
.blog_for_type.w-richtext h2,
.blog_for_type.w-richtext h3,
.blog_for_type.w-richtext h4,
.blog_for_type.w-richtext h5,
.blog_for_type.w-richtext h6 {
  color: #121217;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.3px;
}

.blog_for_type.w-richtext h1 {
  font-size: 34px;
  line-height: 1.3;
  margin: 52px 0 18px;
}
.blog_for_type.w-richtext h2 {
  font-size: 29px;
  line-height: 1.35;
  margin: 48px 0 16px;
}
.blog_for_type.w-richtext h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 40px 0 14px;
}
.blog_for_type.w-richtext h4 {
  font-size: 20px;
  line-height: 1.45;
  margin: 36px 0 12px;
}
.blog_for_type.w-richtext h5 {
  font-size: 17px;
  line-height: 1.5;
  margin: 32px 0 10px;
  letter-spacing: 0;
}
.blog_for_type.w-richtext h6 {
  font-size: 14px;
  line-height: 1.5;
  margin: 32px 0 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5c5c63;
}

/* no stray top gap when the article opens with a heading */
.blog_for_type.w-richtext > :first-child { margin-top: 0; }
/* consecutive headings sit closer together */
.blog_for_type.w-richtext h2 + h3,
.blog_for_type.w-richtext h2 + h4,
.blog_for_type.w-richtext h3 + h4 { margin-top: 8px; }

/* ---------- Inline ---------- */
.blog_for_type.w-richtext a {
  color: #0854a5;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
.blog_for_type.w-richtext a:hover { color: #337fcf; }
.blog_for_type.w-richtext strong { font-weight: 600; color: #121217; }

/* ---------- Lists ---------- */
.blog_for_type.w-richtext ul,
.blog_for_type.w-richtext ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.blog_for_type.w-richtext li {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 4px;
}
.blog_for_type.w-richtext li::marker { color: #0854a5; }
.blog_for_type.w-richtext li p { margin-bottom: 0; }

/* ---------- Blockquotes ---------- */
.blog_for_type.w-richtext blockquote {
  border-left: 3px solid #0854a5;
  background: none;
  margin: 34px 0;
  padding: 6px 0 6px 26px;
  font-size: 21px;
  line-height: 1.6;
  font-style: normal;
  font-weight: 400;
  color: #494949;
}

/* ---------- Figures & images ---------- */
.blog_for_type.w-richtext figure {
  margin: 38px auto;
}
.blog_for_type.w-richtext figure img,
.blog_for_type.w-richtext img {
  border-radius: 10px;
}
.blog_for_type.w-richtext figcaption {
  font-size: 13px;
  line-height: 1.6;
  color: #5c5c63;
  text-align: center;
  margin-top: 12px;
}

/* ---------- Mobile ---------- */
@media (max-width: 599px) {
  .blog_for_type.w-richtext,
  .blog_for_type.w-richtext p,
  .blog_for_type.w-richtext li { font-size: 16.5px; }
  .blog_for_type.w-richtext h1 { font-size: 28px; margin: 40px 0 14px; }
  .blog_for_type.w-richtext h2 { font-size: 24px; margin: 38px 0 13px; }
  .blog_for_type.w-richtext h3 { font-size: 21px; margin: 32px 0 12px; }
  .blog_for_type.w-richtext h4 { font-size: 18px; margin: 28px 0 10px; }
  .blog_for_type.w-richtext blockquote { font-size: 18px; padding-left: 20px; }
}
