/**
 * 檔案/分類列表頁面樣式 (archive.php)
 *
 * 此檔案包含文章檔案頁面的特定樣式
 * 用於顯示按日期、作者等方式分類的文章列表
 *
 * 引入順序：依賴於 component.css
 *
 * @package 起吉科技
 */

/* ============================================
   檔案頁面標題與篩選
   ============================================ */

/* 檔案標題 */
.archive-header {
	margin: var(--spacing-3xl) 0 var(--spacing-2xl) 0;
}

.archive-title {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--text-color-dark);
	margin: 0;
	padding: 0;
	text-align: left;
}

/* 檔案說明 */
.archive-description {
	/* 日後補充 */
}

/* ============================================
   文章列表
   ============================================ */

/* 文章列表容器 */
.posts-list {
	/* 日後補充 */
}

/* 文章項目 */
.post-item {
	/* 日後補充 */
}

/* ============================================
   分頁控制
   ============================================ */

/* 分頁按鈕 */
.pagination {
	/* 日後補充 */
}

/* ============================================
   響應式設計 (RWD)
   ============================================ */

/* 平板尺寸 (768px - 1024px) */
@media (max-width: 1024px) {
	/* 日後補充 */
}

/* 手機尺寸 (小於 768px) */
@media (max-width: 480px) {
	/* 日後補充 */
}
