.panel-solutions {
	background: #ffffff;
}

.panel-solutions .container {
	
}

/* Heading */
.panel-solutions-heading {
	
	font-size: 42px;
	font-weight: 600;
	line-height: 54px;
	letter-spacing: 1px;
	color: #080808;
	text-align: center;
	margin-bottom: 40px;
}

/* Description */
.panel-solutions-description {
	text-align: center;
	margin: 0 auto 40px;
}

.panel-solutions-description p {
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 1px;
	color: #080808;
	margin: 0 0 60px 0;
}

/* Solutions Row */
.solutions-row {
	justify-content: center;
}

.solution-col {
	padding: 0 16px;
	margin-bottom: 32px;
}

/* Solution Card */
.solution-card {
	position: relative;
	width: 100%;
	transition: transform 0.3s ease;
}

.solution-card:hover {
/*	transform: translateY(-5px);*/
}

/* Image Wrapper */
.solution-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.solution-image {
	width: 100%;
	aspect-ratio:406/435;
	display: block;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

/* Gradient Overlay - Darker than Industries panel */

/*
.solution-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.64%, rgba(0, 0, 0, 0.85) 100%);
	border-radius: 8px;
	pointer-events: none;
}
*/

/* Title Wrapper */
.solution-title-wrapper {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	text-align: center;
	z-index: 10;
}

.solution-title {
	
	font-size: 24px;
	font-weight: 600;
	line-height: 33px;
	letter-spacing: 0.72px;
	color: #ffffff;
	margin: 0;
	text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.panel-solutions-heading {
		font-size: 36px;
		line-height: 46px;
		margin-bottom: 30px;
	}
	
	.panel-solutions-description {
		max-width: 700px;
		margin-bottom: 30px;
	}
	
	.panel-solutions-description p {
		font-size: 20px;
		line-height: 30px;
	}
	
	.solution-title {
		font-size: 22px;
		line-height: 30px;
	}
}

@media (max-width: 767px) {
	.panel-solutions-heading {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 24px;
	}
	
	.panel-solutions-description {
		margin-bottom: 24px;
	}
	
	.panel-solutions-description p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom:40px;
	}
	
	.solution-title {
		font-size: 20px;
		line-height: 28px;
	}
	
	.solution-title-wrapper {
		bottom: 30px;
		width: 85%;
	}
}

@media (max-width: 575px) {
	.solution-col {
		padding: 0 8px;
		margin-bottom: 20px;
	}
	
	.solution-title {
		font-size: 18px;
		line-height: 26px;
	}
}

