.entry-meta .save-page-btn-wrap {
    margin-left: auto;
}

.entry-meta .save-page-btn {
    display: block;
    background: transparent;
    border: 1px solid #e3a117;
    color: #e3a117;
    font-size: 12px;
    font-family: inherit;
    padding: 3px 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.entry-meta .save-page-btn:hover {
    background: #e3a117;
    color: #fff;
}

.article-post .entry-meta {
    max-width: 100% !important;
}

/* ── Saved Pages List ── */

.saved-pages {
    list-style: none;
    margin: 0;
    padding: 0;
}

.saved-pages li {
    border-bottom: 1px solid #f0f0f0;
}

.saved-pages li:first-child {
    border-top: 1px solid #f0f0f0;
}

.saved-pages li a {
    display: block;
    padding: 12px 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
}

.saved-pages li a::before {
    content: '›';
    margin-right: 8px;
    color: #e3a117;
    font-weight: 700;
}

.saved-pages li a:hover {
    color: #e3a117;
    padding-left: 6px;
}


