.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: block;
}
section.wall .post {
	padding: var(--margin);
	border-bottom: var(--border);
}
section.wall .post .outer {
	position: relative;
}
section.wall .post.promo {
	background: var(--color-light) !important;
}
section.wall .post.promo.boost {
	border: 3px solid var(--color)
}
html.dark section.wall .post.boost .description {
	opacity: 1;
}
section.wall .post.promo .content {
	padding: 0;
}
section.wall .post .top {
	display: grid;
	grid-template-columns: auto 1fr;
	font-size: 12px;
	line-height: 13px;
	font-weight: 500;
}
section.wall .post .top .date {
	padding-top: 5px;
}
section.wall .post .content {
	padding: 0;
}
section.wall .post .content .text {
	font-size: 22px;
	line-height: 22px;
	margin: 8px 0;
	display: block;
}
section.wall .post .image {
	height: 100%;
	position: relative;
}
section.wall .post .image a {
	display: block;
	text-align: center;
	height: 100%;
}
section.wall .post .image img {
	object-fit: contain;
	border-radius: var(--border-radius);
	max-width: 100%;
	position: relative;
	border: var(--border);
	height: 100%;
	max-height: 300px;
}
@media all and (max-width: 720px) {
	section.wall .post .content .text {
		font-size: 18px;
		line-height: 18px;
	}
}
@media all and (max-width: 540px) {
	section.wall .post .image img {
		max-height: 250px;
	}
}