.wall-empty {
	text-align: center;
	padding: 50px 0;
	font-size: 24px;
	line-height: 25px;
	border-bottom: var(--border);
}
.wall-empty .icon {
	font-size: 42px;
	line-height: 42px;
	margin-bottom: 7px;
}
.wall-empty .text {
	color: var(--color);
	font-weight: 600;
}
section.wall {
	display: grid;
	grid-template-columns: 1fr;
}
html.wide section.wall {
	grid-template-columns: 1fr 1fr;
}
section.wall article {
	padding: var(--margin);
	border-bottom: var(--border);
	background: var(--background);
	margin-top: -2px;
	border-top: var(--border);
}
section.wall article .content-panel ul:last-of-type li:last-of-type .tooltip {
	left: -26px;
}
section.wall article:hover {
	background: var(--background-hover) !important;
}
section.wall article .item {
	display: block;
	height: 100%;
}
section.wall article .outer {
	display: grid;
	position: relative;
	grid-template-columns: 228px 1fr;
	grid-gap: var(--margin);
	height: 100%;
}
html.wide section.wall article {
	border-right: var(--border);
}
section.wall article.promo .outer {
	grid-row: span 2;
}
section.wall article.promo {
	grid-row: span 2;
}
section.wall article.boost {
	background: var(--color-light) !important;
	grid-row: span 3;
}
html.dark section.wall article.boost .description {
	opacity: 1;
}
section.wall article.promo .outer {
	grid-template-columns: 1fr;
	grid-gap: 0;
	grid-template-rows: auto 1fr;
}
section.wall article.promo .content {
	padding: 0;
	padding-top: 8px;
}
section.wall article .top {
	display: grid;
	grid-template-columns: auto 1fr;
	font-size: 12px;
	line-height: 13px;
	font-weight: 500;
	margin-bottom: 7px;
	margin-top: 0;
}
section.wall article .top .date {
	padding-top: 5px;
}
section.wall article .content {
	padding: 0;
}
section.wall article .image {
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius);
}
section.wall article.promo .image {
	height: 222px;
}
section.wall article.promo.boost .image {
	height: 344px;
}
html.wide section.wall article.promo.boost .image {
	height: 473px;
}
section.wall article .image img {
	object-fit: cover;
	border-radius: var(--border-radius);
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-ms-transition: transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	filter: grayscale(0.5);
}
section.wall article:hover .image img {
	filter: grayscale(0);
	transform: scale(1.05);
}
section.wall article h2 {
	font-size: 22px;
	margin: unset;
	line-height: 22px;
	margin-bottom: 5px;
	margin-top: 4px;
	opacity: 0.85;
}
html.wide section.wall article h2 {
	font-size: 24px;
	line-height: 25px;
}
section.wall article.promo h2 {
	font-size: 28px;
	line-height: 27px;
}
html.wide section.wall article.promo h2 {
	font-size: 30px;
	line-height: 30px;
}
section.wall article.promo.boost h2 {
	font-size: 34px;
	line-height: 32px;
	color: var(--color);
}
section.wall article:hover h2 {
	opacity: 1;
}
section.wall article .description {
	font-size: 16px;
	line-height: 19px;
	opacity: 0.75;
}
section.wall article:hover .description {
	opacity: 1;
}
@media all and (max-width: 1600px) {
	html.wide section.wall {
		grid-template-columns: 1fr;
	}
}
@media all and (max-width: 1140px) {
	section.wall article .outer {
		grid-template-columns: 1fr;
	}
	section.wall article .image {
		height: 140px;
	}
	section.wall article.promo.boost .image {
		height: 300px;
	}
}
@media all and (max-width: 960px) {
	section.wall article .outer {
		grid-template-columns: 228px 1fr;
	}
	section.wall article .image {
		height: 100%;
	}
	section.wall article.promo.boost .image {
		height: 400px !important;
	}
}
@media all and (max-width: 720px) {
	section.wall article {
		padding: unset;
	}
	section.wall article .outer {
		grid-template-columns: 1fr;
	}
	section.wall article .top {
		display: block;
		line-height: 12px;
	}
	section.wall article .top .date {
		padding-left: 30px;
		padding-top: 0;
		opacity: 0.75;
		font-size: 12px;
		line-height: 12px;
		top: -3px;
		position: relative;
		display: block;
	}
	section.wall article .content {
		padding: var(--margin) !important;
	}
	section.wall article .image {
		height: 150px;
		border-radius: unset;
	}
	section.wall article.promo.boost .image {
		height: 250px !important;
	}
	section.wall article .image img {
		border-radius: unset;
	}
}
@media all and (max-width: 540px) {
	section.wall article {
		margin: var(--margin);
		border: var(--border);
		border-radius: var(--border-radius);
		overflow: hidden;
	}
}