/* Blog Search & Filter */
.blog-search-form {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.blog-search-group {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 300px;
}

.blog-search-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.blog-search-input:focus {
  border-color: #f15a24;
}

.blog-category-select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  background: white;
  cursor: pointer;
  min-width: 160px;
  transition: border-color 0.2s;
}

.blog-category-select:focus {
  border-color: #f15a24;
}

.blog-search-actions {
  display: flex;
  gap: 8px;
}

.btn-blog-search {
  padding: 10px 20px;
  background: #f15a24;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-blog-search:hover {
  background: #d94e1f;
}

.btn-blog-clear {
  padding: 10px 20px;
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-blog-clear:hover {
  background: #e5e5e5;
}

.blog-filter-info {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}

.blog-empty-state {
  text-align: center;
  padding: 40px;
  width: 100%;
  color: #94a3b8;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-pagination-btn {
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
}

.blog-pagination-btn:hover {
  background: #e5e5e5;
}

.blog-pagination-active {
  padding: 8px 12px;
  background: #f15a24;
  border: 1px solid #f15a24;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.blog-pagination-ellipsis {
  padding: 8px;
  color: #94a3b8;
}

.blog-pagination-info {
  text-align: center;
  margin-top: 15px;
  color: #666;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .blog-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search-group {
    flex-direction: column;
  }

  .blog-search-actions {
    justify-content: stretch;
  }

  .blog-search-actions .btn-blog-search,
  .blog-search-actions .btn-blog-clear {
    flex: 1;
    text-align: center;
  }
}
