/* FUEN fix ------------------------------------------------------------------
   Stops the Chart.js hidden resize-detector iframe (class "chartjs-hidden-iframe"),
   used by the article "Downloads" chart, from stretching into a full-screen
   invisible layer that covers the page and blocks clicks on the PDF button and
   the breadcrumb links (Home / Archives / issue).
   This is plain CSS (not LESS), loaded via Settings > Website > Appearance >
   Journal Style Sheet, so it applies even if the theme's compiled CSS is cached.
--------------------------------------------------------------------------- */
.chartjs-hidden-iframe {
    pointer-events: none !important;   /* clicks pass straight through it */
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;          /* undo any min-height: 90vh applied to it */
    position: absolute !important;
}
.downloads_chart {
    margin-top: 30px;
}
.downloads_chart .value {
    max-width: 60%;
}
.downloads_chart canvas {
    max-width: 100%;
    height: auto;
}
.fuen_about_text {
    text-align: justify;
}
.fuen_nav .pkp_navigation_primary > li > a {
    font-size: 20px !important;
}
.item.abstract {
    text-align: justify;
}
.fuen_issue_summary .description {
    text-align: justify;
}
.fuen_issue_desc {
    text-align: justify;
}