/**
 * Single Our Work project banner styles.
 * SAVE AS: inc/our-work/assets/css/single-our-work.css
 *
 * Only the banner section for now -- more section-type styles get
 * appended here once the rest of the sections (Content+Image, Quote,
 * Gallery, etc.) are built.
 */

:root {
	--dhg-green: #2A9E61;
	--dhg-dark: #2F2F2F;
}

.container {
	width: 100%;
	max-width: 1528px;
	margin: 0 auto;
	padding: 0 20px;
}

.dhg-single-project-banner {
	position: relative;
	background-color: var(--dhg-dark);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 60px 0 0;
    min-height: 757px;
    display: flex;
    align-items: center;
}

.dhg-single-project-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
}

.dhg-single-project-banner .container {
	position: relative;
}

.dhg-single-project-banner__logos {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.dhg-single-project-banner__logo {
	height: 49px;
	width: auto;
}

.dhg-single-project-banner__logo-plus {
	color: var(--dhg-green);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.dhg-single-project-banner__partner-logo {
	height: 49px;
	width: auto;
}

.dhg-single-project-banner__title {
	font-size: 40px;
	line-height: 1.2;
	max-width: 640px;
	margin: 0 0 16px;
	color: #fff;
}

.dhg-single-project-banner__content {
	font-size: 18px;
	line-height: 1.5;
	max-width: 640px;
	color: #fff;
	margin-bottom: 40px;
}

.dhg-single-project-banner__content p:last-child {
	margin-bottom: 0;
}

.dhg-single-project-banner__facts {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.dhg-single-project-banner__fact {
    background: rgba(0, 0, 0, 0.50);
    padding: 30px 20px;
    border-radius: 5px;
}

.dhg-single-project-banner__fact-label {
	display: block;
    color: var(--dhg-green);
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--dhg-green);
}

.dhg-single-project-banner__fact-value {
	font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-weight: 900;
}

.dhg-single-project-banner__fact-value ul {
	margin: 0;
	padding-left: 16px;
}

.dhg-single-project-banner__fact-value p:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.dhg-single-project-banner__facts {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.dhg-single-project-banner__facts {
		grid-template-columns: 1fr;
	}

	.dhg-single-project-banner__title {
		font-size: 30px;
	}
}