/* Solution Detail Page Styles */

.solution-detail-hero img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.solution-detail-info {
	padding-top: 1rem;
}

.solution-meta-list {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px 24px;
}

.solution-meta-item {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	border-bottom: 1px solid #e9ecef;
}

.solution-meta-item:last-child {
	border-bottom: none;
}

.solution-meta-label {
	font-size: 13px;
	font-weight: 600;
	color: #0a4d8c;
	margin-bottom: 4px;
}

.solution-meta-value {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
}

/* Related Solutions - reuse solution-card from solutions.css */
#related .solution-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	height: 220px;
}

#related .solution-card a {
	display: block;
	width: 100%;
	height: 100%;
}

#related .solution-card a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#related .solution-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
	padding: 30px 20px 20px;
	color: white;
	pointer-events: none;
}

#related .solution-overlay h4,
#related .solution-overlay p {
	color: white;
}

#related .solution-overlay h4 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: break-word;
}

@media (max-width: 991px) {
	.solution-detail-info {
		padding-top: 0;
	}
}
