.network-page {
	min-height: 65vh;
	background: var(--thh-cream-light);
}

.network-hero {
	padding: clamp(4.5rem, 11vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
	background:
		radial-gradient(circle at 82% 18%, rgba(185, 137, 59, 0.2), transparent 28rem),
		linear-gradient(145deg, var(--thh-paper), var(--thh-cream));
}

.network-hero__inner {
	max-width: 58rem;
}

.network-kicker {
	margin-bottom: 0.75rem;
	color: var(--thh-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.network-hero h1 {
	max-width: 16ch;
	margin-bottom: 1.25rem;
	font-size: clamp(3rem, 9vw, 6.5rem);
	overflow-wrap: anywhere;
}

.network-hero__intro {
	max-width: 46rem;
	margin-bottom: 0;
	color: var(--thh-ink-soft);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.network-section {
	padding: clamp(3rem, 8vw, 6rem) 0;
}

.network-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
	gap: 1.5rem;
}

.network-card {
	display: flex;
	min-width: 0;
	min-height: 18rem;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-paper);
	box-shadow: var(--thh-shadow);
}

.network-card h2 {
	font-size: clamp(1.75rem, 4vw, 2.6rem);
	overflow-wrap: anywhere;
}

.network-card p {
	color: var(--thh-ink-soft);
}

.network-card a {
	display: inline-flex;
	padding: 0.7rem 1rem;
	margin-top: auto;
	border-radius: 999px;
	background: var(--thh-red);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.network-card a:hover {
	background: var(--thh-red-dark);
	color: #fff;
}

@media (max-width: 600px) {
	.network-hero h1 {
		font-size: clamp(2.6rem, 14vw, 4rem);
	}

	.network-card {
		min-height: 15rem;
	}
}
