/* ======================
   WORK — HERO SECTION
   ====================== */
.site-content {
    padding: 0 !important;
}
/* Page background */
body.page-template-page-work {
	background-color: #ffffff;
}

.work-hero {
	padding: 80px 40px 48px;
	max-width: 100%;
	margin: 0 auto;
}

.work-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 1400px;
	margin: 0 auto;
}

/* Title: Work That Impacts */
.work-hero__title {
	font-family: "Oxygen", sans-serif;
	font-size: 78px;
	font-weight: 700;
	line-height: 1;
	color: #111111;
	margin: 0;
	padding: 0;
}

/* "Impacts" with SVG underline */
.work-hero__underline {
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.work-hero__underline::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 7px;
	background-image: url("../../assets/Impact-line.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/* Subtitle: A collection of... */
.work-hero__subtitle {
	font-family: "Oxygen", sans-serif;
	font-size: 34px;
	font-weight: 400;
	line-height: 1.3em;
	color: #404040;
	margin: 0;
	padding: 0;
}

/* Description paragraph */
.work-hero__desc {
	font-family: "Nunito", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3em;
	color: #292929;
	padding: 0;
	max-width: 75%;
}

@media (min-width: 769px) and (max-width: 1024px) {
	.work-hero__title {
		font-size: 38px;
	}

	.work-hero__subtitle {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.work-hero {
		padding: 48px 20px 32px;
	}

	.work-hero__inner {
		gap: 18px;
		text-align: center;
	}

	.work-hero__title {
		font-size: 32px;
	}

	.work-hero__subtitle {
		font-size: 22px;
	}

	.work-hero__desc {
		font-size: 16px;
		max-width: 100%;
	}
}
