.colunistas-home__header{
    display: none;
}

.colunistas-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 40px;    
  margin-top: -25px;
}

/* mobile */
@media (max-width: 768px) {
  .colunistas-home__grid {
    grid-template-columns: 1fr;
  }
}

.colunistas-home img {
  width: auto;
  max-width: none;
}

.colunistas-home img.avatar {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

/* FORÇA O BLOCO */
.colunistas-home .colunista-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  border-bottom: 1px dashed #e5e5e5 !important;
}

/* FORÇA AVATAR */
.colunistas-home .colunista-item__avatar img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

/* CONTEÚDO */
.colunistas-home .colunista-item__content {
  flex: 1 !important;
}

/* NOME */
.colunistas-home .colunista-item__name {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}

.colunistas-home .colunista-item__name a {
  color: #111 !important;
  text-decoration: none !important;
}

/* TÍTULO */
.colunistas-home .colunista-item__title {
  font-size: 20px !important;
  color: #444 !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
  display: block !important;
}