.cms-blog-layout-1{
	@media(min-width: $screen-xl-min){
		.cms-main-posts{
			width: 62.5%;
			flex: 0 0 62.5%;
			max-width: 62.5%;
		}
		.cms-second-posts{
			width: 37.5%;
			flex: 0 0 37.5%;
			max-width: 37.5%;
		}
	}
	.cms-second-posts{
		.cms-item-content{
			border-bottom: 1px solid $border-color;
			padding-bottom: 20px;
			margin-bottom: 23px;
			&:first-child{
				display: none!important; // hide first item
			}
			&:last-child{
				border-bottom: 0;
				padding-bottom: 0;
				margin-bottom: 0;
			}
		}
		.cms-item-content-title{
			max-height: 81px;
			overflow: hidden;
			text-overflow: ellipsis;
		}
	}
}