/* Project Single */

.project-single .project-single-hero {
	padding: var(--breadcrumb-offset-top) 0 var(--space-lg);
	background: transparent;
}

.project-single .breadcrumb {
	margin-bottom: var(--space-lg);
}

.project-single .project-single-title {
	font-family: 'Aboreto', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 50px;
	line-height: 60px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: rgba(32, 33, 38, 1);
	margin: 0;
}

.project-single .project-single-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	column-gap: var(--grid-gutter-col-desktop);
	row-gap: var(--grid-gutter-row-desktop);
	align-items: start;
}

.project-single .project-single-card .project-card {
	width: 100%;
	height: 560px;
}

.project-single .project-single-card .project-image,
.project-single .project-single-card .project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-single .project-overview-title {
	font-family: 'Aboreto', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: rgba(32, 33, 38, 1);
	margin: 0;
}

.project-single .project-overview-content {
	margin-top: 16px;
}

.project-single .project-overview-content p {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(32, 33, 38, 1);
	max-width: var(--max-width-text);
}

.project-single .project-details {
	margin-top: 24px;
}

.project-single .project-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	row-gap: 16px;
}

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

.project-single .project-meta-icon {
	width: 28px;
	height: 28px;
	display: block;
	flex-shrink: 0;
}

.project-single .project-meta-text {
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(32, 33, 38, 1);
}

.project-single .project-meta-label {
	display: inline;
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(32, 33, 38, 1);
}

.project-single .project-meta-value {
	display: inline;
	font-family: 'Reddit Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: rgba(32, 33, 38, 1);
}

@media (max-width: 1023px) {
	.project-single .project-single-grid {
		grid-template-columns: 1fr;
	}
	.project-single .project-single-card .project-card {
		height: 420px;
	}
}

@media (max-width: 767px) {
	.project-single .project-single-card .project-card {
		height: 320px;
	}
	.project-single .project-single-title {
		font-size: 32px;
		line-height: 1.2;
	}
}


