body {
  background: rgb(10, 11, 20);
  content: "";
}
.header {
  display: none;
}

/*==============================
    Páginas internas
==============================*/
.page-container {
  min-height: 300px;
  position: relative;
  z-index: 2;
  background-color: var(--indigo-gray-3);
}

/* Cabeçalho */
.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 left text, Right image
==============================*/
.header-type-1 {
  justify-content: unset;
}

.header-type-1 h1 {
  font-size: 5rem !important;
}

/*==============================
    Plug-ins
==============================*/

/* Posts. Página Interna preview */
.background_cover {
  width: 100%;
  height: 400px;
  position: absolute;
  right: 0;
}

.background_cover img {
  width: inherit;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  animation: backgroundCover 2s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes backgroundCover {
  0% {
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 0.4;
    background: linear-gradient(
      to top,
      rgba(25, 25, 25, 1) 0%,
      rgba(25, 25, 25, 0.5) 100%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

/* Manipulação degrade no header */
.background_cover::before {
  width: 100%;
  height: 101%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    to top,
    rgba(10, 11, 20, 1) 0%,
    rgba(10, 11, 20, 0.5) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Descrição da noticia */
.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;
}

/* Data */
.post_view_date {
  width: 100px;
  margin: auto;
}

/* Página todas as noticias */
.post_item {
  max-width: 258px;
  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,
    rgb(7, 3, 1) 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: 350px;
  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);
}

/* comentários de postagens */
.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;
}

/* Avatar do author do comentário */
.comment_info .comment_author_avatar {
  max-width: 70px;
  display: flex;
  align-items: center;
}

/* Comentário */
.comment_info .comment_author .comment_text {
  width: 100%;
  min-height: 65%;
  padding: 10px;
  background-color: var(--indigo-gray-4);
  position: relative;
}

/* Arrow */
.comment_info .comment_author .comment_text::before {
  width: 0;
  height: 0;
  border-width: 20px;
  border-style: solid;
  border-color: transparent var(--indigo-gray-4) transparent transparent;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
