/* ============================================================
   Evloji — Blog
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; color: inherit;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-soft); }
.blog-card__cover { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.blog-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.blog-card__meta { font-size: .82rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.18rem; margin: 0; }
.blog-card__body p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.blog-card__more { margin-top: 6px; color: var(--accent); font-weight: 600; font-size: .92rem; }

.blog-empty { text-align: center; color: var(--text-muted); padding: 56px 0; }
.blog-empty svg { width: 40px; height: 40px; color: var(--green-soft); margin-bottom: 12px; }

/* ── Makale ── */
.blog-article { max-width: 760px; }
.blog-back { display: inline-block; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; }
.blog-back:hover { color: var(--accent); }
.blog-article__meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 8px; }
.blog-article h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 24px; }
.blog-article__cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; max-height: 440px; }
.blog-article__cover img { width: 100%; max-height: 440px; object-fit: cover; display: block; }
.blog-content { font-size: 1.08rem; line-height: 1.75; color: var(--text-body); }
.blog-content h2 { font-size: 1.5rem; margin: 32px 0 12px; color: var(--text); }
.blog-content h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--text); }
.blog-content p { margin: 0 0 18px; }
.blog-content ul, .blog-content ol { margin: 0 0 18px; padding-left: 22px; }
.blog-content li { margin-bottom: 8px; }
.blog-content a { color: var(--accent); text-decoration: underline; }
.blog-content img { max-width: 100%; border-radius: var(--radius-sm); }
.blog-content figure { margin: 0 0 24px; }
.blog-content figure img { width: 100%; border-radius: var(--radius); display: block; }
.blog-content figcaption { margin-top: 9px; font-size: .88rem; color: var(--text-muted); text-align: center; }
.blog-content blockquote { margin: 0 0 18px; padding: 6px 18px; border-left: 3px solid var(--green-soft); color: var(--text-muted); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
