/* Versão 1.1.0 */

#blog-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-color: #1b1b1b;
  background-image: var(--bg-hero-blog);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
}

#blog-hero .hero-overlay {
  text-align: center;
  padding: 0 20px;
}

#blog-hero .hero-titulo {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px) {
  #blog-hero .hero-titulo {
    font-size: 28px;
  }
}

#blog-lista {
  padding: 60px 0 80px;
}

.blog-entry {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.blog-entry:last-child {
  margin-bottom: 0;
}

.blog-entry--reversed {
  flex-direction: row-reverse;
}

.blog-entry-texto {
  flex: 1;
  min-width: 0;
  padding: 20px 0;
}

.blog-entry-titulo {
  font-size: 24px;
  font-weight: 600;
  color: #1b1b1b;
  margin: 0 0 16px;
  line-height: 1.3;
}

.blog-entry-resumo {
  font-size: 17px;
  color: #3f403f;
  line-height: 1.65;
  margin: 0 0 24px;
}

.blog-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cor-fundo);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-entry-link:hover {
  gap: 12px;
}

.blog-entry-link i {
  font-size: 14px;
}

.blog-entry-imagem {
  flex: 1;
  min-width: 0;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e4e4e4;
}

@media only screen and (max-width: 768px) {
  .blog-entry,
  .blog-entry--reversed {
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 48px;
  }

  .blog-entry-imagem {
    min-height: 300px;
    width: 100%;
  }

  .blog-entry-titulo {
    font-size: 20px;
  }

  .blog-entry-resumo {
    font-size: 16px;
  }
}
