.blog__list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	margin: 0 -15px;
}

.blog__item {
	width: calc((100% / 3) - 30px);
	margin: 0 15px 40px;
	border-radius: 2px;
	border: 1px solid #949292;
	background-color: #fff;
	position: relative;
}

.blog__img {
	height: 260px;
	overflow: hidden;
	background-color: #ccc;
	position: relative;
}

.blog__date {
	position: absolute;
	right: -3px;
	border-radius: 2px;
	z-index: 1;
	top: 12px;
	padding: 0 23px;
	background-color: var(--second-color);
	color: var(--main-color);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.4px;
	font-family: var(--main-color);
	line-height: 24px;
}

.blog__img a {
	text-decoration: none !important;
	height: 100%;
	display: block;
}

.blog__img:hover img,
.blog__img:focus img {
	transform: scale(1.2);
}

.blog__img img {
	display: block;
	height: 100%;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
}

.blog__descr {
	padding: 15px 15px 53px;
}

.blog__title {
	font-size: 14px;
	color: var(--main-color);
	font-family: var(--title-font);
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: .35px;
	margin-bottom: 10px;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
}

.blog__title:hover,
.blog__title:focus {
	color: var(--second-color);
}

.blog__title a {
	text-decoration: none !important;
	color: inherit;
}

.blog__title a:hover,
.blog__title a:focus {
	color: inherit;
}

.blog__text {
	font-size: 14px;
	color: var(--main-color);
	font-family: var(--main-font);
	line-height: 20px;
	font-weight: 400;
	letter-spacing: .35px;
	word-break: break-word;
}

.blog__btn {
	position: absolute;
	bottom: 1px;
	padding-right: 15px;
	text-align: right;
	width: 100%;
	right: 0;
}

.blog__btn a {
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	border-bottom: 1px solid #DEDEDE;
	color: var(--main-color);
	font-family: var(--title-font);
	line-height: 1.0;
	position: relative;
}

.blog__btn a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	width: 0;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	height: 1px;
	background-color: var(--main-color);
}

.blog__btn a:hover,
.blog__btn a:focus {
	text-decoration: none;
}

.blog__btn a:hover::before,
.blog__btn a:focus::before {
	opacity: 1;
	visibility: visible;
	width: 100%;
}

.filter__top {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}

.filter__sorted {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	width: calc(35% - 15px);
}

.filter__sorted>span,
.filter__sorted>label {
	margin-right: 5px;
	margin-bottom: 0;
	font-size: 20px;
	line-height: 1;
	letter-spacing: .5px;
	font-weight: 400;
}

.filter__sorted select {
	border-radius: 0;
	outline: none;
	box-shadow: none;
	border: none;
	color: #878686;
	font-size: 20px;
	letter-spacing: .5px;
	cursor: pointer;
	display: block;
	width: 100%;
	height: auto;
	padding: 6px 12px;
	line-height: 1.42857143;
	background-color: #fff;
	background-image: none;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

@media screen and (max-width: 1199px) {
	.blog__list {
		margin: 0 -10px;
	}

	.blog__item {
		width: calc((100% / 3) - 20px);
		margin: 0 10px 30px;
	}

	.blog__img {
		height: 235px;
	}

	.filter__top {
		align-items: flex-end;
	}

	.filter__sorted>span,
	.filter__sorted select {
		font-size: 18px;
	}
}

@media screen and (max-width: 992px) {
	.blog__list {
		margin: 0;
		justify-content: space-between;
	}

	.blog__item {
		width: calc(50% - 10px);
		margin: 0 0 30px;
	}

	.blog__img {
		height: 250px;
	}

	.filter__top {
		margin-bottom: 50px;
	}

	.filter__sorted {
		width: 100%;
		align-items: center;
		justify-content: center;
	}
}

@media screen and (max-width: 767px) {
	.blog__list {
		margin: 0;
		justify-content: space-between;
	}

	.blog__item {
		width: 100%;
		margin: 0 0 30px;
	}

	.blog__img {
		height: auto;
		overflow: hidden;
	}
}