/* ALLFORWEB Article Related Grid — layout only; no content, query, or card styling. */
body.single-post .et_pb_row.afw-article-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 28px;
}

body.single-post .et_pb_row.afw-article-grid > .et_pb_column.afw-article-card {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	min-width: 0;
}

@media only screen and (max-width: 980px) {
	body.single-post .et_pb_row.afw-article-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 22px;
		row-gap: 22px;
	}
}

@media only screen and (max-width: 767px) {
	body.single-post .et_pb_row.afw-article-grid {
		grid-template-columns: minmax(0, 1fr);
		column-gap: 20px;
		row-gap: 20px;
	}

	body.single-post .et_pb_row.afw-article-grid > .et_pb_column.afw-article-card:nth-child(n + 4) {
		display: none !important;
	}
}
