.top_page {
	display: grid;
	gap: 36px;
}

.top_hero {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: 32px;
	align-items: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.top_hero::before {
	content: "";
	position: absolute;
	inset: auto -10% -28% auto;
	width: clamp(220px, 28vw, 360px);
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(71, 157, 128, 0.18) 0%, rgba(71, 157, 128, 0.04) 48%, transparent 72%);
	z-index: -1;
}

.top_hero_copy p {
	max-width: 38rem;
	margin-bottom: 20px;
}

.top_hero_copy {
	display: grid;
	gap: 14px;
	align-content: center;
}

.top_hero_copy h1 {
	max-width: 10ch;
}

.top_hero_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.top_hero_actions a {
	min-width: 170px;
	justify-content: center;
}

.hero_splide .article_card,
.category_splide .article_card {
	height: 100%;
}

.hero_splide .splide__track,
.category_splide .splide__track {
	padding: 4px;
}

.hero_splide .splide__slide,
.category_splide .splide__slide {
	height: auto;
}

.hero_splide .splide__arrows,
.category_splide .splide__arrows {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 16px;
}

.hero_splide .splide__arrow,
.category_splide .splide__arrow {
	position: static;
	transform: none;
	opacity: 1;
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(219, 229, 222, 0.94);
	box-shadow: 0 16px 28px rgba(25, 48, 37, 0.12);
}

.hero_splide .splide__arrow svg,
.category_splide .splide__arrow svg {
	fill: #2b5b45;
}

.category_splide .splide__slide {
	padding-bottom: 6px;
}

.top_section {
	display: grid;
	gap: 20px;
}

.top_section .section_heading a {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
}

.top_trust {
	margin-top: -2px;
}

.top_trust_lead {
	margin: -6px 0 2px;
	max-width: 52rem;
	color: var(--site-text-subtle);
	line-height: 1.85;
}

.top_trust_points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.top_trust_points span,
.top_trust_links a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 0.9rem;
	border-radius: 999px;
	background: rgba(237, 245, 240, 0.92);
	color: #2b5b45;
	font-size: 0.78rem;
	font-weight: 700;
}

.top_trust_links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media screen and (max-width: 900px) {
	.top_hero {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.top_hero_copy h1 {
		max-width: none;
	}

	.top_trust_links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px) {
	.top_page {
		gap: 28px;
	}

	.top_hero {
		padding: 22px 18px;
	}

	.top_hero_actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.top_hero_actions a {
		width: 100%;
	}

	.hero_splide .splide__arrows,
	.category_splide .splide__arrows {
		margin-top: 12px;
	}

	.top_trust_links {
		grid-template-columns: 1fr;
	}

	.top_trust_links a {
		justify-content: center;
	}
}
