body {
  background: #F2F2F2;
  color: #1C1C1E;
}

::selection {
  background: #1F2123;
  color: #ffffff;
}

.container-goo {
  max-width: 700px;
  min-width: 250px;
  width: 100%;
  margin: 0px auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.fade {
  opacity: 0;
  transition: opacity .4s ease;
}

.title-category {
  font-size: 28px;
}

@media (max-width: 600px) {
  .title-category {
    font-size: 24px;
    text-align: center;
  }
}

.logo strong {
  text-align: end;
  font-size: 16px;
  font-weight: 600;
}


.container-card {
  text-decoration: none;
  color: #6b6b6b;
}

.container-card:not(:last-child) {
  border-bottom: 1px solid #cacaca;
}

@media (max-width: 600px) {
  .container-card {
    background-color: #ffffff;
  }
}

/* IMAGEM */

@media (max-width: 600px) {
  .thumb img {
    border-radius: 0px;
  }
}


.card-content time {
  display: flex;
  margin-top: auto;
}

@media (max-width: 600px) {
  .card-content {
    padding: 20px;
  }
}

/* KICKER */
.kicker {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.kicker a {
  color: #6b6b6b;
  text-decoration: none;
}

/* TÍTULO */
.card-content h2 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.card-content h2 a {
  display: flex;
  color: #000000;
  text-decoration: none;
}

.card-content h2 a:hover {
  text-decoration: underline;
}

.card-content time {
  display: flex;

  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #6b6b6b;
}

.article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* IMAGEM DE DESTAQUE */
.article-image {
  width: 100%;
  height: auto;
  display: block;
}

/* TÍTULO */
.article-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  color: #111;
  padding: 16px;
}

/* TEXTO */
.article-content {
  padding: 0 16px 24px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}