/* 頁面標題區 */
.startup_page_header {
	text-align: center;
	padding: 60px 20px 40px;
	background: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
	margin: 0 -20px 40px;
	color: #ffffff;
}

.startup_page_title {
	font-size: 3em;
	margin: 0 0 15px;
	font-weight: 700;
}

.startup_page_subtitle {
	font-size: 1.3em;
	margin: 0;
	opacity: 0.95;
}

/* 搜尋區 */
.startup_search_section {
	max-width: 800px;
	margin: 0px auto 25px;
	position: relative;
	z-index: 10;
}

.startup_search_box {
	display: flex;
	background: #ffffff;
	border-radius: 50px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.startup_search_input {
	flex: 1;
	padding: 18px 30px;
	border: none;
	font-size: 1.1em;
	outline: none;
}

.startup_search_btn {
	padding: 18px 40px;
	background: #FF9800;
	color: #ffffff;
	border: none;
	font-size: 1.1em;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.startup_search_btn:hover {
	background: #F57C00;
}

/* 分類導航卡片 */
.startup_categories_section {
	margin-bottom: 60px;
}

.startup_section_title {
	font-size: 2em;
	color: #333333;
	margin-bottom: 30px;
	text-align: center;
	position: relative;
	padding-bottom: 15px;
}

.startup_section_title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #8BC34A 0%, #FF9800 100%);
	border-radius: 2px;
}

.startup_categories_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.startup_category_card {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	display: block;
	border: 2px solid transparent;
}

.startup_category_card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.startup_category_card.startup_cat_4:hover {
	border-color: #8BC34A;
}

.startup_category_card.startup_cat_5:hover {
	border-color: #FF9800;
}

.startup_category_card.startup_cat_6:hover {
	border-color: #2196F3;
}

.startup_category_card.startup_cat_7:hover {
	border-color: #3F51B5;
}

.startup_category_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #3399ff;
    background: linear-gradient(135deg, #ebf8ec 0%, #9ee4a0 100%);
}


.startup_category_name {
	font-size: 1.8em;
	color: #333333;
	margin-bottom: 15px;
	font-weight: 600;
}

.startup_category_desc {
	font-size: 1em;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.startup_category_count {
	font-size: 0.95em;
	color: #999999;
}

.startup_category_count strong {
	color: #8BC34A;
	font-size: 1.3em;
}

/* 精選文章輪播 */
.startup_featured_section {
	margin-bottom: 60px;
}

.startup_carousel {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.startup_carousel_item {
	display: none;
	position: relative;
	height: 500px;
	background-size: cover;
	background-position: top;
}

.startup_carousel_item.active {
	display: block;
}

.startup_carousel_overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
	padding: 50px 40px 40px;
	color: #ffffff;
}

.startup_carousel_category {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.9em;
	font-weight: 600;
	margin-bottom: 15px;
}

.startup_carousel_title {
	font-size: 2.5em;
	margin: 0 0 15px;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.startup_carousel_summary {
	font-size: 1.1em;
	line-height: 1.6;
	margin: 0 0 20px;
	opacity: 0.95;
}

.startup_carousel_meta {
	font-size: 0.95em;
	opacity: 0.9;
}

.startup_carousel_controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}

.startup_carousel_btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	font-size: 1.5em;
	color: #333333;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.startup_carousel_btn:hover {
	background: #ffffff;
	transform: scale(1.1);
}

.startup_carousel_dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.startup_carousel_dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.startup_carousel_dot.active {
	background: #ffffff;
	width: 30px;
	border-radius: 6px;
}

/* 最新文章區 */
.startup_latest_section {
	margin-bottom: 60px;
}

/* 查看更多按鈕 */
.startup_view_more {
	text-align: center;
	margin-top: 40px;
}

.startup_btn {
	display: inline-block;
	padding: 15px 40px;
	background: #8BC34A;
	color: #ffffff;
	border-radius: 30px;
	font-size: 1.1em;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.startup_btn:hover {
	background: #7CB342;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.startup_layout {
	margin-bottom: 60px;
}

/* 響應式設計 */
@media (max-width: 1024px) {
	.startup_layout {
	   margin-bottom: 20px;
	}
	
	
}

@media (max-width: 768px) {
	.startup_page_title {
		font-size: 2em;
	}
	
	.startup_page_subtitle {
		font-size: 1em;
	}
	
	.startup_search_box {
		flex-direction: column;
		border-radius: 12px;
	}
	
	.startup_search_btn {
		justify-content: center;
	}
	
	.startup_categories_grid {
		grid-template-columns: 1fr;
	}
	
	.startup_carousel_item {
		height: 400px;
	}
	
	.startup_carousel_title {
		font-size: 1.8em;
	}
	
	.startup_stories_grid {
		grid-template-columns: 1fr;
	}
}
/***************/
/* 頁面標題 */
.startup_list_header {
	margin-bottom: 40px;
}

.startup_list_title {
	font-size: 2.5em;
	color: #333333;
	margin: 0 0 15px;
	font-weight: 700;
}

.startup_list_subtitle {
	font-size: 1.1em;
	color: #666666;
	margin: 0;
}

.startup_results_info {
	font-size: 0.95em;
	color: #999999;
	margin-top: 10px;
}

.startup_results_info strong {
	color: #8BC34A;
	font-size: 1.2em;
}

/* 篩選工具列 */
.startup_filter_bar {
	background: #f9f9f9;
	padding: 25px;
	border-radius: 12px;
	margin-bottom: 30px;
}

.startup_filter_row {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.startup_filter_row:last-child {
	margin-bottom: 0;
}

.startup_filter_label {
	font-weight: 600;
	color: #333333;
	min-width: 80px;
}

.startup_filter_options {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	flex: 1;
}

.startup_filter_btn {
	padding: 8px 20px;
	border: 2px solid #e0e0e0;
	background: #ffffff;
	color: #666666;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 0.95em;
}

.startup_filter_btn:hover {
	border-color: #8BC34A;
	color: #8BC34A;
}

.startup_filter_btn.active {
	background: #8BC34A;
	border-color: #8BC34A;
	color: #ffffff;
}

.startup_search_bar {
	display: flex;
	gap: 10px;
}

.startup_search_input_list {
	flex: 1;
	padding: 12px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	font-size: 1em;
	outline: none;
}

.startup_search_input_list:focus {
	border-color: #8BC34A;
}

.startup_search_btn_list {
	padding: 12px 30px;
	background: #8BC34A;
	color: #ffffff;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 1em;
	transition: background 0.3s ease;
}

.startup_search_btn_list:hover {
	background: #7CB342;
}

.startup_clear_filter {
	padding: 8px 20px;
	background: #f44336;
	color: #ffffff;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 0.95em;
	transition: background 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.startup_clear_filter:hover {
	background: #d32f2f;
}

/* 排序與顯示控制 */
.startup_control_bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
}

.startup_sort_options {
	display: flex;
	gap: 15px;
	align-items: center;
}

.startup_sort_label {
	font-weight: 600;
	color: #333333;
}

.startup_sort_select {
	padding: 8px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 0.95em;
	cursor: pointer;
	outline: none;
}

.startup_sort_select:focus {
	border-color: #8BC34A;
}

/* 文章網格 */
.startup_stories_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.startup_story_card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
}

.startup_story_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.startup_story_image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top; 
	background-color: #f5f5f5;
}

.startup_story_content {
	padding: 20px;
}

.startup_story_category {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.85em;
	font-weight: 600;
	margin-bottom: 12px;
	color: #ffffff;
}

.startup_story_title {
	font-size: 1.3em;
	color: #333333;
	margin: 0 0 12px;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.startup_story_summary {
	font-size: 0.95em;
	color: #666666;
	line-height: 1.6;
	margin: 0 0 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.startup_story_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85em;
	color: #999999;
	padding-top: 15px;
	border-top: 1px solid #eeeeee;
}

.startup_story_date,
.startup_story_views {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* 空狀態 */
.startup_empty_state {
	text-align: center;
	padding: 80px 20px;
	color: #999999;
}

.startup_empty_icon {
	font-size: 5em;
	color: #cccccc;
	margin-bottom: 20px;
}

.startup_empty_title {
	font-size: 1.5em;
	color: #666666;
	margin-bottom: 10px;
}

.startup_empty_text {
	font-size: 1em;
	margin-bottom: 30px;
}

/* 分頁導航 */
.startup_pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 50px;
}

.startup_page_btn {
	padding: 10px 18px;
	border: 2px solid #e0e0e0;
	background: #ffffff;
	color: #666666;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 0.95em;
}

.startup_page_btn:hover {
	border-color: #8BC34A;
	color: #8BC34A;
}

.startup_page_btn.active {
	background: #8BC34A;
	border-color: #8BC34A;
	color: #ffffff;
}

.startup_page_btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* 響應式設計 */
@media (max-width: 768px) {
	.startup_list_title {
		font-size: 2em;
	}
	
	.startup_filter_row {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.startup_control_bar {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}
	
	.startup_pagination {
		flex-wrap: wrap;
	}
}