/* ===== TÍTULO "ÚLTIMOS POSTS" SOMENTE DO BLOG ===== */

.title_block + .blog-posts-container{
margin-top:20px;
}

.title_block:has(+ .blog-posts-container){
display:table;
margin:0 auto 35px auto;
background:#1860A3;
color:#ffffff !important;
padding:6px 12px;
border-radius:18px;
font-weight:600;
font-size:16px;
text-align:center;
}


/* ===== CONTAINER DOS POSTS ===== */

.blog-posts-container{
width:100%;
max-width:100%;
margin-top:20px;
}


/* ===== POSTS ===== */

.blog-posts-container .owl-stage{
display:flex;
}

.blog-posts-container .owl-item{
flex:1;
}


/* ===== CARD ===== */

.blog-post-item{
background:#ffffff;
border-radius:10px;
overflow:hidden;
border:1px solid #f1f1f1;
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}


/* ===== IMAGEM ===== */

.post-image-block img{
transition:transform 0.4s ease;
}

.blog-post-item:hover .post-image-block img{
transform:scale(1.05);
}


/* ===== TÍTULO DO POST ===== */

.post-title h2{
font-size:18px;
line-height:1.4;
margin-top:10px;
}

.post-title h2 a{
color:#333333;
transition:color 0.3s ease;
text-decoration:none;
}

.post-title h2 a:hover{
color:#1860A3 !important;
}


/* ===== DATA ===== */

.post-published{
font-size:13px;
color:#888888;
margin-top:8px;
}


/* ===== TEXTO ===== */

.post-info-block{
padding:15px;
}


/* ===== BOTÕES DO CARROSSEL ===== */

.blog-posts-container .owl-nav button{
background:#ffffff !important;
border-radius:50%;
width:40px;
height:40px;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
transition:all 0.3s ease;
}

.blog-posts-container .owl-nav button:hover{
background:#1860A3 !important;
color:#ffffff !important;
}
