
/* Remove the lock icon for issue-level PDFs */
.page_issue .obj_galley_link.restricted:before,
.page_issue .obj_galley_link.pdf.restricted:before {
    content: none !important;
}

/* Make issue PDF icons look exactly like article PDF icons */
.page_issue .obj_galley_link.pdf.restricted {
    opacity: 1 !important;          /* remove faded look */
    filter: none !important;        /* remove dimming */
    color: inherit !important;      /* ensure same text/link color */
}

/* Optional: mimic the PDF icon used for article galleys */
.page_issue .obj_galley_link.pdf.restricted:before {
    content: "\f1c1" !important;    /* Font Awesome PDF icon (same as articles) */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 0.35em;
}
