div.related-articles_holder .related-articles-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

div.related-articles_holder .related-articles-header h2 {
	color: inherit;
	font-size: var(--text-size-400);
	margin: 0;
}

div.related-articles_holder .related-articles-header a {
	text-decoration: none;
	border: 1px solid var(--global-palette1);
	padding: 1rem 2rem;
	border-radius: 0;
	color: var(--global-palette3);
	font-size: var(--text-size-90);
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

div.related-articles_holder .related-articles-header a:hover {
	background-color: var(--global-palette1);
	color: #fff;
}

div.related-articles_holder .related-articles-inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

div.related-articles_holder.cols-3 .related-articles-inner {
	grid-template-columns: repeat(3, 1fr);
}
div.related-articles_holder.cols-4 .related-articles-inner {
	grid-template-columns: repeat(4, 1fr);
}

div.related-articles_holder div.related-article-item {
	background-color: var(--global-palette2);
	padding: 1.5rem;
	border-radius: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

div.related-articles_holder .related-articles-inner h3 {
	font-size: var(--text-size-100);
	font-weight: 500;
	margin: 0 0 0.5rem;
}

div.related-articles_holder .related-articles-inner p {
	color: #545d65;
	font-size: var(--text-size-90);
}

div.related-articles_holder div.related-article-item a.post-link {
	position: relative;
	text-decoration: none;
	width: 100%;
	display: block;
	text-align: left;
	font-size: var(--text-size-90);
	font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--global-palette3);
	border-top: 1px solid #d9d7d2;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
}

div.related-articles_holder div.related-article-item a.post-link::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(50%, 0);
	right: 0;
	width: 0.75rem;
	height: 0.75rem;
	background-image: url("/wp-content/themes/md-block-theme-2022/assets/icons/Midland-Skin-Icon-Arrow-Chevron.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: right 0.3s ease-in-out;
}

div.related-articles_holder div.related-article-item a.post-link:hover::after {
	right: -0.25rem;
}

@media screen and (max-width: 48rem) {
	div.related-articles_holder .related-articles-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	div.related-articles_holder .related-articles-header a {
		margin: auto;
		padding: 0.75rem 1.5rem;
	}

	div.related-articles_holder .related-articles-inner,
	div.related-articles_holder.cols-3 .related-articles-inner,
	div.related-articles_holder.cols-4 .related-articles-inner {
		grid-template-columns: repeat(1, 1fr);
	}

	div.related-articles_holder div.related-article-item {
		padding: 1rem;
	}
}
