/* Turla360 — Blog (yazı listesi)
   Eskiden tüm stiller satır içiydi ve kart hover'ı onmouseover ile yapılıyordu;
   sayfada CSP nonce'u bulunduğundan o handler'lar hiç çalışmıyordu. */

.tn-blog-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1d4ed8 100%);
  color: #fff;
  padding: 64px 0 52px;
  text-align: center;
}
.tn-blog-hero-ust {
  font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255, 255, 255, .6); margin: 0 0 12px;
}
.tn-blog-hero-baslik {
  font-size: clamp(26px, 5vw, 44px); font-weight: 800; line-height: 1.15; margin: 0 0 14px;
}
.tn-blog-hero-alt {
  font-size: 16px; color: rgba(255, 255, 255, .78); max-width: 600px; margin: 0 auto;
}

/* Kategori şeridi */
.tn-blog-katbar { background: #f8fafc; border-bottom: 1px solid #e8edf3; padding: 14px 0; }
.tn-blog-katbar-ic { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tn-blog-kat {
  padding: 6px 15px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1.5px solid #e2e8f0; background: #fff; color: #475569; text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.tn-blog-kat:hover   { border-color: #b9caf0; color: #1d4ed8; }
.tn-blog-kat.is-aktif { background: #1d4ed8; border-color: #1d4ed8; color: #fff; }

.tn-blog-govde { padding: 52px 0 76px; background: #fff; }

/* Boş durum */
.tn-blog-bos { text-align: center; padding: 72px 20px; color: #64748b; }
.tn-blog-bos-ikon {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 18px;
  background: #f1f5f9; color: #94a3b8; display: grid; place-items: center;
}
.tn-blog-bos h2 { font-size: 19px; font-weight: 700; color: #1f2937; margin: 0 0 8px; }
.tn-blog-bos p  { font-size: 14px; margin: 0; }
.tn-blog-bos a  { color: #1d4ed8; font-weight: 600; }

/* Kart ızgarası */
.tn-blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px; margin-bottom: 44px;
}
.tn-blog-kart {
  background: #fff; border: 1px solid #e8edf3; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tn-blog-kart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .11);
  border-color: #d5dee9;
}
.tn-blog-kart-gorsel { display: block; }
.tn-blog-kart-gorsel img {
  width: 100%; height: 190px; object-fit: cover; display: block; background: #eef2f7;
}
.tn-blog-kart-bosgorsel {
  width: 100%; height: 190px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
}
.tn-blog-kart-ic { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.tn-blog-rozet {
  align-self: flex-start; background: #dbeafe; color: #1d4ed8;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
}
.tn-blog-kart-baslik { font-size: 17px; font-weight: 700; line-height: 1.4; margin: 0 0 8px; }
.tn-blog-kart-baslik a { color: #0a1628; text-decoration: none; }
.tn-blog-kart-baslik a:hover { color: #1d4ed8; }
.tn-blog-kart-ozet {
  font-size: 13.5px; color: #6b7280; line-height: 1.6; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.tn-blog-kart-alt {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 4px;
}
.tn-blog-tarih  { font-size: 12px; color: #9ca3af; }
.tn-blog-devam  { font-size: 13px; font-weight: 600; color: #1d4ed8; text-decoration: none; }
.tn-blog-devam:hover { text-decoration: underline; }

/* Sayfalama */
.tn-blog-sayfalama { display: flex; justify-content: center; gap: 8px; margin-top: 30px; flex-wrap: wrap; }
.tn-blog-sayfa {
  min-width: 40px; height: 40px; padding: 0 10px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; background: #f3f4f6; color: #374151; text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.tn-blog-sayfa:hover   { background: #e5e7eb; }
.tn-blog-sayfa.is-aktif { background: #1d4ed8; color: #fff; }

@media (max-width: 640px) {
  .tn-blog-hero  { padding: 46px 0 38px; }
  .tn-blog-govde { padding: 36px 0 56px; }
  .tn-blog-grid  { grid-template-columns: 1fr; gap: 18px; }
}
