
/* ------------------------------------------------------------
   OJS 3.5 — Make ISSUE-LEVEL PDF LINKS exactly like ARTICLE ones
   Based on computed CSS you provided
   ------------------------------------------------------------ */

/* Remove screen-reader subscription label from visual flow */
.page_issue .obj_galley_link.pdf.restricted .pkp_screen_reader {
    display: none !important;
}

/* Remove any icons or pseudo-elements */
.page_issue .obj_galley_link.pdf.restricted::before,
.page_issue .obj_galley_link.pdf.restricted::after {
    content: "" !important;
}

/* MATCH ARTICLE-LEVEL LINK EXACTLY */
.page_issue .obj_galley_link.pdf.restricted {
    /* Display and box model */
    display: inline-block !important;
    height: 30px !important;
    line-height: 28px !important;
    padding-left: 13.02px !important;
    padding-right: 13.02px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;

    /* Border */
    border: 1px solid rgb(0, 103, 152) !important;
    border-radius: 3px !important;

    /* Colors */
    color: rgb(0, 103, 152) !important;
    background-color: rgb(255, 255, 255) !important;

    /* Font */
    font-family: "Noto Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;
    font-size: 13.02px !important;
    font-weight: 400 !important;

    /* Interaction */
    cursor: pointer !important;
    text-decoration: none !important;

    /* Remove unwanted styling */
    opacity: 1 !important;
    filter: none !important;
    box-shadow: none !important;
}
