/**/
.mix.fixed .news-item {
	border: solid 1px var(--brand);
}
.mix.fixed .news-item .news-title {
	background: rgba(0 0 0 / 0.05);
	padding: 5px 30px 5px 10px;
}
/**/
.news-item {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 10px;
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	box-shadow: var(--shadow-bottom);
	overflow: hidden;
	transition: box-shadow 0.2s linear;
	z-index: 2;
}
.news-item:hover {
	box-shadow: var(--shadow-select);
}
.news-item:after {
	content: "";
	width: 0;
	height: 5px;
	bottom: 0;
	left: 0;
	display: block;
	position: absolute;
	background: var(--brand);
	transition: width 0.2s linear;
	z-index: 1;
}
.news-item:hover:after {
	width: 100%;
}
.news-item .news-title {
	font-family: var(--font-Condensed);
	font-size: 1.2rem;
	line-height: 1.1;
	color: var(--text);
	background: var(--white);
	width: 100%;
	min-height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 5px 10px 5px 10px;
	z-index: 1;
	position: relative;
	box-shadow: var(--shadow-bottom);
	transition: color 0.2s linear, background-color 0.2s linear;
}
.news-item:hover .news-title {
	color: var(--brand);
	background-color: var(--average) !important;
}
.news-item .news-images {
	width: 100%;
	height: 230px;
	max-height: 230px;
	min-height: 230px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.news-item .news-images:after {
	color: var(--white);
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.2s linear;
	content: "";
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='currentColor' d='M598.6 342.6C611.1 330.1 611.1 309.8 598.6 297.3L470.6 169.3C458.1 156.8 437.8 156.8 425.3 169.3C412.8 181.8 412.8 202.1 425.3 214.6L498.7 288L64 288C46.3 288 32 302.3 32 320C32 337.7 46.3 352 64 352L498.7 352L425.3 425.4C412.8 437.9 412.8 458.2 425.3 470.7C437.8 483.2 458.1 483.2 470.6 470.7L598.6 342.7z'/></svg>");
}
.news-item:hover .news-images:after {
	transform: translate(-50%, -50%) scale(1);
}
.news-item img {
	transition: transform 0.2s linear;
}
.news-item:hover img {
	transform: scale(1.05);
}
.news-item .text {
	overflow: hidden;
	position: relative;
	text-indent: 20px;
	text-align: justify;
	padding: 5px 10px 10px;
	max-height: 200px;
	min-height: 200px;
	font-size: 0.95rem;
	line-height: 1.6;
}
.news-item .text:after {
	content: "";
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 75px;
	background: linear-gradient(#ffffff00 0%, #ffffff80 50%, #ffffff 100%);
	border-radius: 0 0 var(--radius) 0;
}
.news-item .news-info {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 8px 10px;
	color: var(--text);
	background: var(--average);
	font-size: 0.9rem;
	opacity: 0;
	position: absolute;
	bottom: 0;
	transform: translateY(120px);
	transition: transform 0.2s linear, color 0.2s linear, opacity 0.2s linear;
}
.news-item:hover .news-info {
	color: var(--text);
	opacity: 1;
	transform: translateY(0px);
}
.news-item .news-view {
	display: flex;
	align-items: center;
	gap: 5px;
}
.news-item .news-view:before {
	content: "";
	display: inline-block;
	width: 1.1rem;
	height: 1.1rem;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='currentColor' d='M320 96C239.2 96 174.5 132.8 127.4 176.6C80.6 220.1 49.3 272 34.4 307.7C31.1 315.6 31.1 324.4 34.4 332.3C49.3 368 80.6 420 127.4 463.4C174.5 507.1 239.2 544 320 544C400.8 544 465.5 507.2 512.6 463.4C559.4 419.9 590.7 368 605.6 332.3C608.9 324.4 608.9 315.6 605.6 307.7C590.7 272 559.4 220 512.6 176.6C465.5 132.9 400.8 96 320 96zM176 320C176 240.5 240.5 176 320 176C399.5 176 464 240.5 464 320C464 399.5 399.5 464 320 464C240.5 464 176 399.5 176 320zM320 256C320 291.3 291.3 320 256 320C244.5 320 233.7 317 224.3 311.6C223.3 322.5 224.2 333.7 227.2 344.8C240.9 396 293.6 426.4 344.8 412.7C396 399 426.4 346.3 412.7 295.1C400.5 249.4 357.2 220.3 311.6 224.3C316.9 233.6 320 244.4 320 256z'/></svg>");
}
.news-item .news-data {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 5px;
}
.news-item .news-data:before {
	content: "";
	display: inline-block;
	width: 1.1rem;
	height: 1.1rem;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='currentColor' d='M224 64C241.7 64 256 78.3 256 96L256 128L384 128L384 96C384 78.3 398.3 64 416 64C433.7 64 448 78.3 448 96L448 128L480 128C515.3 128 544 156.7 544 192L544 480C544 515.3 515.3 544 480 544L160 544C124.7 544 96 515.3 96 480L96 192C96 156.7 124.7 128 160 128L192 128L192 96C192 78.3 206.3 64 224 64zM160 304L160 336C160 344.8 167.2 352 176 352L208 352C216.8 352 224 344.8 224 336L224 304C224 295.2 216.8 288 208 288L176 288C167.2 288 160 295.2 160 304zM288 304L288 336C288 344.8 295.2 352 304 352L336 352C344.8 352 352 344.8 352 336L352 304C352 295.2 344.8 288 336 288L304 288C295.2 288 288 295.2 288 304zM432 288C423.2 288 416 295.2 416 304L416 336C416 344.8 423.2 352 432 352L464 352C472.8 352 480 344.8 480 336L480 304C480 295.2 472.8 288 464 288L432 288zM160 432L160 464C160 472.8 167.2 480 176 480L208 480C216.8 480 224 472.8 224 464L224 432C224 423.2 216.8 416 208 416L176 416C167.2 416 160 423.2 160 432zM304 416C295.2 416 288 423.2 288 432L288 464C288 472.8 295.2 480 304 480L336 480C344.8 480 352 472.8 352 464L352 432C352 423.2 344.8 416 336 416L304 416zM416 432L416 464C416 472.8 423.2 480 432 480L464 480C472.8 480 480 472.8 480 464L480 432C480 423.2 472.8 416 464 416L432 416C423.2 416 416 423.2 416 432z'/></svg>");
}
/*-*/
.news.mix-sort {
	display: flex;
	flex-flow: row wrap;
	margin: 20px 0;
}
.news.mix-sort > div {
	width: calc(100% / 3);
	display: flex;
}

/**/
/**/
.info.mix-sort {
	display: flex;
	flex-flow: row wrap;
	margin: 20px 0;
}
.info.mix-sort > div {
	width: calc(100% / 2);
	display: flex;
}
@media only screen and (max-width: 1439.98px) {
	.news.mix-sort > div {
		width: calc(100% / 2);
	}
}
@media only screen and (max-width: 1199.98px) {
	.info.mix-sort > div {
		width: calc(100% / 1);
	}
	.news.mix-sort > div {
		width: calc(100% / 1);
	}
}
@media only screen and (max-width: 991.98px) {
	.news-item {
		margin: 5px;
	}
	.info.mix-sort > div {
		width: calc(100% / 2);
	}
	.news.mix-sort > div {
		width: calc(100% / 2);
	}
}
@media only screen and (max-width: 767.98px) {
	.info.mix-sort > div {
		width: calc(100% / 1);
	}
	.news-item .text {
		min-height: unset;
	}
	.news.mix-sort > div {
		width: calc(100% / 2);
	}
}
@media only screen and (max-width: 639.98px) {
	.slider-news .swiper-slide.swiper-slide-active .news-item {
		box-shadow: var(--shadow-select);
	}
	.slider-news .swiper-slide.swiper-slide-active .news-item:after {
		width: 100%;
	}
	.slider-news .swiper-slide.swiper-slide-active .news-item .news-title {
		color: var(--brand);
		background-color: var(--average);
	}
	.slider-news .swiper-slide.swiper-slide-active .news-item .news-info {
		color: var(--text);
		opacity: 1;
		transform: translateY(0px);
	}
	.news.mix-sort > div {
		width: calc(100% / 1);
	}
}
