/* Vall Sol Projects Listing Widget Styles */
.vallsol-projects-listing-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.vallsol-projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 30px;
}

.vallsol-project-item {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	transition: box-shadow 0.3s ease;
	height: 100%;
}

.vallsol-project-item:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vallsol-project-inner-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.vallsol-project-image-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3; 
}

.vallsol-project-image-wrapper a {
	display: block;
	width: 100%;
	height: 100%;
}

.vallsol-project-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.vallsol-project-inner-wrapper:hover .vallsol-project-image {
	transform: scale(1.05);
}

.vallsol-project-content {
	display: flex;
	flex-direction: column;
	padding: 40px 35px;
	flex-grow: 1;
}

.vallsol-project-meta-top {
	margin-bottom: 20px;
}

.vallsol-project-meta-tag {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #bc9975; /* Gold/brown color */
	font-weight: 600;
}

.vallsol-project-title {
	font-family: 'Playfair Display', serif; /* Elegant serif */
	font-size: 24px;
	line-height: 1.3;
	color: #1a1a1a;
	margin: 0 0 20px 0;
	font-weight: 700;
	transition: color 0.3s ease;
}

.vallsol-project-inner-wrapper:hover .vallsol-project-title {
	color: #bc9975;
}

.vallsol-project-excerpt {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin-bottom: 30px;
	flex-grow: 1;
}

.vallsol-project-cta {
	display: flex;
	align-items: center;
}

.vallsol-cta-link {
	display: inline-flex;
	align-items: center;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	color: #bc9975;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.vallsol-cta-link .vallsol-cta-arrow {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.vallsol-cta-link:hover .vallsol-cta-arrow {
	transform: translateX(5px);
}

/* Bottom CTA Block */
.vallsol-projects-bottom-cta {
	margin-top: 60px;
	background-color: #171615;
	padding: 80px 40px;
	text-align: center;
}

.vallsol-projects-cta-inner {
	max-width: 700px;
	margin: 0 auto;
}

.vallsol-projects-cta-title {
	color: #ffffff;
	font-size: 28px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 20px;
	font-family: 'Inter', sans-serif;
}

.vallsol-projects-cta-desc {
	color: #aaaaaa;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 40px;
	font-family: 'Inter', sans-serif;
}

.vallsol-projects-cta-btn {
	display: inline-block;
	color: #ffffff;
	border: 1px solid #444444;
	background: transparent;
	padding: 15px 35px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.3s ease;
}

.vallsol-projects-cta-btn:hover {
	background-color: #ffffff;
	color: #171615;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.vallsol-projects-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.vallsol-projects-bottom-cta {
		padding: 60px 30px;
	}
}

@media (max-width: 767px) {
	.vallsol-project-content {
		padding: 30px 25px;
	}
	
	.vallsol-projects-cta-title {
		font-size: 24px;
	}
}
