/* ==========================================================
   BLOG SAYFASI - Help Psikoloji
   Diğer sayfalarla BİREBİR UYUMLU
========================================================== */

/* HERO - Diğer sayfalarla aynı */
.blog-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #A0886A 0%, #C9A87C 100%);
}

.blog-hero .hero-content {
  max-width: 800px;
  padding: 0 40px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.blog-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* ARAMA VE FİLTRE */
.blog-filters-section {
  padding: 40px 30px;
  background: #fff;
  border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto 30px;
}

.search-box input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid var(--border-color, #e0e0e0);
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color, #A0886A);
  box-shadow: 0 0 0 3px rgba(160, 136, 106, 0.1);
}

.search-box .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted, #999);
  font-size: 1.2rem;
}

/* Kategori Filtreleri */
.category-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border-color, #e0e0e0);
  background: #fff;
  color: var(--text-dark, #333);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--primary-color, #A0886A);
  color: var(--primary-color, #A0886A);
}

.filter-btn.active {
  background: var(--primary-color, #A0886A);
  border-color: var(--primary-color, #A0886A);
  color: #fff;
}

/* BLOG YAZILARI */
.blog-posts-section {
  padding: 60px 30px;
  background: var(--background-light, #f8f9fa);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* Blog Kart */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 16px;
  background: var(--primary-color, #A0886A);
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-card-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-muted, #777);
}

.blog-date, .blog-reading-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 1.3rem;
  color: var(--text-dark, #333);
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.blog-excerpt {
  color: var(--text-light, #666);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color, #A0886A);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
  color: var(--accent-color, #7BBFA2);
}

/* Sonuç Bulunamadı */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light, #666);
  font-size: 1.1rem;
}

/* RESPONSIVE - Diğer sayfalarla aynı */
@media (max-width: 768px) {
  .blog-hero {
    min-height: auto;
    padding: 40px 0;
  }
  
  .blog-hero h1 {
    font-size: 2.2rem;
  }
  
  .blog-hero p {
    font-size: 1.1rem;
  }
  
  .blog-filters-section {
    padding: 30px 20px;
  }
  
  .category-filters {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .blog-posts-section {
    padding: 40px 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 1.7rem;
  }
  .blog-hero p {
    font-size: 0.95rem;
  }
  
  .search-box input {
    padding: 12px 45px 12px 15px;
    font-size: 0.95rem;
  }
  
  .blog-card-image {
    height: 180px;
  }
  
  .blog-title {
    font-size: 1.05rem;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
  }
}
/* ==========================================================
   BLOG DETAY SAYFASI
========================================================== */
.blog-detail-section {
  padding: 60px 30px;
  background: #fff;
}

.blog-detail-container {
  max-width: 800px; /* Okunabilirlik için dar tutuldu */
  margin: 0 auto;
}

.blog-featured-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Yazı Tipografi (Okunabilirlik Odaklı) */
.blog-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark, #333);
  margin-bottom: 50px;
}

.blog-content h2 {
  font-size: 1.8rem;
  color: var(--primary-color, #A0886A);
  margin: 40px 0 20px;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: var(--text-dark, #333);
  margin: 30px 0 15px;
  font-weight: 600;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary-color, #A0886A);
  padding: 15px 25px;
  margin: 30px 0;
  background: var(--background-light, #f8f9fa);
  font-style: italic;
  color: var(--text-light, #555);
  border-radius: 0 10px 10px 0;
}

/* Yazar Kutusu */
.blog-author-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--background-light, #f8f9fa);
  border-radius: 15px;
  margin-bottom: 40px;
  align-items: center;
}

.blog-author-box .author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A0886A, #C9A87C);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.blog-author-box .author-info strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text-dark, #333);
  margin-bottom: 5px;
}

.blog-author-box .author-info span {
  display: block;
  color: var(--primary-color, #A0886A);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-author-box .author-info p {
  color: var(--text-light, #666);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Sosyal Paylaşım */
.social-share {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.social-share p {
  color: var(--text-light, #666);
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.share-btn:hover { transform: translateY(-3px); }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }

/* Geri Dön Butonu */
.back-to-blog {
  text-align: center;
  margin-bottom: 60px;
}

.back-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary-color, #A0886A);
  border: 2px solid var(--primary-color, #A0886A);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: var(--primary-color, #A0886A);
  color: #fff;
}

/* İlgili Yazılar */
.related-posts-section {
  padding-top: 40px;
  border-top: 1px solid var(--border-color, #e0e0e0);
}

.related-posts-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-dark, #333);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-section { padding: 40px 20px; }
  .blog-content { font-size: 1rem; }
  .blog-content h2 { font-size: 1.5rem; }
  .blog-author-box { flex-direction: column; text-align: center; }
}
/* Hero içindeki meta bilgileri beyaz olsun */
.blog-hero .blog-meta,
.blog-hero .blog-date,
.blog-hero .blog-reading-time {
  color: #fff !important;
  font-weight: 500;
}
/* BLOG DETAY İÇERİK - GÖRÜNÜR YAP */
.blog-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #333 !important;
  background: #fff !important;
  padding: 20px !important;
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
}

.blog-content h2 {
  color: #A0886A !important;
  font-size: 1.8rem !important;
  margin: 40px 0 20px !important;
}

.blog-content p {
  color: #333 !important;
  margin-bottom: 20px !important;
}