/* Blog Styles */
.blog-card {
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-meta {
  color: #666;
  margin-bottom: 1rem;
}

.blog-post-author {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.blog-post-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.blog-post-content {
  line-height: 1.8;
}

.blog-post-content h2 {
  margin-top: 2rem;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.latest-posts {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.latest-posts h2 {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .blog-card .card-img-top {
    height: 180px;
  }
}

.reading-time {
  font-size: 0.9rem;
  color: #666;
}

.blog-tags {
  margin-top: 1rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  margin: 0.2rem;
  background: #e9ecef;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #495057;
  text-decoration: none;
}

.blog-tag:hover {
  background: #dee2e6;
  color: #212529;
}