@charset "UTF-8";

/* Контент вывода списка блога */

.v-post-stream__one {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d4d4;
}

.v-post-stream__title {
  font-size: 17px;
  margin-top: 0;
}

.v-post-stream__icons {
  margin-bottom: 4px;
}

.v-post-stream__date {
  font-size: 12px;
}

.v-post-stream__author {
  font-size: 12px;
  margin-right: 16px;
  vertical-align: middle;
}

.v-post-stream__userpic {
  margin-right: 3px;
  vertical-align: -6px;
}

.v-post-stream__username:hover {
  text-decoration: none;
}

.v-post-stream__reading {
  float: right;
}

.v-post-stream__info {
  overflow: hidden;
}

.v-post-stream__comments {
  font-size: 12px;
  vertical-align: middle;
}

.v-post-stream__comments-link {
  text-decoration: none;
}

.v-post-stream__comments-text {
  text-decoration: underline;
}

.v-post-stream__comments .fa-comment-o {
  color: #e8565f;
  margin-right: 2px;
  font-size: 16px;
}

.v-post-stream__image {
  float: left;
}

.v-post-stream__image img {
  width: 150px;
}

.v-post-stream__text._image {
  margin-left: 170px;
}

.v-post-stream__info._image {
  margin-left: 170px;
}

.v-post-stream__attachment {
  margin-top: 10px;
  margin-right: -10px;
}

.v-post-stream__attachment .thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v-post-stream__attachment li {
  display: inline-block;
  margin-right: 20px;
}

@media (max-width: 640px) {
  .v-post-stream__text._image {
    margin-left: 0;
  }

  .v-post-stream__info._image {
    margin-left: 0;
  }

  .v-post-stream__image {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .v-post-stream__attachment {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .v-post-stream__reading {
    display: none;
  }

  .v-post-stream__image {
    float: none;
    text-align: center;
  }
}

/* Контент вывода контента записи блога */

.v-post__date {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  background: #e8565f;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}

.v-post__author {
  vertical-align: middle;
}

.v-post__author-link {
  text-decoration: none;
}

.v-post__author-pic {
  vertical-align: -5px;
}

.v-post__author-name {
  text-decoration: underline;
}

.v-post__info {
  margin-bottom: 22px;
  margin-top: -6px;
}

.v-post__image {
  float: left;
  margin-right: 20px;
  width: 400px;
}

.v-post__attachment {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  margin-right: -20px;
}

.v-post__attachment figure {
  margin: 0;
  margin-bottom: 20px;
  width: 50%;
  display: inline-block;
  padding-right: 20px;
  box-sizing: border-box;
}

.v-post__attachment figure p {
  font-size: 14px;
  margin-bottom: 12px;
}

.v-post__attachment img {
  width: 100%;
}

@media (max-width: 640px) {
  .v-post__title {
    font-size: 30px;
    line-height: 32px;
  }

  .v-post__image {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .v-post__attachment {
    margin: 0;
  }

  .v-post__attachment figure {
    width: 100%;
    padding: 0;
  }
}

/* Комментарии по блогу */

.v-post-comments__title {
  margin-top: 26px;
}

.v-post-comments__ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v-post-comments__ul ul {
  margin: 0 0 0 30px;
}

.v-post-comments__block {
  margin-bottom: 18px;
  padding: 10px;
}

.v-post-comments__credential {
  margin-bottom: 3px;
}

.v-post-comments__credential span,
.v-post-comments__credential a {
  vertical-align: middle;
  display: inline-block;
}

.v-post-comments__credential .staff {
  background: #ebebeb;
  padding: 3px 4px;
  color: #888;
  border-radius: 3px;
  font-size: 13px;
  margin-left: 4px;
}

.v-post-comments__credential .username {
  margin-left: 1px;
  font-size: 13px;
}

.v-post-comments__credential .date {
  font-size: 12px;
  color: #ccc;
  margin-left: 4px;
}

.v-post-comments__block .text {
  margin-bottom: 6px;
  line-height: 20px;
}

.v-post-comments__reply {
  color: #e8565f;
}

.comment-submit {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .v-post-comments__block {
    margin-bottom: 20px;
  }
}