.main {
  padding-top: 100px;
}

.main .router {
  margin-bottom: 60px;
}

.main .newsDetailsContent {
  padding-top   : 40px;
  padding-bottom: 80px;
}

.main .newsDetailsContent .box_content_detail {
  background   : #fff;
  box-shadow   : 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  padding      : 30px;
  border-radius: 12px;
  width        : 80%;
  margin       : 0 auto 0;
}

.main .newsDetailsContent .blck_title {
  margin-bottom: 8px;
  font-weight  : 600;
  color        : var(--color-primary);
}

.main .newsDetailsContent article {
  text-align: justify;
}

.main .newsDetailsContent article img {
  margin : auto;
  display: block;
}

@media (max-width: 767px) {
  .main .newsDetailsContent article {
    padding-right : 15px;
    padding-bottom: 56px;
  }
}

@media (max-width: 1439px) {
  .main .newsDetailsContent .blck_title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .main .newsDetailsContent .newsDetailsContent {
    padding-top: 0;
  }

  .main .newsDetailsContent .box_content_detail {
    width     : 100%;
    padding   : 0;
    box-shadow: none;
  }

  .main .newsDetailsContent .blck_title {
    text-align: center;
  }

  .main .newsDetailsContent .newsDetailsContentSection article {
    text-align: justify;
  }
}

@media (max-width: 767px) {
  .main .newsDetailsContentSection .description {
    text-align: justify;
    padding   : 0;
  }
}

.header {
  background: var(--color-theme);
}

.--itemNewsOther {
  display        : flex;
  padding-bottom : 16px;
  border-bottom  : 1px solid var(--color-stroke);
  text-decoration: none;
}

.--itemNewsOther:last-child {
  border-bottom: none;
}

.--itemNewsOther .--imgNews {
  width       : 100px;
  height      : 80px;
  flex        : 0 0 auto;
  margin-right: 8px;
}

.--itemNewsOther .--imgNews img {
  width        : 100%;
  height       : 100%;
  border-radius: 8px;
}

.--itemNewsOther .--title {
  overflow          : hidden;
  -webkit-line-clamp: 4;
  display           : -webkit-box;
  -webkit-box-orient: vertical;
  font-weight       : 500;
  text-decoration   : none;
  color             : var(--color-black);
}

.--itemNewsOther:hover .--title {
  color: var(--color-primary);
}

.authorInfo {
  display      : flex;
  align-items  : center;
  margin-bottom: 20px;
}

.authorInfo .imgAuthor {
  width       : 44px;
  height      : 44px;
  margin-right: 10px;
}

.authorInfo .imgAuthor img {
  width        : 100%;
  height       : 100%;
  border-radius: 50%;
}

.authorInfo .--authorName {
  font-size   : 16px;
  font-weight : 600;
  position    : relative;
  margin-right: 16px;
}

.authorInfo .--authorName::after {
  content      : "";
  position     : absolute;
  border-radius: 50%;
  height       : 4px;
  width        : 4px;
  background   : rgb(108, 108, 108);
  top          : 49%;
  right        : -8px;
}

.authorInfo .--date {
  font-size   : 13px;
  margin-right: 16px;
  position    : relative;
}

.authorInfo .--date span {
  color: rgb(145, 145, 145);
}

.authorInfo .--role {
  font-weight: 550;
  font-size  : 12px;
}

@media (max-width: 767px) {
  .authorInfo {
    flex-wrap      : wrap;
    justify-content: center;
  }

  .authorInfo .left {
    margin-bottom: 10px;
  }

  .authorInfo .--authorName::after {
    display: none;
  }
}

/*# sourceMappingURL=single-post.css.map */