.blog-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}

.blog-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-hero p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 20px 80px;
  }

  .blog-hero h1 {
    font-size: 36px;
  }

  .blog-hero p {
    font-size: 16px;
  }
}


/* ========== BLOG SAYFASI - FİLTRELEME VE ARAMA ========== */
.blog-filter-section {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.blog-search input {
  width: 450px;
  max-width: 90%;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  margin-bottom: 25px;
  transition: 0.2s;
}

.blog-search input:focus {
  border-color: #e63946;
  box-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
}

/* Kategori Butonları */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.blog-categories button {
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.blog-categories button:hover {
  border-color: #e63946;
  color: #e63946;
}

/* Aktif kategori */
.blog-categories button.active {
  background-color: #e63946;
  color: #fff;
  border: 1px solid #e63946;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-search input {
    width: 100%;
    font-size: 14px;
  }

  .blog-categories button {
    font-size: 14px;
    padding: 7px 14px;
  }
}




/* ========== BLOG KARTLARI ========== */
.blog-cards-section {
  background-color: #fff;
  padding: 80px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  max-width: 1150px;
  margin: 0 auto;
}

/* Kart */
.blog-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Görsel */
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* İçerik */
.blog-content {
  padding: 20px;
}

/* Meta Bilgiler */
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.blog-meta .category {
  background-color: #fde8e8;
  color: #e63946;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

.blog-meta .date {
  color: #888;
  font-size: 13px;
}

/* Başlık ve açıklama */
.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Link */
.read-more {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card img {
    height: 200px;
  }

  .blog-content h3 {
    font-size: 16px;
  }

  .blog-content p {
    font-size: 14px;
  }
}




/* BLOG DETAİL */


/* ========== BLOG DETAY ========== */

header{
  position:static!important;
}

.blog-detail {
  background: #fff;
  padding: 30px 0 80px;
}

.blog-detail__container {
  max-width: 46%;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 16px;
}

.blog-detail__back:hover {
  color: #e63946;
}

/* Kapak */
.blog-detail__cover {
  margin: 8px 0 14px;
}

.blog-detail__cover img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* Meta satırı */
.blog-detail__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0 18px;
}

.chip {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.chip--category {
  background: #ffe8e8;
  color: #e63946;
}

.meta {
  color: #666;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Başlık & özet */
.blog-detail__title {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  margin: 6px 0 12px;
}

.blog-detail__excerpt {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* İçerik */
.blog-detail__content {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.85;
}

.blog-detail__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
}

.blog-detail__content p {
  margin: 0 0 14px;
}

.blog-detail__content ul {
  margin: 6px 0 16px 18px;
}

.blog-detail__content li {
  margin: 6px 0;
}

/* Yazar kartı */
.author-card {
  background: #f6f7f8;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 22px;
}

.author-card strong {
  display: block;
  margin-bottom: 6px;
}

.author-card p {
  color: #555;
  margin: 0;
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail {
    padding: 20px 0 60px;
  }

  .blog-detail__container {
    max-width: 90%;
  }

  .blog-detail__title {
    font-size: 26px;
  }

  .blog-detail__excerpt {
    font-size: 15px;
  }
}