/**********************************************
 * Cblog.css  —  Estilo padrão para Blog H74
 **********************************************/

/* Container geral */
.blog-wrap {
  max-width: 1100px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

/* Cabeçalho da página de blog */
.blog-hero h1 {
  font-size: 2rem;
  color: #004b87;
  margin-bottom: 6px;
}

.blog-hero p {
  color: #555555;
  margin-bottom: 22px;
}

/* Grade de posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card de post (listagem) */
.post-card {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.post-card h2, .post-card h3 {
  font-size: 1.1rem;
  color: #004b87;
  margin: 0 0 8px 0;
}

.post-card p {
  color: #444444;
  margin: 0 0 12px 0;
}

.post-meta {
  font-size: 0.85rem;
  color: #777777;
  margin-bottom: 10px;
}

.link-post, .post-card a {
  color: #004b87;
  text-decoration: none;
  font-weight: 600;
}

.link-post:hover, .post-card a:hover {
  text-decoration: underline;
}

/* Página de post individual */
.post-wrap {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.post-title {
  font-size: 2rem;
  color: #004b87;
  margin-bottom: 6px;
}

.post-infos {
  color: #777777;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.post-content p {
  color: #333333;
  margin: 0 0 16px 0;
}

.post-content h2 {
  color: #004b87;
  margin: 28px 0 10px 0;
  font-size: 1.4rem;
}

.post-content ul {
  padding-left: 18px;
  margin: 0 0 16px 0;
}

.post-content li {
  margin: 6px 0;
}

/* Box de chamada no final do artigo */
.post-cta {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  background: #f5f7fa;
}

.post-cta a {
  display: inline-block;
  margin-top: 8px;
  background: #004b87;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.post-cta a:hover {
  background: #005fa3;
}

/* Responsivo */
@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
