.pubsListBoxes {
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-direction: column;
}
.pubsListBoxesItem {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
	background: #fff;
	overflow: hidden;
	text-decoration: none;
	border-radius: 16px;
	border: 1px solid rgb(204,204,204);
}
.pubsListBoxesItem_promo {
	border: 1px solid red;
	position:relative;
}
.pubsListBoxesItem__mobile {
	flex-direction: column;
}
.pubsListBoxesItem__img {
	width: 100%;
	min-width: 300px;
	max-width: 300px;
	min-height: 200px;
	height: 100%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: cover;
	border-radius: 16px;
	border: 1px solid #ccc;
}

.pubsListBoxesItem__mobile .pubsListBoxesItem__img {
	max-width: 100%;
}

.pubsListBoxesItem__info {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 10px;
}
.pubsListBoxesItem__header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}
.pubsListBoxesItem__ava {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.pubsListBoxesItem__ava img {
	width: 100%;
	height: 100%;
	border-radius: 50px;
}
.pubsListBoxesItem__name {
	font-size: 14px;
}
.pubsListBoxesItem__user_name {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	font-size: 12px;
}
.pubsListBoxesItem__subs {
	font-size: 12px;
	color: #888
}
.pubsListBoxesItem__title {
	margin-bottom: 15px;
	word-break: break-word;
}
h2.pubsListBoxesItem__title {
	line-height: 100%;
}
.pubsListBoxesItem__title a {
	text-decoration: none;
	color: #000;
	font-size: 20px;
	font-weight: 700;
	/*line-height: 24px;*/
}
.pubsListBoxesItem__stat {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 0px;
}
.pubsListBoxesItem__mobile .pubsListBoxesItem__stat {
	justify-content: center;
	margin: 10px 0 0 0;
}
.pubsListBoxesItem__stat .publicationLikes {
	margin: 0 !important;
}
.pubsListBoxesItem__stat .box-rating__control {
	display: flex;
	align-items: center;
	/*margin-right: 15px;*/
}
.pubsListBoxesItem__stat .box-rating__control span,
.pubsListBoxesItem__stat .box-rating__control div
{
	font-size: 13px;
	font-weight: 400;
}
.pubsListBoxesItem__stat__comments {
	font-size: 16px;
	font-weight: 700;
}
.pubsListBoxesItem__stat__comments svg {
	fill: #ffa101;
}
.pubsListBoxesItem__dt {
	color: #222;
	font-size: 14px;
	padding: 0;
	text-align: right;
}
.pubsListBoxesItem__footer {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: end;
}
.pubsListBoxesItem__separator {
	flex-grow: 1;
}
/* используется и для комментариев и для дзен-ленты, поэтому сюда пришлось*/
.comment__upper {
	width: 0px;
	height: 0px;
	border-style: inset;
	border-width: 0 0px 50px 50px;
	border-color: transparent transparent red transparent;
	position: absolute;
	right: 0;
	bottom: 0;
	transform: rotate(360deg);
	cursor: default;
}
.comment__upper__rub {
	text-align: center;
	top: 18px;
	left: -20px;
	position: relative;
	width: 40px;
	height: 40px;
	margin: 0px;
	color: #fff;
	font-size: 24px;
}