/* Blog liste ve detay sayfaları için ek stiller */
:root {
  --blog-card-radius: 12px;
  --blog-card-shadow: 0 4px 20px rgba(0,0,0,0.12);
  --blog-card-shadow-hover: 0 12px 32px rgba(0,0,0,0.18);
  --blog-accent: #fec544;
  --blog-muted: #a9adb8;
}

/* Breadcrumb */
.st-breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--blog-muted);
}
.st-breadcrumb a {
  color: var(--blog-muted);
  text-decoration: none;
}
.st-breadcrumb a:hover { color: var(--blog-accent); }
.st-breadcrumb span { margin: 0 0.35rem; }

/* Blog liste kartları */
.st-blog-list .st-post-single.st-style1 {
  background: rgba(255,255,255,0.03);
  border-radius: var(--blog-card-radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.st-blog-list .st-post-single.st-style1:hover {
  transform: translateY(-4px);
  box-shadow: var(--blog-card-shadow-hover);
}
.st-blog-list .st-post-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.st-blog-list .st-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.st-blog-list .st-post-single.st-style1:hover .st-post-thumb img {
  transform: scale(1.05);
}
.st-blog-list .st-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--blog-muted);
}
.st-blog-list .st-post-meta .st-post-date { display: flex; align-items: center; gap: 0.25rem; }
.st-blog-list .st-post-cat {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(254,197,68,0.15);
  color: var(--blog-accent);
  font-size: 0.8rem;
  font-weight: 500;
}
.st-blog-list .st-post-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.st-blog-list .st-post-title { font-size: 1.15rem; line-height: 1.35; margin-bottom: 0.5rem; }
.st-blog-list .st-post-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.st-blog-list .st-post-title a:hover { color: var(--blog-accent); }
.st-blog-list .st-post-excerpt { font-size: 0.95rem; color: var(--blog-muted); flex: 1; margin-bottom: 1rem; line-height: 1.5; }
.st-blog-list .st-post-link { font-size: 0.9rem; font-weight: 600; color: var(--blog-accent); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }
.st-blog-list .st-post-link:hover { color: #ffd666; }

/* Sayfa başlığı (hero) */
.st-blog-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.st-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,16,30,0.7) 0%, rgba(10,16,30,0.85) 100%);
}
.st-blog-hero .container { position: relative; z-index: 1; }
.st-blog-hero .st-page-heading-title { margin-bottom: 0.5rem; }
.st-blog-hero .st-page-heading-sub { color: var(--blog-muted); font-size: 1.05rem; }

/* Detay: makale gövdesi */
.st-article-body { font-size: 1.05rem; line-height: 1.75; }
.st-article-body h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; color: #fff; }
.st-article-body h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.st-article-body p { margin-bottom: 1.25rem; color: #c8ccd4; }
.st-article-body ul, .st-article-body ol { margin: 1rem 0; padding-left: 1.5rem; color: #c8ccd4; }
.st-article-body li { margin-bottom: 0.5rem; }
.st-article-body img { border-radius: var(--blog-card-radius); max-width: 100%; height: auto; margin: 1.5rem 0; box-shadow: var(--blog-card-shadow); }

/* Detay: meta satırı */
.st-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--blog-muted);
}
.st-article-meta .st-meta-item { display: flex; align-items: center; gap: 0.35rem; }
.st-article-meta .st-meta-item i { color: var(--blog-accent); width: 1rem; }

/* Paylaşım butonları */
.st-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.st-article-meta .st-share-buttons { margin-left: auto; margin-top: 0; margin-bottom: 0; }
.st-share-buttons span { font-size: 0.9rem; color: var(--blog-muted); margin-right: 0.5rem; }
.st-share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--blog-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.st-share-buttons a:hover { background: rgba(254,197,68,0.2); color: var(--blog-accent); }

/* Yazar kutusu (E-E-A-T) */
.st-author-box {
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--blog-card-radius);
  border-left: 4px solid var(--blog-accent);
  font-size: 0.95rem;
  color: var(--blog-muted);
}
.st-author-box strong { color: #fff; }
.st-author-box a { color: var(--blog-accent); text-decoration: none; }
.st-author-box a:hover { text-decoration: underline; }

/* İlgili yazılar */
.st-related-posts { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.st-related-posts h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.st-related-posts .st-post-single.st-style1 {
  background: rgba(255,255,255,0.03);
  border-radius: var(--blog-card-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  transition: box-shadow 0.25s ease;
}
.st-related-posts .st-post-single.st-style1:hover { box-shadow: var(--blog-card-shadow); }
.st-related-posts .st-post-thumb { aspect-ratio: 16/10; overflow: hidden; }
.st-related-posts .st-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-related-posts .st-post-info { padding: 1.25rem; }
.st-related-posts .st-post-title { font-size: 1rem; margin-bottom: 0; }
.st-related-posts .st-post-title a { text-decoration: none; color: inherit; }
.st-related-posts .st-post-title a:hover { color: var(--blog-accent); }

/* Önceki / Sonraki */
.st-post-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.st-post-nav a {
  max-width: 48%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--blog-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, color 0.2s;
}
.st-post-nav a:hover { border-color: var(--blog-accent); color: var(--blog-accent); }
.st-post-nav .st-post-nav-label { display: block; font-size: 0.75rem; margin-bottom: 0.25rem; opacity: 0.8; }
.st-post-nav .st-post-nav-next { text-align: right; margin-left: auto; }
.st-mb-20 { margin-bottom: 1.25rem; }
@media (min-width: 768px) { .st-related-posts .st-mb-20 { margin-bottom: 0; } }

/* CTA kutusu */
.st-blog-cta {
  background: rgba(254,197,68,0.1);
  border-radius: var(--blog-card-radius);
  padding: 1.75rem;
  border-left: 4px solid var(--blog-accent);
  margin: 2rem 0;
}
.st-blog-cta h4 { color: var(--blog-accent); margin-bottom: 0.75rem; font-size: 1.1rem; }
.st-blog-cta p { margin-bottom: 1rem; color: #c8ccd4; font-size: 0.95rem; }
.st-blog-cta a.st-btn { margin-top: 0.25rem; }
