/* ========================================
   分类归档页面样式 - Category Archive Styles
======================================== */

/* 分类横幅 - Category Banner */
.category-banner {
	flex-shrink: 0;
	width: 100%;
	max-height: 400px;
	position: relative;
	object-fit: cover;
	display: block;
}
.category-content{
	padding: 0 30px;
}

/* 分类内容区 - Category Content */
.category-name {
	color: #000000;
	text-align: center;
	font-size: 56px;
	font-weight: 700;
	position: relative;
	margin-bottom: 60px;
	text-transform: uppercase;
}

.category-description {
	text-align: center;
	color: #666;
	font-size: 16px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 60px;
}


/* ========================================
   响应式设计 - Responsive Design
======================================== */

/* 小桌面 - Small Desktop (1281px - 1440px) */
@media (max-width: 1440px) {
	.category-name {
		font-size: 48px;
	}
}

/* 笔记本 - Laptop (1025px - 1280px) */
@media (max-width: 1280px) {
	.category-name {
		font-size: 42px;
		margin-bottom: 15px;
	}
	
	.category-description {
		font-size: 15px;
		margin-bottom: 50px;
	}
}

/* 平板横屏 - Tablet Landscape (768px - 1024px) */
@media (max-width: 1024px) {
	.category-name {
		font-size: 36px;
		letter-spacing: 0;
	}
	.category-description {
		font-size: 14px;
		margin-bottom: 40px;
		max-width: 600px;
	}
}

/* 平板竖屏 - Tablet Portrait (600px - 768px) */
@media (max-width: 768px) {
	.category-name {
		font-size: 32px;
		margin-bottom: 12px;
	}
	
	.category-description {
		font-size: 14px;
		margin-bottom: 30px;
		padding: 0 10px;
	}
	
}

/* 大手机 - Large Mobile (480px - 599px) */
@media (max-width: 599px) {
	.category-name {
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.category-description {
		font-size: 13px;
		margin-bottom: 25px;
		line-height: 1.5;
	}
	
}

/* 小手机 - Small Mobile (0 - 479px) */
@media (max-width: 479px) {
	.category-name {
		font-size: 24px;
		margin-bottom: 8px;
	}
	
	.category-description {
		font-size: 12px;
		margin-bottom: 20px;
	}
	
}

/* 超小手机 - Extra Small Mobile (0 - 360px) */
@media (max-width: 360px) {
	.category-name {
		font-size: 20px;
	}
}