/* Project Detail Page Styles */

.project-detail-hero {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-detail-hero img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.project-detail-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 6px;
	z-index: 2;
}

.project-detail-info {
	padding-top: 1rem;
}

.project-meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px;
}

.project-meta-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.project-meta-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #0a4d8c;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.project-meta-label {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.project-meta-value {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

/* Related Projects - reuse case-study-card from projects.css */
#related .case-study-card img {
	height: 180px;
}

#related .case-study-card h5 a {
	text-decoration: none;
	transition: color 0.3s ease;
}

#related .case-study-card h5 a:hover {
	color: #0a4d8c;
}

@media (max-width: 991px) {
	.project-detail-info {
		padding-top: 0;
	}
}

@media (max-width: 576px) {
	.project-meta-grid {
		grid-template-columns: 1fr;
	}
}
