.pageTitle.modern-title {
	border-bottom: none !important;
	color: #ffffff !important;
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: none;
	margin-bottom: 25px;
	padding-bottom: 12px;
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.pageTitle.modern-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #a855f7, #c084fc);
	border-radius: 3px;
}

.pinterest-grid {
	column-count: 4;
	column-gap: 20px;
	width: 100%;
	padding: 10px 0;
}

@media (max-width: 1200px) {
	.pinterest-grid {
		column-count: 3;
	}
}

@media (max-width: 900px) {
	.pinterest-grid {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.pinterest-grid {
		column-count: 1;
	}
}

.pinterest-item {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	background-color: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	break-inside: avoid;
}

.pinterest-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(168, 85, 247, 0.25);
	border-color: rgba(168, 85, 247, 0.4);
}

.pinterest-image-wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}

.pinterest-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pinterest-item:hover .pinterest-image {
	transform: scale(1.05);
}

.pinterest-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

.pinterest-item:hover .pinterest-overlay {
	opacity: 1;
}

.pinterest-title {
	color: #ffffff;
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px 0;
	transform: translateY(15px);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pinterest-desc {
	color: #cbd5e1;
	font-size: 12.5px;
	line-height: 1.4;
	margin: 0 0 14px 0;
	transform: translateY(15px);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0.05s;
}

.pinterest-zoom-btn {
	background-color: #a855f7;
	color: #ffffff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(168, 85, 247, 0.3);
	transform: translateY(15px);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            background-color 0.2s ease,
	            transform 0.2s ease;
	transition-delay: 0.1s;
	align-self: flex-start;
}

.pinterest-item:hover .pinterest-title,
.pinterest-item:hover .pinterest-desc,
.pinterest-item:hover .pinterest-zoom-btn {
	transform: translateY(0);
}

.pinterest-zoom-btn:hover {
	background-color: #9333ea;
	transform: scale(1.1);
}

.pinterest-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(9, 13, 22, 0.96);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pinterest-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-close {
	position: absolute;
	top: 25px;
	right: 30px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 100000;
}

.lightbox-close:hover {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.4);
	color: #ef4444;
	transform: rotate(90deg) scale(1.05);
}

.lightbox-content {
	position: relative;
	max-width: 85%;
	max-height: 78vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}

.lightbox-image {
	max-width: 100%;
	max-height: 78vh;
	object-fit: contain;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
	transform: scale(0.95);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pinterest-lightbox.active .lightbox-image {
	transform: scale(1);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 100000;
	user-select: none;
}

.lightbox-nav:hover {
	background: rgba(168, 85, 247, 0.2);
	border-color: rgba(168, 85, 247, 0.4);
	color: #c084fc;
	transform: translateY(-50%) scale(1.08);
}

.lightbox-nav.nav-prev {
	left: -85px;
}

.lightbox-nav.nav-next {
	right: -85px;
}

@media (max-width: 1024px) {
	.lightbox-content {
		max-width: 90%;
	}
	.lightbox-nav.nav-prev {
		left: 15px;
	}
	.lightbox-nav.nav-next {
		right: 15px;
	}
}

.lightbox-caption {
	text-align: center;
	max-width: 80%;
	color: #ffffff;
	animation: fadeInUp 0.4s ease forwards;
}

.lightbox-title {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px 0;
	color: #ffffff;
}

.lightbox-desc {
	font-size: 13.5px;
	color: #94a3b8;
	margin: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
