/* SEO-UP Dynamic Content - Frontend Styles */
.seoup-tab-content {
    direction: rtl;
    text-align: right;
}
.seoup-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.seoup-posts-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
    line-height: 1.6;
}
.seoup-posts-list li:last-child {
    border-bottom: none;
}
.seoup-posts-list a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, padding-right 0.2s ease;
    display: block;
}
.seoup-posts-list a:hover {
    color: #2563eb;
    padding-right: 6px;
}
.seoup-posts-list a::before {
    content: "←";
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.2s;
}
.seoup-posts-list a:hover::before {
    opacity: 1;
}
