.ppseo-related {
	margin-block: clamp(2.5rem, 6vw, 5rem) 1rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
	border-radius: 1.25rem;
	background: color-mix(in srgb, currentColor 4%, transparent);
}

.ppseo-related h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.ppseo-related ul {
	display: grid;
	gap: .65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ppseo-related a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 44px;
	padding: .75rem 1rem;
	border-radius: .75rem;
	background: color-mix(in srgb, currentColor 6%, transparent);
	color: inherit;
	font-weight: 650;
	text-decoration: none;
}

.ppseo-related a:hover,
.ppseo-related a:focus-visible {
	background: color-mix(in srgb, currentColor 12%, transparent);
	text-decoration: underline;
	text-underline-offset: .2em;
}

@media (min-width: 48rem) {
	.ppseo-related ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

