.courses-hero {
	position: relative;
	display: flex;
	min-height: 100svh;
	overflow: hidden;
	padding-top: clamp(9rem, 15vh, 12rem);
	padding-bottom: clamp(2.5rem, 5vh, 4.5rem);
	background:
		radial-gradient(
			circle at 78% 35%,
			rgba(255, 255, 255, 0.08),
			transparent 30%
		),
		linear-gradient(135deg, #191919 0%, #080808 75%);
	color: var(--color-white);
}

/* .courses-hero::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: linear-gradient(
		180deg,
		transparent,
		rgba(255, 255, 255, 0.12),
		transparent
	);
	content: "";
} */

.courses-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1;
	justify-content: space-between;
	flex-direction: column;
}

.courses-hero__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.courses-hero__eyebrow,
.courses-hero__meta {
	color: rgba(255, 255, 255, 0.58);
}

.courses-hero__meta {
	font-size: var(--text-small);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.courses-hero__title {
	width: 100%;
	margin-block: clamp(4rem, 9vh, 8rem);
	color: var(--color-white);
	font-size: clamp(4.5rem, 9vw, 10.5rem);
	letter-spacing: -0.065em;
	line-height: 0.86;
}

.courses-hero__title span {
	display: block;
}

.courses-hero__title span:last-child {
	margin-left: clamp(2rem, 9vw, 11rem);
}

.courses-hero__bottom {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: end;
	gap: var(--grid-gap);
}

.courses-hero__description {
	grid-column: 1 / span 4;
	max-width: 34rem;
	color: rgba(255, 255, 255, 0.68);
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	line-height: 1.5;
}

.courses-hero__courses {
	display: grid;
	grid-column: 7 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem var(--grid-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.courses-hero__courses li {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	align-items: start;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.courses-hero__courses span {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.7rem;
	font-weight: 700;
}

.courses-hero__courses strong {
	font-size: clamp(0.9rem, 1.05vw, 1.05rem);
	line-height: 1.25;
}

@media (max-width: 959px) {
	.courses-hero::before {
		display: none;
	}

	.courses-hero__title span:last-child {
		margin-left: 0;
	}

	.courses-hero__description,
	.courses-hero__courses {
		grid-column: 1 / -1;
	}

	.courses-hero__courses {
		margin-top: 3rem;
	}
}

@media (max-width: 599px) {
	.courses-hero {
		padding-top: 8rem;
	}

	.courses-hero__meta {
		max-width: 8rem;
		text-align: right;
	}

	.courses-hero__title {
		margin-block: 4rem;
		font-size: clamp(3.8rem, 16vw, 5.8rem);
		line-height: 0.9;
	}

	.courses-hero__courses {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}