@charset "UTF-8";

/* Innovation Labs Page */
.innovation-labs {
	position: relative;
	min-height: 100vh;
	padding: 180px 0 120px;
	overflow: hidden;
}

/* Background Gradient */
.innovation-labs .bg-gradient {
	position: absolute;
	top: -812px;
	left: 0;
	width: 100%;
	height: 2492px;
	background: radial-gradient(31.69% 92.97% at 130.76% 44.48%, #DF1B2A 0%, #171717 100%);
	z-index: -1;
}

/* Section Header */
.innovation-labs .section-header {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 120px;
}

.innovation-labs .section-title {
	font-size: 64px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.innovation-labs .section-sub {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.innovation-labs .section-desc {
	font-size: 28px;
	font-weight: 400;
	color: #fff;
	line-height: 1.5;
	max-width: 855px;
}

/* Filter Area */
.innovation-labs .filter-area {
	flex-shrink: 0;
}

.innovation-labs .filter-area form {
	display: flex;
	gap: 32px;
}

/* Category Dropdown */
.filter-dropdown {
	position: relative;
	width: 284px;
}

.filter-dropdown .category-select {
	width: 100%;
	height: 51px;
	padding: 0 48px 0 16px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-size: 20px;
	font-weight: 600;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.filter-dropdown .category-select option {
	background: #171717;
	color: #fff;
}

.filter-dropdown .dropdown-arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* Search Box */
.search-box {
	position: relative;
	width: 284px;
}

.search-box input {
	width: 100%;
	height: 51px;
	padding: 0 48px 0 16px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-size: 16px;
}

.search-box input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-box .btn-search {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	padding: 0;
}

/* Board Grid */
.board-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 80px;
}

/* Board Card */
.board-card {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Card Tags */
.card-tags {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.card-tags .tag {
	display: inline-flex;
	padding: 4px 24px;
	border: 1px solid #fff;
	border-radius: 25px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
}

/* Card Thumbnail */
.card-thumb {
	width: 100%;
	height: 418px;
	border: 1px solid #696969;
	border-radius: 30px;
	overflow: hidden;
}

.card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.board-card:hover .card-thumb img {
	transform: scale(1.05);
}

/* Card Content */
.card-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 480px;
}

.card-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-desc {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	line-height: 32px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-date {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	line-height: 32px;
}

/* No Data */
.no-data {
	grid-column: 1 / -1;
	text-align: center;
	padding: 100px 0;
}

.no-data p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.6);
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.pagination .page-arrow {
	display: flex;
	width: 12px;
	height: 12px;
	justify-content: center;
	align-items: center;
}

.pagination .page-num {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	padding: 4px 8px;
}

.pagination .page-num.active {
	color: rgba(237, 28, 43, 1);
}

/* Responsive - Tablet */
@media screen and (max-width: 1400px) {
	.innovation-labs .section-title {
		font-size: 48px;
	}

	.innovation-labs .section-desc {
		font-size: 22px;
	}

	.card-thumb {
		height: 320px;
	}

	.card-title {
		font-size: 24px;
	}

	.card-desc {
		font-size: 16px;
		line-height: 28px;
	}

	.card-date {
		font-size: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.innovation-labs {
		padding: 120px 0 80px;
	}

	.innovation-labs .section-header {
		margin-bottom: 40px;
	}

	.innovation-labs .section-title {
		font-size: 36px;
	}

	.innovation-labs .section-sub {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.innovation-labs .section-desc {
		font-size: 18px;
	}

	.innovation-labs .filter-area form {
		display: flex;
		flex-direction: row;
		gap: 16px;
	}

	.filter-dropdown,
	.search-box {
		width: auto;
		max-width: 400px;
	}

	.board-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.card-tags .tag {
		font-size: 16px;
		padding: 4px 16px;
		line-height: 24px;
	}

	.card-thumb {
		height: 280px;
		border-radius: 20px;
	}
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
	.innovation-labs {
		padding: 100px 0 60px;
	}

	.innovation-labs .section-title {
		font-size: 28px;
	}

	.innovation-labs .section-desc {
		font-size: 16px;
		line-height: 1.6;
	}

	.board-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.card-tags {
		gap: 12px;
	}

	.card-tags .tag {
		font-size: 14px;
		padding: 4px 12px;
		line-height: 20px;
	}

	.card-thumb {
		height: 220px;
		border-radius: 16px;
	}

	.card-content {
		gap: 12px;
	}

	.card-title {
		font-size: 20px;
	}

	.card-desc {
		font-size: 14px;
		line-height: 24px;
	}

	.card-date {
		font-size: 16px;
	}

	.filter-dropdown .category-select {
		height: 44px;
		font-size: 16px;
	}

	.search-box input {
		height: 44px;
		font-size: 14px;
	}

	.pagination {
		gap: 8px;
	}

	.pagination .page-num {
		font-size: 12px;
	}
}

/* =====================================================
   View Page Styles
   ===================================================== */

/* View Navigation */
.innovation-view .view-nav {
	margin-bottom: 40px;
}

.innovation-view .btn-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	transition: color 0.3s;
}

.innovation-view .btn-back:hover {
	color: #fff;
}

/* View Header */
.innovation-view .view-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	margin-bottom: 120px;
}

.innovation-view .view-tag {
	display: inline-flex;
	padding: 0 26px;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 42px;
}

.innovation-view .view-title {
	font-size: 64px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}

.innovation-view .view-date {
	font-size: 20px;
	font-weight: 400;
	color: #CACACA;
	line-height: 42px;
}

/* View Content */
.innovation-view .view-content {
	display: flex;
	flex-direction: column;
	gap: 120px;
	margin-bottom: 120px;
}

.innovation-view .view-thumb {
	border-radius: 30px;
	border: 1px solid #696969;
	overflow: hidden;
}

.innovation-view .view-thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.innovation-view .view-body {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

.innovation-view .view-body img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 20px 0;
}

.innovation-view .view-body p {
	margin-bottom: 20px;
}

.innovation-view .view-body h2,
.innovation-view .view-body h3,
.innovation-view .view-body h4 {
	margin: 30px 0 15px;
}

/* View Files */
.innovation-view .view-files {
	margin-top: 40px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
}

.innovation-view .view-files h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.innovation-view .view-files ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.innovation-view .view-files li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	transition: color 0.3s;
}

.innovation-view .view-files li a:hover {
	color: #007EA0;
}

/* View Pagination (Prev/Next) */
.innovation-view .view-pagination {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.innovation-view .page-link {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	transition: background 0.3s;
}

.innovation-view .page-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.innovation-view .page-link .label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	min-width: 50px;
}

.innovation-view .page-link .title {
	font-size: 16px;
	color: #fff;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* View Actions */
.innovation-view .view-actions {
	display: flex;
	justify-content: center;
}

.innovation-view .btn-list {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 50px;
	padding: 0 40px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
}

.innovation-view .btn-list:hover {
	background: #fff;
	color: #171717;
}

/* View Responsive */
@media screen and (max-width: 1024px) {
	.innovation-view .view-header {
		gap: 24px;
		margin-bottom: 80px;
	}

	.innovation-view .view-tag {
		font-size: 18px;
		padding: 0 20px;
		line-height: 36px;
	}

	.innovation-view .view-title {
		font-size: 42px;
	}

	.innovation-view .view-date {
		font-size: 16px;
	}

	.innovation-view .view-content {
		gap: 80px;
		margin-bottom: 80px;
	}

	.innovation-view .view-body {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	.innovation-view .view-header {
		gap: 20px;
		margin-bottom: 40px;
	}

	.innovation-view .view-tag {
		font-size: 14px;
		padding: 0 16px;
		line-height: 32px;
	}

	.innovation-view .view-title {
		font-size: 28px;
		line-height: 1.3;
	}

	.innovation-view .view-date {
		font-size: 14px;
		line-height: 1.5;
	}

	.innovation-view .view-content {
		gap: 40px;
		margin-bottom: 40px;
	}

	.innovation-view .view-thumb {
		border-radius: 16px;
	}

	.innovation-view .view-body {
		font-size: 15px;
		line-height: 24px;
	}

	.innovation-view .view-files {
		padding: 20px;
	}

	.innovation-view .page-link {
		padding: 16px 20px;
		gap: 12px;
	}

	.innovation-view .page-link .label {
		font-size: 13px;
	}

	.innovation-view .page-link .title {
		font-size: 14px;
	}

	.innovation-view .btn-list {
		width: 100%;
		max-width: 200px;
	}
}
