/* =============================================
   FXPOINT Blog — styly
   ============================================= */

/* ── Dark mode tlačítko (stejné jako hlavní web) ── */
#darkModeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: transparent;
  cursor: pointer;
  color: #999;
  transition: color .2s, border-color .2s;
}
#darkModeBtn:hover { color: #ff8c00; border-color: #ff8c00; }
html.dark #darkModeBtn { border-color: #334155 !important; color: #64748b !important; }
html.dark #darkModeBtn:hover { color: #f97316 !important; border-color: #f97316 !important; }

/* ════════════════════════════════════════════
   TYPOGRAFIE ČLÁNKU (.blog-content)
   ════════════════════════════════════════════ */
.blog-content {
  font-size: 1.0625rem;
  line-height: 1.8;
}
.blog-content > * + * { margin-top: 1.25rem; }

.blog-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-content p { color: #374151; }
.blog-content strong { color: #111827; font-weight: 700; }
.blog-content a {
  color: #ea580c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-content a:hover { color: #c2410c; }

.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  color: #374151;
}
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li { margin-top: 0.4rem; }

.blog-content blockquote {
  border-left: 4px solid #ff8c00;
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: #4b5563;
  background: #fff8f0;
  border-radius: 0 8px 8px 0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ── Dark mode varianta obsahu ── */
html.dark .blog-content h2,
html.dark .blog-content h3 { color: #f1f5f9; }
html.dark .blog-content p,
html.dark .blog-content ul,
html.dark .blog-content ol { color: #cbd5e1; }
html.dark .blog-content strong { color: #f1f5f9; }
html.dark .blog-content blockquote {
  color: #cbd5e1;
  background: #1c1008;
  border-left-color: #f97316;
}
