.news-list {
	padding-top: 30px;
	padding-bottom: 34px;
}

.news-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	row-gap: 24px;
}

.news-list-grid > [class*="col-"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	float: none;
	width: auto;
	max-width: none;
}

.newss .news {
	position: relative;
	width: 100%;
	margin-bottom: 0;
}

.newss .news > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 124px;
	overflow: hidden;
	border: 1px solid var(--color-surface-muted);
	border-radius: 14px;
	background: var(--color-surface);
	box-shadow: 0 8px 15px rgba(30, 69, 67, .07);
	text-decoration: none;
	-webkit-transition: border-color .25s ease, box-shadow .25s ease;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.newss .news > a:hover,
.newss .news > a:focus {
	border-color: var(--color-brand-border);
	box-shadow: 0 8px 15px rgba(30, 69, 67, .18);
	outline: none;
}

.newss .news-left {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	overflow: hidden;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 180px;
	flex: 0 0 180px;
	background: var(--color-brand-surface);
}

.newss .news-left img {
	display: block;
	width: 100%;
	height: auto;
}

.newss .news-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	width: 100%;
	padding: 16px 20px 15px;
	background: var(--color-surface);
}

.newss .news-date {
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-bottom: 8px;
	padding: 4px 9px;
	border-radius: 12px;
	background: var(--color-brand-surface);
	color: var(--color-text-muted);
	font-size: 12px;
	line-height: 1.25;
}

.newss .news-title {
	margin: 0 0 12px;
	color: var(--color-text);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	-webkit-transition: color .2s ease;
	transition: color .2s ease;
}

.newss .news > a:hover .news-title,
.newss .news > a:focus .news-title {
	color: var(--color-brand-hover);
}

.news-card-more {
	margin-top: auto;
	color: var(--color-brand);
	font-size: 13px;
	font-weight: 500;
}

.news-info {
	padding-top: 30px;
	padding-bottom: 50px;
}

.news-article {
	padding: 28px;
	border: 1px solid var(--color-surface-muted);
	border-radius: 16px;
	background: var(--color-surface);
	box-shadow: 0 8px 25px rgba(30, 69, 67, .08);
}

.news-article-toolbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--color-border);
}

.news-article-date {
	padding: 6px 12px;
	border-radius: 16px;
	background: var(--color-brand-surface);
	color: var(--color-brand);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.news-back-link {
	color: var(--color-brand);
	font-size: 14px;
	text-decoration: none;
}

.news-back-link:hover,
.news-back-link:focus {
	color: var(--color-brand-hover);
	text-decoration: underline;
}

.news-article-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 32px;
}

.news-article-media {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 380px;
	flex: 0 0 380px;
	max-width: 100%;
	overflow: hidden;
	border-radius: 14px;
	background: var(--color-brand-surface);
}

.news-info img.news-image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: 14px;
}

.news-article-content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	color: var(--color-text);
	font-size: 16px;
	line-height: 1.7;
	text-align: left;
}

.news-article-content > :first-child {
	margin-top: 0;
}

.news-article-content > p:first-child {
	color: var(--color-brand);
	font-size: 18px;
	font-weight: 500;
}

.news-article-content p {
	margin-bottom: 16px;
}

.news-article-content a {
	color: var(--color-brand);
	text-decoration: underline;
	text-decoration-color: var(--color-brand-border);
	text-underline-offset: 2px;
}

.news-article-content a:hover {
	text-decoration-color: var(--color-brand-hover);
}

.news-article-content ul,
.news-article-content ol {
	margin: 18px 0 22px;
	padding: 16px 20px 16px 42px;
	border-left: 3px solid var(--color-brand);
	border-radius: 0 10px 10px 0;
	background: #f4fbfa;
}

.news-article-content li + li {
	margin-top: 7px;
}

.news-article-content img {
	max-width: 100% !important;
	height: auto !important;
	border-radius: 10px;
}

.news-info .reklama__block,
.news-info .ballon__block {
	right: 10px;
}

@media (max-width: 991px) {
	.news-list-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.news-article-layout {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
	}

	.news-article-media {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
		max-width: 520px;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.news-list {
		padding-top: 20px;
		padding-bottom: 24px;
	}

	.news-info {
		padding-top: 20px;
		padding-bottom: 30px;
	}

	.news-article {
		padding: 18px;
		border-radius: 12px;
	}

	.news-article-toolbar {
		margin-bottom: 18px;
		padding-bottom: 14px;
	}

	.news-article-content {
		font-size: 15px;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.newss .news-left {
		-ms-flex-preferred-size: 42%;
		flex-basis: 42%;
	}

	.newss .news-right {
		padding: 12px;
	}

	.newss .news-title {
		font-size: 14px;
	}

	.news-card-more {
		display: none;
	}

	.news-article-toolbar {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
	}

	.news-article-content ul,
	.news-article-content ol {
		padding: 14px 14px 14px 32px;
	}
}

/* Compact news widget */
#news-date {
	color: var(--color-text-light);
	font-size: 11px;
	line-height: 1.4em;
}
.box-content .news-view-list,
.box-content .news-view-table {
	display: table;
}
.news-view-list .news-view-row {
	display: table-row;
}
.news-view-list .news-view-cell,
.news-view-table .news-view-cell {
	display: table-cell;
	vertical-align: top;
}
.news-view-list .news-view-cell img {
	padding: 0 8px 0 0;
}
.news-view-list .news-view-cell .news-caption {
	margin-bottom: 8px;
}
.news-view-list .news-view-cell .news-caption a {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}
.news-view-list .news-view-cell .news-date,
.news-view-table .news-view-cell .news-date {
	color: var(--color-text-light);
	font-size: 11px;
	line-height: 1.4em;
}
.news-view-list .news-view-cell .news-description p {
	margin: 0;
}
.news-view-table .news-view-cell {
	width: 25%;
}
.news-view-table .news-view-cell img {
	float: left;
	padding: 0 6px;
}
.news-view-short {
	margin-bottom: 8px;
}
.news-view-short .news-date {
	color: var(--color-text-light);
	line-height: 1.2em;
}
