/* public\css\blog-filtered.css */
/* 標題區域 */
.blog-banner {
  padding: 15rem 10rem 5rem;
  text-align: center;
  background-color: #f9f9f9;
  margin-bottom: 30px;
}

.filter-title {
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.filter-type {
  color: #85796b;
  font-weight: 600;
  margin-right: 10px;
}

.filter-value {
  color: #2c3e50;
}

/* 麵包屑導航 */
.blog-breadcrumb {
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #6c757d;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.blog-breadcrumb a {
  color: #85796b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
  color: #3498db;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #ccc;
}

.current-filter {
  color: #333;
  font-weight: 500;
}

/* 文章內容區域 */
.blog-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 文章列表 */
.blog-posts {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.blog-post {
  padding: 30px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

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

.blog-post:hover {
  background-color: #f9f9f9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 文章圖片 */
.post-image {
  flex: 0 0 auto;
  width: 200px;
}

.post-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* 文章標題 */
.post-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.post-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: #3498db;
}

/* 文章元數據 */
.post-meta {
  display: flex;
  gap: 15px;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.post-date {
  margin-right: 15px;
}

.post-categories i {
  margin-right: 5px;
}

.post-categories a {
  color: #85796b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-categories a:hover {
  color: #3498db;
  text-decoration: underline;
}

/* 文章摘要 */
.post-excerpt {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

/* 閱讀更多連結 */
.read-more {
  display: inline-block;
  color: #85796b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.read-more:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* 無文章訊息 */
.no-posts-message {
  padding: 50px;
  text-align: center;
  color: #6c757d;
  font-size: 1.2rem;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .blog-banner {
    padding: 10rem 2rem 3rem;
  }

  .filter-title {
    font-size: 2rem;
  }

  .blog-post {
    flex-direction: column;
  }

  .post-image {
    width: 100%;
    margin-bottom: 15px;
  }

  .post-image img {
    max-height: 250px;
    width: 100%;
  }

  .post-meta {
    flex-direction: column;
    gap: 5px;
  }

  .post-date {
    margin-right: 0;
  }
}
