/* =========================================================
   OJS 3.3.0.22 – Show Published Date Only
   Purpose:
   - SHOW publication date
   - HIDE updated / modified date
   - HIDE article version history
   ========================================================= */

/* --- SHOW publication date --- */
.item.published,
.published,
.article-details .published {
    display: inline-block !important;
    visibility: visible !important;
}

/* --- HIDE updated / modified date --- */
.item.modified,
.modified,
.article-details .modified {
    display: none !important;
}

/* --- HIDE article version history --- */
.item.versions,
.versions,
.article-versions,
.article-details .versions {
    display: none !important;
}

/* --- Clean spacing after metadata --- */
.article-details .item {
    margin-bottom: 0.3rem !important;
}
