/*
Theme Name: Politriz Theme
Theme URI: https://exemplo.com
Author: Sua Equipe
Author URI: https://exemplo.com
Description: Tema WP com header/footer idênticos (CSS do site principal em assets/css/header-footer.css)
Version: 1.0.2
License: GPL-2.0-or-later
Text Domain: politriz
*/
/* === Grid de posts === */
.posts-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}
@media (max-width: 970px){
  .posts-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 767px){
  .posts-grid{ grid-template-columns:1fr; }
}

/* Card */
.post-card{}
.post-card-thumb{ display:block; }
.post-thumb{
    width:100%; height:auto; display:block;
  border-radius: 28px;
  border-top-left-radius: 0;
    
}
.post-thumb.placeholder{
  width:100%; height:220px; background:#f1f1f1; border-radius:6px;
}

.post-card-title{
  font-size:1.2rem;
  margin:10px 0 6px 0;
  line-height:1.4;
    font-weight: 500;
    color: #023F86;
}
.post-card-title a{ text-decoration:none; color:inherit; }

.post-card-meta{
  font-size:.95rem;
  opacity:.85;
}
.post-card-meta .post-card-cat{ text-decoration:none; }
.post-title{
    font-size: 38px;
  line-height:44px;
    color: #023F86;
    font-weight: 500;
}
.wp-post-image {
    border-radius: 40px;
    border-top-left-radius: 0;
}
.post-content{
    background-color: #E7F6FF;
    border-radius: 40px;
    border-top-left-radius: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 50px;
}
.post-content h2, .post-content h3, .post-content h4, .post-content h5{
    margin-bottom: 2rem;
    font-weight: 500;
    color: #023F86;
}
.post-content P{
    font-weight: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.post-content UL, .post-content OL{
    margin: 0;
    padding: 0 0 20px 15px;
}







