/* BLOG (blog.html, blog/*.html) — a style.css-re épül */
.blog-hero { max-width: 900px; padding: 9rem 2rem 2.5rem; text-align: center; }
.blog-hero .hero-title { margin-bottom: 1rem; }
.blog-hero p { color: var(--cream-dim); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.blog-list { max-width: 1100px; padding-top: 2rem; padding-bottom: 6rem; }
.blog-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; border: 0.5px dashed var(--border-strong); border-radius: var(--radius-lg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--panel); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  color: inherit; text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; line-height: 1.3; color: var(--white); margin-bottom: 0.6rem; }
.blog-card p { color: var(--cream-dim); font-size: 0.9rem; margin-bottom: 1rem; }
.blog-more { margin-top: auto; color: var(--gold); font-size: 0.85rem; font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover { border-color: var(--gold); transform: translateY(-3px); }
}

/* Cikkoldal */
.post { max-width: 720px; margin: 0 auto; padding: 8rem 1.5rem 3rem; }
.post-back { display: inline-block; color: var(--gold); font-size: 0.85rem; text-decoration: none; margin-bottom: 1.5rem; }
.post h1 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15;
  color: var(--white); margin-bottom: 1rem;
}
.post h1 em { font-style: italic; color: var(--gold); }
.post .blog-meta { margin-bottom: 1.5rem; }
.post-lead { font-size: 1.15rem; color: var(--cream-dim); margin-bottom: 2rem; }
.post h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem; line-height: 1.3; color: var(--white); margin: 2.5rem 0 0.8rem; }
.post p { margin-bottom: 1.2rem; }
.post ul { margin: 0 0 1.2rem 1.3rem; }
.post li { margin-bottom: 0.4rem; }
.post a { color: var(--gold); }
.post figure { margin: 2rem 0; }
.post figure img { width: 100%; border-radius: var(--radius-lg); display: block; }
.post figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }

/* Cikk: "Röviden" doboz, borítókép, táblázat, GYIK, szerző, CTA, kapcsolódó cikkek */
.post-tldr {
  background: var(--panel); border-left: 3px solid var(--gold-button);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: 2rem;
}
.post-tldr p { margin: 0; color: var(--cream); }
.post-tldr-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.post-cover { margin: 0 0 2rem; }
.post ol { margin: 0 0 1.2rem 1.3rem; }
.post table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.9rem; display: block; overflow-x: auto; }
.post th, .post td { text-align: left; vertical-align: top; padding: 0.7rem 0.9rem; border-bottom: 0.5px solid var(--border-strong); min-width: 9rem; }
.post th { background: var(--panel); color: var(--white); font-weight: 600; }
.post td:first-child { font-weight: 600; color: var(--white); }
.post-faq h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; line-height: 1.35; color: var(--white); margin: 1.6rem 0 0.4rem; }
.post-faq p { margin-bottom: 0.6rem; }
.post-author { display: flex; gap: 1rem; align-items: flex-start; margin-top: 3rem; padding-top: 1.5rem; border-top: 0.5px solid var(--border); font-size: 0.9rem; color: var(--cream-dim); }
.post-author img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.post-cta {
  background: var(--panel); border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem; margin-top: 2.5rem; text-align: center;
}
.post-cta h2 { margin-top: 0; }
.post-cta h2 em { font-style: italic; color: var(--gold); }
.post-cta p { color: var(--cream-dim); }
.post-cta .btn-primary, .post-cta .btn-ghost { margin: 0.3rem; }
.post .post-cta a.btn-primary { color: var(--ink); text-decoration: none; }
.post .post-cta a.btn-ghost { text-decoration: none; }
.post-related { margin-top: 2.5rem; }
.post-related h2 { font-size: 1.2rem; margin-top: 0; }
