body {
	--post-m: 2rem;
}
.post-content-grid > p,
.post-content-grid > .wp-block-list li {
	color: var(--primary-dark);
	font-size: var(--post-m);
	line-height: 1.5;
}

@media screen and (min-width: 1026px) {
	.post-content-grid > h2 {
		font-size: var(--h3);
	}
	.post-content-grid > h3 {
		font-size: var(--text-xl);
	}
	.post-content-grid > h4,
	.post-content-grid > h5 {
		font-size: var(--text-l);
	}
}

.post-content-grid > p > a {
	color: var(--primary);
	text-decoration: none;
	position: relative;
}

.post-content-grid > p > a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	background: var(--primary);
	left: 0;
	bottom: -8px;
	transition: 0.2s ease-out;
}

@media screen and (min-width: 1026px) {
	.post-content-grid > p > a:is(:hover, :focus-visible)::after {
		height:10px;
	}
}

