body {
  background: #191919;
  content: "";
}
header {
  display: none;
}
#main {
  position: unset;
  min-height: 800px;
  padding: 0 12px;
}

#contents {
  width: 100%;
  max-width: 100%;
}
.page-container {
  max-width: 1100px;
  width: 100%;
  min-height: 300px;
  position: relative;
  z-index: 2;
  background-color: var(--grey-1) !important;
  padding: 0 0 15px 0;
}
.breadcrumb {
  /* padding: 15px; */
  background-color: #2f2f33;
  margin-bottom: 0;
}
.page-header {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .page-title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-header .page-title h1 {
  font-size: 3rem;
}
.header-type-1 {
  justify-content: unset;
}
.header-type-1 h1 {
  font-size: 5rem !important;
}
.background_cover {
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 576px) {
  .background_cover {
    height: 100%;
  }
}
.background_cover img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  animation: backgroundCover 2s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}
.character-profile.background_cover {
  height: 400px;
}
@keyframes backgroundCover {
  0% {
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 0.4;
    background: linear-gradient(
      to top,
      #191919 0,
      rgba(25, 25, 25, 0.5) 100%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}
.background_cover::before {
  width: 100%;
  height: 101%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    to top,
    #191919 0,
    rgba(25, 25, 25, 0.5) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}
.post_view_desc {
  max-width: 400px;
  max-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
  color: #c1c1c1;
  margin: auto;
}
.post_view_date {
  width: 100px;
  margin: auto;
}
.post_item {
  /* max-width: 252px; */
  position: relative;
  border-color: var(--border-color-grey-1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post_item:hover {
  background: linear-gradient(
    to top,
    #070301 0,
    rgba(29, 29, 29, 0.719) 0,
    rgba(255, 255, 255, 0) 50%
  );
  background-position: -200px 70px;
  box-shadow: 0 22px 24px rgba(20, 20, 20, 0.863);
}
.post_item .badge {
  min-width: 70px;
  font-size: 0.8rem;
  text-shadow: 0 3px 4px rgba(25, 25, 25, 0.5);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.post_item .post_header_cover {
  max-width: 100%;
  overflow: hidden;
}
.post_item .post_header_cover img {
  width: 100%;
  height: 151px;
  object-fit: cover;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post_item:hover .post_header_cover img {
  transform: scale(1.1);
}
.post_comments {
  position: relative;
}
.comment_item {
  margin: 20px 0;
}
.comment_item .comment_info {
  display: flex;
  gap: 35px;
}
.comment_item .comment_info .comment_author {
  width: 100%;
  word-break: break-all;
}
.comment_info .comment_author_avatar {
  max-width: 70px;
  display: flex;
  align-items: center;
}
.comment_info .comment_author .comment_text {
  width: 100%;
  min-height: 65%;
  padding: 10px;
  background-color: var(--dark-grey-2);
  position: relative;
}
.comment_info .comment_author .comment_text::before {
  width: 0;
  height: 0;
  border-width: 20px;
  border-style: solid;
  border-color: transparent var(--dark-grey-2) transparent transparent;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
#asidebar {
  display: none !important;
}
.profile-character {
  position: relative;
}
.profile-character .profile-mark {
  position: absolute;
  left: -5px;
  bottom: -5px;
}
.profile-character .profile-mark svg {
  border-radius: 50rem;
}
