article {
    margin: 1rem 0;
}

.last-post-link {
    font-size: 1rem;
    color: #FFF;
    text-decoration: none;
    transition: .5s all;
}

.last-post-link:hover {
        text-decoration: underline;
    }

.last-posts-wrapper {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.last-posts_thumbnail {
    overflow: hidden;
}

.last-posts_thumbnail img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.last-posts-main-title {
    flex: 1 1 50%;
    font-family: "trebuchet", sans-serif;
    font-weight: normal;
}

@media (max-width:768px) {
.last-posts-wrapper {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #84CDF3;
}

}