.new-post {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

@media screen and (max-width:500px) {
    .new-post {
        flex-direction: column;
    }
}

.new-post .post-thumb {
    flex-shrink: 0;
}

.new-post .post-thumb {
    max-width: 200px;
}

@media screen and (max-width:500px) {
    .new-post .post-thumb {
        max-width: 100%;
    }
}

.new-post .post-meta {
    margin-top: 10px;
}
.new-post:hover .post-info a{
    color: var(--e-global-color-primary) !important;
}
/*  */
.archive .pagination {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.archive .pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.archive .pagination .page-numbers {
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #eee;
    border-radius: 6px;
    color: #b7b7b7;
}

.archive .pagination .page-numbers.current,
.archive .pagination .page-numbers:hover {
    background-color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    color: #fff;
}
