/* ====== TYPOGRAFIA WPISÓW BLOGOWYCH — fancy-blog ====== */

.blog-text.fancy-blog {
  font-size: 17px;
  line-height: 1.9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
}

.blog-text.fancy-blog p {
  margin: 0 0 1.45rem;
}

/* H2 */
.blog-text.fancy-blog h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 3rem 0 1.3rem;
  line-height: 1.25;
  position: relative;
  color: #0e1a23;
}

.blog-text.fancy-blog h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: #c07a3c;
  border-radius: 999px;
  margin-top: 0.7rem;
}

/* H3 */
.blog-text.fancy-blog h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 2.4rem 0 1rem;
  line-height: 1.35;
  color: #0e1a23;
}

/* Linki */
.blog-text.fancy-blog a {
  color: #c07a3c;
  text-decoration: none;
  border-bottom: 1px solid #e0c3aa;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.blog-text.fancy-blog a:hover {
  opacity: 0.75;
  border-color: #c07a3c;
}

/* Listy */
.blog-text.fancy-blog ul,
.blog-text.fancy-blog ol {
  margin: 0.8rem 0 1.8rem 0;
  padding-left: 1.8rem;
}

.blog-text.fancy-blog li {
  margin: 0 0 0.7rem;
  line-height: 1.88;
}

/* UL checkmarki */
.blog-text.fancy-blog ul {
  list-style: none;
}

.blog-text.fancy-blog ul li {
  position: relative;
  padding-left: 0.4rem;
}

.blog-text.fancy-blog ul li::before {
  content: "✔";
  position: absolute;
  left: -1.1rem;
  top: 0.1rem;
  font-size: 0.9rem;
  color: #c07a3c;
  font-weight: 700;
}

/* OL numeracja */
.blog-text.fancy-blog ol {
  list-style-position: inside;
}

.blog-text.fancy-blog ol li {
  padding-left: 0;
}

.blog-text.fancy-blog ol li::marker {
  font-weight: 900;
  color: #0e1a23;
}

/* Cudzysłowy/blockquote */
.blog-text.fancy-blog blockquote {
  margin: 2.4rem 0;
  padding: 1.3rem 1.5rem;
  border-left: 4px solid rgba(192, 122, 60, 0.35);
  background: rgba(192, 122, 60, 0.06);
  border-radius: 10px;
  font-style: italic;
}

/* Strong */
.blog-text.fancy-blog strong {
  font-weight: 600;
  color: #2b2b2b;
}

/* ====== KONIEC TYPOGRAFII — fancy-blog ====== */