.blog-hero{
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.88),
      rgba(0,0,0,.55),
      rgba(0,0,0,.18)
    ),
    url('/assets/img/blog-hero.png');
  background-size:cover;
  background-position:center;
}

/* GRID */

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}

/* CARD */

.blog-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:32px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  box-shadow:0 14px 40px rgba(0,0,0,.06);
  transition:.25s ease;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.10);
}

/* IMAGEM */

.blog-image{
  width:100%;
  height:260px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-color:#eee;
}

/* CONTEÚDO */

.blog-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.blog-card .kicker{
  margin-bottom:14px;
}

.blog-card h2{
  font-size:32px;
  line-height:.95;
  text-transform:uppercase;
  margin:0 0 14px;
  letter-spacing:-0.5px;
}

.blog-card p{
  color:#444;
  line-height:1.55;
  margin:0;
  flex:1;
}

/* BOTÃO */

.blog-card .btn{
  margin-top:24px;
  align-self:flex-start;
}

/* DETALHE DO ARTIGO */

.article-container{
  max-width:1000px;
  margin:0 auto;
}

.article-cover{
  width:100%;
  border-radius:32px;
  overflow:hidden;
  margin-bottom:40px;
}

.article-cover img{
  width:100%;
  display:block;
}

.article-content{
  background:#fff;
  padding:50px;
  border-radius:32px;
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.article-content h1{
  font-size:58px;
  line-height:.95;
  text-transform:uppercase;
  margin-bottom:24px;
}

.article-content p{
  font-size:18px;
  line-height:1.8;
  color:#333;
}

.article-content img{
  max-width:100%;
  height:auto;
  border-radius:20px;
}

.article-content h2,
.article-content h3{
  margin-top:40px;
}

/* RESPONSIVO */

@media (max-width:1200px){

  .blog-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .blog-card h2{
    font-size:28px;
  }
}

@media (max-width:900px){

  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-image{
    height:220px;
  }

  .article-content{
    padding:30px;
  }

  .article-content h1{
    font-size:40px;
  }
}

@media (max-width:600px){

  .blog-card h2{
    font-size:24px;
  }

  .blog-image{
    height:200px;
  }

  .article-content{
    padding:24px;
  }

  .article-content h1{
    font-size:34px;
  }

  .article-content p{
    font-size:16px;
  }
}

.article-actions{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #eee;
}