/* ZÁKLADNÍ OBAL */
.blogtpl-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  line-height: 1.7;
  background: #ffffff;
}

/* HERO HLAVIČKA */
.blogtpl-hero {
  margin-bottom: 32px;
}

.blogtpl-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blogtpl-hero-meta span::before {
  content: "•";
  margin: 0 6px;
  color: #d1d5db;
}
.blogtpl-hero-meta span:first-child::before {
  content: "";
  margin: 0;
}

.blogtpl-hero-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 12px;
}

.blogtpl-hero-perex {
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 20px;
}

.blogtpl-hero-figure {
  margin: 0 0 32px;
}
.blogtpl-hero-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

/* OBSAH / TOC */
.blogtpl-toc {
  border-radius: 16px;
  background: #f3f4ff;
  padding: 18px 20px;
  margin-bottom: 32px;
  border: 1px solid #e5e7eb;
}

.blogtpl-toc-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.blogtpl-toc ol {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}
.blogtpl-toc a {
  color: #2563eb;
  text-decoration: none;
}
.blogtpl-toc a:hover {
  text-decoration: underline;
}

/* SEKCÍ NADPISY A TEXT */
.blogtpl-section {
  margin-bottom: 40px;
}

.blogtpl-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blogtpl-section h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 6px;
}

.blogtpl-section p {
  margin: 0 0 10px;
}

.blogtpl-section ul {
  margin: 0 0 12px 20px;
}

/* CTA / PROMO BLOK */
.blogtpl-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f97316, #facc15);
  padding: 20px 24px;
  margin: 32px 0;
  color: #111827;
}

.blogtpl-cta-text {
  flex: 1 1 230px;
}

.blogtpl-cta-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.blogtpl-cta-desc {
  font-size: 14px;
  margin-bottom: 12px;
}

.blogtpl-cta-img {
  flex: 0 0 160px;
  text-align: center;
}
.blogtpl-cta-img img {
  max-width: 140px;
  height: auto;
}

/* TLAČÍTKO */
.blogtpl-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.blogtpl-btn:hover {
  background: #020617;
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(0,0,0,0.25);
}

/* PRODUKTOVÝ BOX */
.blogtpl-product {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 20px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  background: #f9fafb;
}

.blogtpl-product-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.blogtpl-product-body h3 {
  font-size: 18px;
  margin: 0 0 6px;
}

.blogtpl-product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #065f46;
  background: #d1fae5;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.blogtpl-product-meta {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.blogtpl-product-body ul {
  margin: 0 0 8px 18px;
  font-size: 14px;
}

.blogtpl-product-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* TABULKA – POROVNÁNÍ */
.blogtpl-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
}
.blogtpl-table-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.blogtpl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.blogtpl-table th,
.blogtpl-table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
}
.blogtpl-table th {
  background: #eff6ff;
  font-weight: 700;
}
.blogtpl-table tr:nth-child(even) td {
  background: #f9fafb;
}

/* OBRÁZEK V TEXTU */
.blogtpl-figure {
  margin: 20px 0;
  text-align: center;
}
.blogtpl-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.blogtpl-figure figcaption {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

/* BOX AUTORA */
.blogtpl-author {
  margin-top: 40px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
}

.blogtpl-author img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}

.blogtpl-author-name {
  font-weight: 700;
  margin-bottom: 2px;
}
.blogtpl-author-role {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}
.blogtpl-author-text {
  font-size: 14px;
}

/* RESPONSIVITA */
@media (max-width: 700px) {
  .blogtpl-product {
    grid-template-columns: 1fr;
  }
  .blogtpl-cta {
    flex-direction: column;
    text-align: left;
  }
  .blogtpl-hero-title {
    font-size: 26px;
  }
}