/* ==========================================================================
   Single Project
   ========================================================================== */

/* Hero
--------------------------------------------- */
.project-hero {
	background: #fff;
}

.project-hero__image-wrap {
	display: block;
	width: 100%;
	overflow: hidden;
}

.project-hero__image {
	width: 100%;
	height: 885px;
	max-height: 90vh;
	object-fit: cover;
	display: block;
}

.project-hero__meta {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 90px;
	padding: 28px 0;
}

.project-hero__title {
	font-family: "Geist", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #4c4645;
	line-height: 1.3;
	margin: 0;
	flex: 0 0 auto;
	white-space: nowrap;
}

.project-hero__detail {
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex-shrink: 0;
}

.project-hero__label {
	font-family: "Geist", sans-serif;
	font-size: 13px;
	font-weight: 300;
	color: #897d7c;
	white-space: nowrap;
}

.project-hero__value {
	font-family: "Geist", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #4c4645;
	white-space: nowrap;
}

.project-hero__location {
	font-family: "Geist", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #4c4645;
	white-space: nowrap;
	flex-shrink: 0;
	align-self: center;
}

/* Info Section
--------------------------------------------- */
.project-info {
	padding: 60px 0 70px;
	background: #fff;
}

.project-info__summary {
	font-family: "Geist", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #4c4645;
	text-align: left;
	margin: 0 0 20px 0;
	line-height: 1.4;
}

.project-info__description {
	font-family: "Geist", sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #000;
	line-height: 1.65;
	max-width: 1150px;
}

.project-info__description p {
	margin: 0 0 1.25em 0;
}

.project-info__description p:last-child {
	margin-bottom: 0;
}

/* Full-width Feature Image
--------------------------------------------- */
.project-fullwidth {
	width: 100%;
	overflow: hidden;
}

.project-fullwidth__image {
	width: 100%;
	height: 962px;
	max-height: 70vh;
	object-fit: cover;
	display: block;
	margin-bottom:10px;
}

/* Gallery Grid
--------------------------------------------- */
.project-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.project-gallery__item {
	overflow: hidden;
}

.project-gallery__image {
	width: 100%;
	height: 477px;
	object-fit: cover;
	display: block;
}

/* Project Navigation
--------------------------------------------- */
.project-nav {
	padding: 60px 0;
	background: #fff;
}

.project-nav .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.project-nav__link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
}

.project-nav__link--next {
	align-items: flex-end;
}

.project-nav__link--disabled {
	visibility: hidden;
}

.project-nav__arrow {
	width: 105px;
	height: auto;
	transition: transform 0.3s ease;
	margin-bottom:35px;
}

.project-nav__link--prev:hover .project-nav__arrow {
	transform: translateX(-8px);
}

.project-nav__link--next:hover .project-nav__arrow {
	transform: translateX(8px);
}

.project-nav__label {
	font-family: "Geist", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #4c4645;
	letter-spacing: 0.02em;
}

/* Responsive
--------------------------------------------- */
@media (max-width: 991px) {
	.project-hero__image {
		height: 60vw;
		max-height: none;
	}

	.project-hero__meta {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 1.25rem;
	}

	.project-hero__title {
		width: 100%;
		flex: none;
		white-space: normal;
		text-align: left;
	}

	.project-fullwidth__image {
		height: 50vw;
		max-height: none;
	}

	.project-gallery__image {
		height: 35vw;
	}
}

@media (max-width: 600px) {
	.project-hero__image {
		height: 70vw;
	}

	.project-hero__meta {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 8px;
		padding: 14px 0 20px;
	}

	.project-hero__title {
		font-size: 12px;
		width: auto;
		flex: 1;
		min-width: 0;
		text-align: left;
	}

	.project-hero__label {
		font-size: 11px;
	}

	.project-hero__value {
		font-size: 12px;
	}

	.project-hero__location {
		font-size: 12px;
		align-self: flex-start;
	}

	.project-info {
		padding: 40px 0 48px;
	}

	.project-info__summary {
		font-size: 14px;
	}

	.project-info__description {
		font-size: 16px;
	}

	.project-fullwidth__image {
		height: 60vw;
	}

	.project-gallery {
		grid-template-columns: 1fr;
	}

	.project-gallery__image {
		height: 70vw;
	}

	.project-nav {
		padding: 40px 0;
	}

	.project-nav__arrow {
		width: 70px;
	}

	.project-nav__label {
		font-size: 12px;
	}
}
