/* Blog Sayfası - Kurumsal Basit Tasarım */

.blog-page {
  background-color: #f8f9fa;
}

/* Breadcrumb Section */
.blog-breadcrumb-section {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}

.blog-breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.blog-breadcrumb-section .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}

.blog-breadcrumb-section .breadcrumb-item a:hover {
  color: #495057;
}

.blog-breadcrumb-section .breadcrumb-item.active {
  color: #212529;
}

/* Blog Header Section */
.blog-header-section {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.blog-header-section h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
}

.blog-header-section p {
  font-size: 1rem;
  color: #6c757d;
}

/* Blog Posts Section */
.blog-posts-section {
  padding: 40px 0;
}

.blog-card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dee2e6 !important;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
  border-color: #adb5bd !important;
  transform: translateY(-5px);
}

.blog-image-wrapper {
  overflow: hidden;
  background: #f8f9fa;
}

.blog-image {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-date-badge {
  z-index: 2;
}

.blog-date-badge .badge {
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.blog-title-link {
  color: #212529;
  font-size: 1.1rem;
  line-height: 1.4;
  display: block;
  transition: color 0.2s ease;
  min-height: 3em;
}

.blog-title-link:hover {
  color: #667eea;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card .btn-outline-primary {
  border-color: #667eea;
  color: #667eea;
  font-size: 0.875rem;
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.blog-card .btn-outline-primary:hover {
  background-color: #667eea;
  border-color: #667eea;
  color: #fff;
}

/* Empty State */
.empty-state {
  padding: 3rem 1rem;
}

.empty-state i {
  opacity: 0.3;
}

.empty-state h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.empty-state p {
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  justify-content: center;
}

.pagination .page-link {
  color: #667eea;
  border-color: #dee2e6;
  padding: 10px 16px;
  margin: 0 4px;
  border-radius: 6px;
}

.pagination .page-link:hover {
  background-color: #f8f9fa;
  border-color: #667eea;
  color: #667eea;
}

.pagination .page-item.active .page-link {
  background-color: #667eea;
  border-color: #667eea;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-header-section {
    padding: 30px 0;
  }

  .blog-header-section h1 {
    font-size: 1.5rem;
  }

  .blog-posts-section {
    padding: 30px 0;
  }

  .blog-image {
    height: 200px !important;
  }

  .blog-card .card-body {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .blog-header-section h1 {
    font-size: 1.25rem;
  }

  .blog-title-link {
    font-size: 1rem;
    min-height: auto;
  }
}

