/* Blog styles */
.blog-list {
  margin-top: 20px;
}

.blog-card {
  transition: transform 0.2s ease-in-out;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-card-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.blog-card-excerpt {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-card-meta {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-detail {
  margin-top: 20px;
}

.blog-detail-header {
  margin-bottom: 30px;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.blog-detail-meta {
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.blog-detail-image {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.blog-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}

.blog-content p {
  margin-bottom: 15px;
  color: #555;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-content li {
  margin-bottom: 8px;
  color: #555;
}

.blog-tags {
  margin-top: 20px;
}

.blog-tag {
  display: inline-block;
  background-color: #f8f9fa;
  color: #495057;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid #dee2e6;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 2rem;
  }
  
  .blog-content {
    font-size: 1rem;
  }
  
  .blog-detail-image {
    max-height: 250px;
  }
}
