/* ─── Resources Hero ─────────────────────────────── */
.resources-hero {
	height: 888px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

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

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

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

/* ─── Resources Listing Section ─────────────────── */
.resources-listing {
	padding: 0 var(--section-padding) 300px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.resources-listing__filters {
	display: flex;
	gap: 50px;
}

.resources-listing__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1200px) {
	.resources-hero {
		height: 700px;
	}
	.resources-hero__title {
		font-size: 48px;
	}
	.resources-hero__description {
		font-size: 28px;
		max-width: 720px;
	}
	.resources-listing {
		padding: 0 var(--section-padding) 200px;
		gap: 40px;
	}
}

@media (max-width: 1024px) {
	.resources-hero {
		height: 600px;
	}
	.resources-hero__content {
		top: 40px;
		padding: 0 var(--section-padding);
	}
	.resources-hero__title {
		font-size: 42px;
	}
	.resources-hero__description {
		font-size: 24px;
	}
	.resources-listing {
		padding: 0 var(--section-padding) 120px;
		gap: 30px;
	}
	.resources-listing__filters {
		gap: 30px;
	}
	.resources-listing__grid {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.resources-hero {
		height: 500px;
	}
	.resources-hero__content {
		top: 30px;
		gap: 24px;
	}
	.resources-hero__title {
		font-size: 36px;
	}
	.resources-hero__description {
		font-size: 20px;
		max-width: 100%;
	}
	.resources-listing {
		padding: 0 var(--section-padding) 80px;
		gap: 24px;
	}
	.resources-listing__filters {
		gap: 16px;
		flex-wrap: wrap;
	}
	.resources-listing__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
