/* Blog List Styles - Proper Blog Layout */
.blog-list {
  padding: 40px 24px 80px;
  background: #ffffff;
}

.blog-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-list-title {
  font-size: 32px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 40px;
  text-align: left;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8eaed;
  overflow: hidden;
  position: relative;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.blog-card.featured {
  border: 2px solid #1a73e8;
}

.blog-card-content {
  padding: 32px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #5f6368;
}

.blog-date, .blog-read-time {
  display: inline-block;
}

.blog-card-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.blog-link {
  color: #202124;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-link:hover {
  color: #1a73e8;
}

.blog-excerpt {
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-author {
  color: #5f6368;
  font-size: 14px;
}

.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-tag {
  background: #f1f3f4;
  color: #5f6368;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.blog-tag:hover {
  background: #e8eaed;
}

.read-more-btn {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.read-more-btn:hover {
  color: #1557b0;
  text-decoration: underline;
}

.arrow {
  transition: transform 0.2s;
}

.read-more-btn:hover .arrow {
  transform: translateX(4px);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  z-index: 10;
}

.no-posts {
  text-align: center;
  padding: 80px 24px;
  color: #5f6368;
}

.no-posts h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #202124;
}

.no-posts p {
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .blog-card-content {
    padding: 24px;
  }
  
  .blog-list-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .blog-card-title {
    font-size: 18px;
  }
} 