/* Blog Layout Styles */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  font-size: 0.95rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 0.5rem;
  color: #718096;
}

.breadcrumb-item a {
  color: #4a5568;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #2d3748;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #2d3748;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
  margin-bottom: 2rem;
  padding: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.blog-post:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

.blog-post h2 {
  margin-bottom: 1rem;
}

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

.blog-post .summary {
  margin-bottom: 1rem;
}

.blog-post h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-post h1 a {
  color: #1a365d;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-post h1 a:hover {
  color: #2c5282;
}

.post-meta {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-meta .date {
  margin-right: 1rem;
}

.post-meta .categories {
  margin-left: 1rem;
}

.post-meta .categories a {
  color: #4a5568;
  text-decoration: none;
  margin-right: 0.5rem;
}

.post-meta .categories a:hover {
  color: #2d3748;
  text-decoration: underline;
}

.post-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  color: #2b6cb0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.read-more:hover {
  color: #2c5282;
  text-decoration: underline;
}

/* Category and Tag Pages */
.category-header,
.tag-header {
  background: #f8f9fa;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.category-header h1,
.tag-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.category-header p,
.tag-header p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.category-description {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 800px;
}

/* Tag List Styles */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag-list .tag {
  background: #e9ecef;
  border-radius: 20px;
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
  color: #495057;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

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

/* Taxonomy List Pages */
.taxonomy-list {
  margin-top: 2rem;
}

.taxonomy-list .card {
  transition: transform 0.2s ease-in-out;
}

.taxonomy-list .card:hover {
  transform: translateY(-2px);
}

.taxonomy-list .btn-outline-primary {
  transition: all 0.2s ease-in-out;
}

.taxonomy-list .btn-outline-primary:hover {
  transform: translateY(-1px);
}

.taxonomy-list .badge {
  font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-container {
    padding: 1rem;
  }
  
  .category-header h1,
  .tag-header h1 {
    font-size: 2rem;
  }
  
  .blog-post {
    padding: 1rem;
  }
} 