.title-posts {
font-size: 39px;
text-align: center;
}
.last-post {
position: relative;
margin: 40px auto;
border: 2px solid var(--blue);
border-radius: 15px;
background: var(--blue);
}
.last-post-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
background: var(--white);
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
padding: 25px;
}
.post-img {
border-radius: 10px;
border: 2px solid var(--blue);
}
.post-info {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.post-title {
margin-left: 25px;
font-size: 25px;
color: var(--white);
font-weight: 600;
text-align: left;
line-height: 2.2;
}
.post-date {
font-size: 14px;
}