.posting_row {
	display: grid;
	gap: 20px;
}
.posting_item {
	padding: 20px;
	background: #F6F6F6;
}
.posting_item picture {
	height: 217px;
	margin-bottom: 20px;
}
.posting_item_meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	height: 34px;
}
.posting_item_date {
	opacity: 0.4;
	font-size: 14px;
	font-weight: 500;
}
.posting_item_title {
	height: 4lh;
	margin-bottom: 20px;
	font-size: 20px;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.posting_item > svg {
	width: 20px;
}

@media (min-width: 768px) {
	.posting_row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1300px) {
	.posting_row {
		gap: 90px;
	}
	.posting_item_title {
		font-size: 22px;
	}
}