/* =====================================================================
   SITE-WIDE FONT: Times New Roman, with serif fallbacks for visitors
   whose device doesn't have Times New Roman installed.

   Using the universal selector (*) with !important guarantees every
   element -- header, nav bar, headings, article titles, buttons, etc.
   -- picks up the font, regardless of how specific the theme's own
   class selectors are. Font-size is intentionally left untouched, so
   every element keeps its own default (theme) size -- only the
   typeface changes.
   ===================================================================== */

*,
*::before,
*::after {
    font-family: "Times New Roman", Times, "Liberation Serif", Georgia, serif !important;
}

/* Hide the default "Platform & Workflow by OJS/PKP" credit box */
.pkp_brand_footer {
    display: none;
}

/* Add a row for your own replacement icons/badges in the footer */
.pkp_footer_icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.pkp_footer_icons a {
    display: inline-flex;
    align-items: center;
}
.pkp_footer_icons img {
    height: 40px;
    width: auto;
    background: #ffffff;
    padding: 4px;
    border-radius: 4px;
    transition: transform 0.15s ease;
}
.pkp_footer_icons img:hover {
    transform: translateY(-2px);
}
