.induris-post-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.previous-post a,
.next-post a {
    color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.4s;
}

.previous-post a:hover,
.next-post a:hover {
    color: var(--e-global-color-primary);
}

.previous-post,
.next-post {
    display: flex;
    align-items: center;
    gap: 10px;
}

.previous-post .post-thumbnail img,
.next-post .post-thumbnail img {
    border-radius: 15px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .induris-post-navigation {
        flex-direction: column;
    }

    .induris-post-navigation .next-post {
        justify-content: flex-end;
    }
}