/* >> Blog Style
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- */
.articleList{
	@extend %flexBox; 
	align-items: stretch; 
	padding: 0; 
	max-width: 1000px;
    margin: 0 auto;
	z-index: 3;
	gap: 1.5%;
	.articleList__item{ 
		display: block; 
		width: 100%;
		margin-bottom: 1.5rem;
		@media #{$mq-slide-spec-sm}{		
			width: 49.25%;
		}
	}
	.articleList__item__content{ 
		padding: 1.5rem 0; 	
		.articleList__item__title{
			display: block;
			font-size: 18px;
			font-weight: 500;
			line-height: 1.2;
			color: $color-title;
			margin-bottom: 1.5rem;
			transition: 0.3s;
			&:hover{color: $color-primary;}
		}
		.articleList__item__text{
			font-size: 14px;
			line-height: 1.5;
			color: $color-gray;
		}
		.btn{margin-top: 1.5rem}
	}
	
}

/*BLOG END*/
.section--blogEnd{
	max-width: 1000px;
	padding-bottom: 5rem;
	.btn--back{margin-bottom: 2.5rem;}
	.slick-arrow{
		border: 1px solid #fff;
		border-radius: 100px;
		transition: 0.3s;
		&:hover{
			background-color: $color-primary;
			border-color: $color-primary;
		}
	}
	.slick-prev{
		background-image: url("../images/easydent/chevron-left.svg");
	}
	.slick-next{
		background-image: url("../images/easydent/chevron-right.svg");
	}
	.slick-prev, .slick-next{
		width: 40px;
		min-width: 40px;
		height: 40px;
		background-size: 16px 16px;
		opacity: 1;
	}
}