.inoforest-post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
}

.inoforest-post-navigation .nav-item {
    flex: 1;
    max-width: 45%;
}

.inoforest-post-navigation .nav-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.inoforest-post-navigation .nav-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inoforest-post-navigation .nav-item a:hover {
    text-decoration: none;
}

.inoforest-post-navigation .nav-prev a {
    justify-content: flex-start;
}

.inoforest-post-navigation .nav-next a {
    justify-content: flex-end;
    text-align: right;
}

.inoforest-post-navigation .nav-icon,
.inoforest-post-navigation .nav-icon i,
.inoforest-post-navigation .nav-icon svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: color 0.3s ease;
    width: 1em;
    height: 1em;
}

.inoforest-post-navigation .nav-label {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

.inoforest-post-navigation .nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inoforest-post-navigation .nav-separator {
    width: 1px;
    height: 60px;
    background-color: #e0e0e0;
    border: none;
    margin: 0 20px;
    flex-shrink: 0;
}

.inoforest-post-navigation .nav-item:hover .nav-icon,
.inoforest-post-navigation .nav-item:hover .nav-icon i,
.inoforest-post-navigation .nav-item:hover .nav-icon svg {
    color: #007cba;
}

.inoforest-post-navigation .nav-item:hover .nav-label {
    color: #007cba;
}

.inoforest-post-navigation .nav-item:hover .nav-title {
    color: #007cba;
}

@media (max-width: 768px) {
    .inoforest-post-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .inoforest-post-navigation .nav-item {
        max-width: 100%;
    }
    
    .inoforest-post-navigation .nav-item a {
        justify-content: center;
        text-align: center;
    }
    
    .inoforest-post-navigation .nav-next a {
        text-align: center;
    }
    
    .inoforest-post-navigation .nav-separator {
        display: none;
    }
    
    .inoforest-post-navigation .nav-content {
        justify-content: center;
        text-align: center;
    }
    
    .inoforest-post-navigation .nav-title {
        -webkit-line-clamp: 1;
    }
}
