/* Saved Posts ("Избранное") — bookmark toggle in the post action row.
   Sits alongside the other .post-action-icon buttons; when saved, the
   bookmark fills in with the accent colour. */
.save-post-btn {
    cursor: pointer;
    transition: color .15s ease, transform .1s ease;
}
.save-post-btn svg {
    fill: none;
    transition: fill .15s ease;
}
/* Match the specificity/!important pattern the theme uses for admin-action-icon
   so the saved (gold) state isn't overridden by generic a.mnblnk colours. */
a.mnblnk.post-action-icon.save-post-btn.is-saved,
a.mnblnk.post-action-icon.save-post-btn.is-saved:hover {
    color: #e0a400 !important;
    opacity: 1;
}
.save-post-btn.is-saved svg {
    fill: currentColor;
}
.save-post-btn:active {
    transform: scale(.88);
}
