.home-blog-section {
  margin: 3rem 0;
}

.home-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-blog-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.post-entry {
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.post-entry.has-thumbnail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.post-thumbnail {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-thumbnail a:hover img {
  transform: scale(1.05);
}

.post-entry-content {
  flex: 1;
  min-width: 0;
}

.post-entry:last-child {
  border-bottom: none;
}

.post-entry-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.post-entry-header h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.post-entry-header h2 a:hover {
  color: #0066cc;
}

.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
}

.tag {
  text-decoration: none;
  color: #0066cc;
  transition: color 0.2s;
}

.tag:hover {
  color: #004499;
}

.post-summary {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #999;
}

.post-entry-footer a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
  transition: color 0.2s;
}

.post-entry-footer a:hover {
  color: #004499;
}

.view-all-posts {
  text-align: center;
  margin-top: 2rem;
}

.view-all-posts a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.view-all-posts a:hover {
  color: #004499;
}

@media (max-width: 768px) {
  .home-blog-title {
    font-size: 1.75rem;
  }
  
  .post-entry-header h2 {
    font-size: 1.5rem;
  }
  
  .post-entry.has-thumbnail {
    flex-direction: column;
  }
  
  .post-thumbnail {
    width: 100%;
    height: 250px;
  }
}
