.penci-blog_list {
	padding: 20px;
	background: transparent;

	.penci-cat-links {
		position: static;
		display: inline-block;
		vertical-align: top;
	}

	.penci-post-item {
		margin-bottom: 35px;
		padding-bottom: 35px;
		position: relative;

		&:after {
			content: '';
			position: absolute;
			left: 0;
			bottom: 0;
			width: 100%;
			height: 1px;
			background: #dedede;
			background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), to(transparent), color-stop(50%, #dedede));

		}

		&:last-child {
			margin-bottom: 0;
			padding-bottom: 0;
			border: 0;

			&:after {
				content: none;
			}
		}
	}

	.penci-post-cat a,
	.penci_post-meta .entry-meta-item {
		font-size: 14px;
		padding-left: 0;
		padding-right: 15px;
		margin-right: 15px;
		position: relative;


		&:after{
			content : '';
			border-left: 1px solid;
			opacity: 0.35;
			position: absolute;
			right: 0;
			top: 20%;
			bottom: 20%;
		}

		&:last-child {
			padding-right: 0;
			margin-right: 0;

			&:after{
				content:  none;
			}
		}
	}

	.penci-post-cat {
		position: static;
		margin-bottom: 13px;

		a{
			font-weight: bold;
			color: $color__blue;
			text-transform: uppercase;

			&:after{
				opacity: 0.25;
			}
		}
	}

	&.penci__general-meta .penci_post-meta {
		font-size: 14px;
		color: #888888;
		margin-top: 10px;

		.entry-meta-item {
			padding-left: 0;
		}
	}

	.penci-block-title {
		font-size: 42px;
	}

	.penci__post-title {
		font-size: 24px;
		color: #111111;
	}

	&.penci-text-center {
		.penci-block-title,
		.penci-post-item {
			text-align: center;
		}
	}

	&.penci-text-right {
		.penci-block-title,
		.penci-post-item {
			text-align: right;
		}
	}
}

@media screen and (min-width: 768px) {

	.penci-blog_list {
		padding: 50px 60px;
	}
	.penci-blog_list.penci-vc-column-3,
	.penci-blog_list.penci-vc-column-2 {
		.penci-block_content__items  {
			margin-left: -10px;
			margin-right: -10px;
		}

		.penci-post-item {
			width: 50%;
			float: left;
			padding-left: 10px;
			padding-right: 10px;

			&:nth-child( 2n + 1 ) {
				clear: both;
			}

			&:nth-last-child(1),
			&:nth-last-child(2) {
				margin-bottom: 0;
				padding-bottom: 0;

				&::after  {
					content: none;
				}
			}
		}
	}

	.penci-blog_list.penci-vc-column-3 .penci-post-item:nth-child( 3n + 1 ) {
		clear: none;
	}
}

@media screen and (min-width: 960px) {
	.penci-blog_list.penci-vc-column-3 {
		.penci-block_content__items  {
			margin-left: -10px;
			margin-right: -10px;
		}

		.penci-post-item {
			width: 33.3333%;
			float: left;
			padding-left: 10px;
			padding-right: 10px;

			&:nth-child( 3n + 1 ) {
				clear: both;
			}

			&:nth-child( 2n + 1 ) {
				clear: none;
			}

			&:nth-last-child(1),
			&:nth-last-child(2),
			&:nth-last-child(3){
				margin-bottom: 0;
				padding-bottom: 0;

				&::after  {
					content: none;
				}
			}
		}
	}
}

