.ModBlogC .blog-latest .post{
    border-bottom: 1px solid lightgray;
    padding: 1rem 0.5rem;
    display: flex;
    gap: 1rem;
}

.ModBlogC .blog-latest .post .info{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.ModBlogC .blog-latest .post {
    transition: all 300ms ease-in-out;
}

.ModBlogC .blog-latest .post:hover, .ModBlogC .blog-latest .post:focus{
    background-color: lightgray;
}