.wcf--post-paginate {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.wcf--post-paginate svg {
    width: 1em;
    height: 1em;
}

.wcf--post-paginate a {
    color: #1C1D20;
    transition: all 0.3s;
    display: inline-block;
}

.wcf--post-paginate a:hover {
    color: #E8BF96;
}

.wcf--post-paginate a:hover svg {
    fill: #E8BF96;
    transition: all 0.3s;
}

.wcf--post-paginate a .next-prev {
    gap: 10px;
    align-items: center;
    display: inline-flex;
}

.wcf--post-paginate .title {
    font-size: 18px;
    margin-bottom: 20px;
    word-break: break-word;
    transition: all 0.3s;
}

.wcf--post-paginate .post-next {
    text-align: end;
}

.layout-2.wcf--post-paginate a {  
    display: flex;
    border: 1px solid;
    height: 200px;
    width: 200px;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 767px) {
    .wcf--post-paginate {
        grid-template-columns: 1fr;
    }

    .wcf--post-paginate .post-next {
        text-align: start;
    }

}