* {
  margin: 0;
  padding: 0;
}




/*****
OVERWRITE DEFFAULTS
*****/
.gh-sidebar-title:first {padding-top: 0;}

.gh-sidebar-title, .gh-container-title, .gh-featured-title {
  /* padding-top: 20px; */
  font-weight: 500;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--color-mid-gray);
}

a:hover .is-title {color: var(--ghost-accent-color)}

/* removendo bordas laterais dos elementos na home */
.gh-container.has-sidebar .gh-main:after,
.gh-header.is-highlight .gh-header-left:after, .gh-header.is-highlight .gh-header-middle:after {
  display: none;
}

.gh-navigation-logo img {
  max-height: 60px;
}

/*****
BLOCO CTA
*****/
#po-plan-upgrade-cta {
  position: relative;
  z-index: 1;
  margin-top: -250px;
}

#po-plan-upgrade-cta::before {
  content: "";
  display: block;
  height: 300px;
  background: linear-gradient(transparent, var(--color-white) 85%);
  content: "";
  left: -1em;
  width: calc(100% + 2em);
}

/*****
SIDEBAR
*****/
.po-sidebar section {
  margin-bottom: 30px;
}
.po-sidebar a:hover {color: var(--ghost-accent-color)}


/*****
LISTA AUTORES HOME
*****/

.po-home-authors-list li {
  list-style: none;
  padding-bottom: 30px;
}

.po-home-authors-list li a {
  display: flex;
}

.po-home-authors-list li a > * {flex: 1}
.po-home-authors-list li a > div {flex-grow: 2;}

.po-home-authors-list a:hover {text-decoration: none;}

.po-home-authors-list img {
  max-width: 50px;
  height: 50px;
  border-radius: 3px;
  margin-right: 10px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all linear .1s;
  display: inline-block;
}

.po-home-authors-list a:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  transform: scale(1.05);
}

.po-home-authors-list p {
  padding: 5px 0 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

/*****
SIDEBAR TAGS
*****/

.po-topic-list {
  list-style: none;
}

.po-topic-item a {
  display: flex;
  padding: 3px 0;
  position: relative;
}

.po-topic-item a h3 {
  font-size: 1.3rem;
  font-weight: 500;
  order: 1;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.po-topic-item h3:after {
  content: "";
  border-top: 1px dotted var(--color-light-gray);
  height: 1px;
  flex: 1;
  margin: 0 10px;
  /* position: absolute;
  top: 10px;
  left: 0;
  width: 100%; */
}

.po-topic-item a .po-topic-count {
  border-radius: 10px;
  font-size: 1.3rem;
  order: 3;
  padding: 3px 5px;
  height: auto;
}


/*****
BLOCO COMENTARIOS 
*****/
#po-comments #ghost-comments-root {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding-top: 50px;
  margin-top: 50px;
}

#po-comments.po-comments-nonmember .gh-inner {
  border: 1px solid rgba(0, 0, 0, .1);
  margin: 50px 0;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
}

#po-comments.po-comments-nonmember p {
  margin-bottom: 20px;
  font-size: 2rem;
}

#po-comments.po-comments-nonmember .gh-button {
  color: var(--color-white);
  text-decoration: none;
}

.po-button-outline {
  background-color: white;
  border: 1px solid var(--color-mid-gray);
}

.gh-button.po-button-secondary {
  background-color: white;
  color: #000;
  transition: all .15s linear;
}

.gh-button.po-button-secondary:hover {
  background-color: var(--color-mid-gray);
  color: var(--color-black);
}

.gh-article-meta .po-comment-button {
  margin-left: auto;
}