.bmcb-post-list {
	max-width: 1120px;
	margin: 0 auto;
}

.bmcb-post-list-block {
	display: flex;
	flex-direction: row;
	column-gap: 55px;
	flex-wrap: wrap;
	row-gap: 55px;
	margin-bottom: 75px;
}

.bmcb-post-list-block .post-list-block {
	width: 33.33%;
	max-width: 336px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bmcb-post-list-block .post-list-block .post-list-link {
	display: block;
	text-decoration: none;
	margin: 0 0 27px 0;
	flex-grow: 1;
}

.bmcb-post-list-block .post-list-block .post-list-block-inner {
	padding: 30px;
	line-height: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bmcb-post-list-block .post-list-block .post-list-block-inner .post-list-logo {
	width: 42px;
	height: auto;
	margin: 0 0 53px 0;
}

.bmcb-post-list-block .post-list-block .post-list-block-inner h3 {
	margin: 0 0 52px 0;
	color: var(--wp--preset--color--bmcb-white);
	font-size: 25px;
	line-height: 32px;
	letter-spacing: -0.6px;
	flex-grow: 1;
}

.bmcb-post-list-block .post-list-block .post-list-block-inner p {
	margin: 0;
	text-transform: uppercase;
	font-size: 9px;
	font-family: var(--wp--preset--font-family--bmcb-arimo);
	font-weight: bold;
	letter-spacing: 0px;
}

.bmcb-post-list-block .post-list-block:nth-child(7n+1) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-dark-green);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list-block .post-list-block:nth-child(7n+2) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-light-green);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list-block .post-list-block:nth-child(7n+3) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-yellow);
	color: var(--wp--preset--color--black);
}

.bmcb-post-list-block .post-list-block:nth-child(7n+3) .post-list-block-inner h3 {
	color: var(--wp--preset--color--black);
}

.bmcb-post-list-block .post-list-block:nth-child(7n+4) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-red);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list-block .post-list-block:nth-child(7n+5) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-dark-red);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list-block .post-list-block:nth-child(7n+6) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-blue);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list-block .post-list-block:nth-child(7n) .post-list-block-inner {
	background: var(--wp--preset--color--bmcb-dark-blue);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list-block .post-list-block .post-list-content .post-list-desc p {
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
	font-family: var(--wp--preset--font-family--bmcb-arimo);
	margin: 0 0 4px;
}

.bmcb-post-list-block .post-list-block .post-list-content a {
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--bmcb-arimo);
	font-weight: bold;
}

.bmcb-post-list-block .post-list-block .post-list-content a i {
	color: var(--wp--preset--color--bmcb-dark-green);
}

.bmcb-post-list .bmcb-post-list-load-more {
	text-align: center;
	margin: 0 0 80px 0;
}

.bmcb-post-list .bmcb-post-list-load-more .load-more-posts {
	text-decoration: none;
	border: 2px solid var(--wp--preset--color--bmcb-dark-green);
	font-size: 16px;
	line-height: 25px;
	text-transform: uppercase;
	font-family: var(--wp--preset--font-family--bmcb-arimo);
	letter-spacing: 0.1px;
	font-weight: bold;
	padding: 12px 19px;
	display: inline-block;
	transition: all 1s ease;
}

.bmcb-post-list .bmcb-post-list-load-more .load-more-posts:after {
	content: '';
	width: 0px;
	height: 0px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid var(--wp--preset--color--bmcb-black);
	display: inline-block;
	margin: 0 0 0 10px;
	transition: all 1s ease;
}

.bmcb-post-list .bmcb-post-list-load-more .load-more-posts:hover {
	background: var(--wp--preset--color--bmcb-dark-green);
	color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list .bmcb-post-list-load-more .load-more-posts:hover:after {
	border-left-color: var(--wp--preset--color--bmcb-white);
}

.bmcb-post-list .no-posts {
	text-align: center;
	width: 100%;
}

@media screen and (max-width: 1112px) {
	.bmcb-post-list {
		padding: 0 30px;
	}

	.bmcb-post-list-block {
		column-gap: 28px;
		row-gap: 60px;
	}

	.bmcb-post-list-block .post-list-block {
		width: calc(33.33% - (56px / 3 ));
		max-width: unset;
	}
}

@media screen and (max-width: 950px) {
	.bmcb-post-list-block .post-list-block {
		width: calc(50% - 14px);
	}
}

@media screen and (max-width: 667px) {
	.bmcb-post-list-block {
		flex-direction: column;
		column-gap: 0;
		row-gap: 60px;
		align-items: center;
	}

	.bmcb-post-list-block .post-list-block {
		width: 100%;
		max-width: 331px;
	}
}