/* ============ SINGLE PROJECT ============ */
.hero--project {
	height: 480px;
}
.hero--project__overlay {
	background: linear-gradient(180deg, rgba(15, 22, 32, .15) 0%, rgba(15, 22, 32, .1) 35%, rgba(15, 22, 32, .96) 100%);
}
.hero--project__copy {
	position: relative;
	margin: 0 0 56px 40px;
	max-width: 780px;
}
.hero--project__year {
	color: #fff;
	opacity: .8;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 10px;
}
.hero--project__title {
	color: #fff;
	font-size: 54px;
	font-weight: 800;
	letter-spacing: .01em;
	text-transform: uppercase;
	margin: 0 0 12px;
	line-height: .96;
}
.hero--project__category {
	color: var(--aab-text-soft-2);
	font-size: 13px;
	font-weight: 600;
}

.project-detail {
	max-width: 1180px;
	margin: 0 auto;
	padding: 50px 40px 70px;
}
.project-detail__back {
	display: inline-block;
	color: var(--aab-orange);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 28px;
}
.project-detail__body {
	max-width: 780px;
	color: var(--aab-text-soft-2);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}
.project-detail__disclaimer {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 620px;
	color: var(--aab-muted-3);
	font-size: 12.5px;
	line-height: 1.5;
	margin: 0 0 40px;
}
.project-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.project-detail__gallery-item {
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.project-detail__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 900px) {
	.hero--project {
		height: 340px;
	}
	.hero--project__title {
		font-size: 36px;
	}
	.project-detail {
		padding-left: 24px;
		padding-right: 24px;
	}
	.project-detail__gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.project-detail__gallery {
		grid-template-columns: 1fr;
	}
}
