/* ─── Work Hero ──────────────────────────────────── */
.work-hero {
	height: 784px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

.work-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 40px;
	position: relative;
	top: 51.5px;
}

.work-hero__title {
	font-size: 64px;
	font-weight: var(--fw-regular);
	color: var(--text-dark);
}

.work-hero__description {
	font-size: 40px;
	font-weight: var(--fw-regular);
	color: var(--text-dark);
	max-width: 978px;
	line-height: 1.2;
}

/* ─── Work Projects Section ─────────────────────── */
.work-projects {
	padding: var(--section-padding);
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.work-projects__filters {
	display: flex;
	gap: 50px;
	cursor: pointer;
}

.work-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.work-projects__grid .project-card {
	width: 100%;
}

.work-projects__grid .project-card__image {
	height: 366px;
}

.work-projects__more {
	display: flex;
	justify-content: center;
	margin-top: 39px;
}

/* ─── CTA Section Override ──────────────────────── */
.scroll-reveal > .cta-section {
	padding: 300px 480px;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1200px) {
	.work-hero__title {
		font-size: 48px;
	}
	.work-hero__description {
		font-size: 28px;
		max-width: 720px;
	}
	.scroll-reveal > .cta-section {
		padding: 300px var(--section-padding);
	}
}

@media (max-width: 1024px) {
	.work-hero {
		height: 600px;
	}
	.work-hero__content {
		top: 40px;
		padding: 0 var(--section-padding);
	}
	.work-hero__title {
		font-size: 42px;
	}
	.work-hero__description {
		font-size: 24px;
	}
	.work-projects {
		padding: 80px var(--section-padding);
		gap: 50px;
	}
	.work-projects__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.work-projects__grid .project-card__image {
		height: 300px;
	}
	.work-projects__filters {
		gap: 30px;
	}
	.scroll-reveal > .cta-section {
		padding: 200px var(--section-padding);
	}
}

@media (max-width: 768px) {
	.work-hero {
		height: 500px;
	}
	.work-hero__content {
		top: 30px;
		gap: 24px;
	}
	.work-hero__title {
		font-size: 36px;
	}
	.work-hero__description {
		font-size: 20px;
		max-width: 100%;
	}
	.work-projects {
		padding: 60px var(--section-padding);
		gap: 40px;
	}
	.work-projects__filters {
		gap: 20px;
		flex-wrap: wrap;
	}
	.work-projects__grid {
		grid-template-columns: 1fr;
	}
	.work-projects__grid .project-card__image {
		height: 240px;
	}
	.work-projects__more {
		margin-top: 20px;
	}
	.scroll-reveal > .cta-section {
		padding: 120px var(--section-padding);
	}
}
