/* =========================================
   BAPALA – Modern Clean Theme for OJS 3.3
   Versi rapih – fungsi sama
========================================= */

:root {
    --primary: #c62828;
    --primary-soft: #ffe5e5;
    --secondary: #283593;
    --text-main: #222;
    --text-muted: #666;
    --bg-page: #f5f6fa;
    --bg-card: #ffffff;
    --border-soft: #e2e4ec;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 6px;
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
    --transition: all 0.25s ease;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
}

/* GLOBAL */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: radial-gradient(circle at top left, #ffffff 0, #f0f2f7 55%, #e3e6f0 100%);
    margin: 0;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #8e0000;
}

/* PAGE WRAPPER */

.pkp_structure_page {
    max-width: 1240px;
    margin: 24px auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Matikan float bawaan OJS */

.pkp_structure_main,
.pkp_structure_sidebar {
    float: none !important;
    width: auto !important;
}

/* HEADER */

.pkp_structure_head {
    background: linear-gradient(135deg, #c62828 0%, #ad1457 40%, #283593 100%);
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.pkp_structure_head::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18) 0, transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15) 0, transparent 50%);
    opacity: 0.9;
    pointer-events: none;
}

.pkp_head_wrapper {
    position: relative;
    z-index: 1;
    padding: 14px 32px 20px;
}

/* Site name / logo */

.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.pkp_site_nav_toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}

.pkp_site_name {
    flex: 1;
    text-align: center;
}

.pkp_site_name .is_text {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 13px;
}

/* NAVIGATION */

.pkp_site_nav_menu {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 32px 10px;
}

.pkp_navigation_primary_row {
    flex: 1;
}

.pkp_navigation_primary_wrapper {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid rgba(248, 250, 252, 0.2);
    backdrop-filter: blur(8px);
}

.pkp_navigation_primary {
    list-style: none;
    margin: 0;
    padding: 0 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pkp_navigation_primary > li {
    position: relative;
}

.pkp_navigation_primary > li > a {
    position: relative;
    display: block;
    padding: 8px 16px;
    border-radius: 999px;
    color: #fefefe;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.pkp_navigation_primary > li > a:hover {
    background: rgba(248, 250, 252, 0.14);
}

/* Dropdown desktop */

.pkp_navigation_primary > li > ul {
    position: absolute;
    top: 115%;
    left: 0;
    min-width: 220px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 20;
}

.pkp_navigation_primary > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pkp_navigation_primary > li > ul > li > a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-main);
}

.pkp_navigation_primary > li > ul > li > a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

/* Search & user */

.pkp_navigation_search_wrapper .pkp_search_desktop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.6);
    color: #f9fafb;
    font-size: 12px;
}

.pkp_navigation_search_wrapper .pkp_search_desktop .fa {
    font-size: 12px;
    opacity: 0.9;
}

.pkp_navigation_search_wrapper .pkp_search_desktop:hover {
    background: rgba(248, 250, 252, 0.18);
}

.pkp_navigation_user_wrapper {
    margin-left: 12px;
}

.pkp_navigation_user {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
}

.pkp_navigation_user li a {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(248, 250, 252, 0.6);
    color: #f8fafc;
}

.pkp_navigation_user li a:hover {
    background: rgba(248, 250, 252, 0.2);
}

/* CONTENT LAYOUT: konten kiri, sidebar kanan */

.pkp_structure_content {
    display: grid;
    grid-template-columns: minmax(0, 3.2fr) minmax(260px, 1.1fr);
    grid-template-areas: "main sidebar";
    gap: 28px;
    padding: 24px 32px 28px;
    background: var(--bg-page);
    box-sizing: border-box;
}

.pkp_structure_main {
    grid-area: main;
    min-width: 0;
}

.pkp_structure_sidebar {
    grid-area: sidebar;
    min-width: 0;
    overflow: hidden;
    padding-left: 12px;       /* geser isi sidebar ke kanan */
}

/* Sidebar blocks sedikit ke kanan */
.pkp_structure_sidebar .pkp_block {
    margin-left: 4px;
}

/* HOMEPAGE BANNER */

.homepage_image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    
}

.homepage_image img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* SECTIONS */

.page_index_journal section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
}

.page_index_journal h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 6px;
}

.page_index_journal h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* About */

.homepage_about p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-align: justify;
}

/* CURRENT ISSUE */

.current_issue_title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 16px;
}

.obj_issue_toc .heading {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 16px;
}

.obj_issue_toc .heading .cover {
    flex: 0 0 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.obj_issue_toc .heading .cover img {
    display: block;
    width: 100%;
    height: auto;
}

.obj_issue_toc .published {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.obj_issue_toc .published .label {
    font-weight: 600;
    margin-right: 4px;
}

/* ARTICLE LIST */

.sections {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.cmp_article_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cmp_article_list > li {
    margin-bottom: 12px;
}

.obj_article_summary {
    border-radius: var(--radius-md);
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.obj_article_summary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    border-color: rgba(198, 40, 40, 0.4);
}

.obj_article_summary .title {
    margin: 0 0 6px;
    font-size: 0.98rem;
}

.obj_article_summary .title a {
    color: var(--text-main);
    font-weight: 600;
}

.obj_article_summary .title a:hover {
    color: var(--primary);
}

.obj_article_summary .title .subtitle {
    display: block;
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.obj_article_summary .meta {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.obj_article_summary .authors {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.obj_article_summary .consent {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.obj_article_summary .consent img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
}

.obj_article_summary .consent b {
    font-weight: 600;
    color: var(--text-main);
}

/* icon statistik */

.obj_article_summary > img {
    height: 16px;
    width: auto;
    margin-right: 4px;
    vertical-align: middle;
}

/* Galleys */

.galleys_links {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.obj_galley_link {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--primary);
    background: #fff;
    color: var(--primary);
}

.obj_galley_link:hover {
    background: var(--primary);
    color: #fff;
}

/* View All Issues */

.read_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--secondary);
    color: #fff !important;
    font-size: 0.86rem;
    font-weight: 500;
}

.read_more:hover {
    background: #1a237e;
}

/* SIDEBAR */

.pkp_block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.pkp_block .title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 4px;
}

.pkp_block .title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.pkp_block .content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pkp_block .content li {
    margin-bottom: 6px;
}

.block_developed_by a {
    font-size: 0.86rem;
}

/* Semua gambar di dalam kartu tetap di dalam */

.pkp_block img,
.obj_article_summary img,
.obj_issue_toc img,
.page_index_journal img {
    max-width: 100%;
    height: auto;
}

/* Hindari teks panjang dorong layout */

.pkp_block,
.pkp_block .content,
.pkp_block .content p,
.pkp_block .content a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FOOTER */

.pkp_structure_footer_wrapper {
    background: #0f172a;
    color: #e5e7eb;
    padding: 10px 32px 16px;
}

.pkp_structure_footer {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pkp_brand_footer img {
    max-height: 34px;
    filter: grayscale(100%) brightness(1.2);
}

/* HILANGKAN GARIS PEMBATAS BERLEBIH */

.pkp_structure_page,
.page_index_journal section,
.obj_issue_toc .heading .cover,
.obj_article_summary,
.pkp_block,
.read_more,
.pkp_navigation_primary_wrapper,
.pkp_navigation_user li a,
.pkp_navigation_search_wrapper .pkp_search_desktop,
.pkp_structure_footer_wrapper,
.pkp_structure_footer {
    border: none !important;
}

/* SKIP LINKS */

.cmp_skip_to_content {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.cmp_skip_to_content a {
    position: absolute;
    left: -9999px;
}

.cmp_skip_to_content a:focus {
    position: static;
    left: auto;
    display: inline-block;
    margin: 4px;
    padding: 6px 10px;
    background: #fff;
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.8rem;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .pkp_structure_page {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .pkp_head_wrapper {
        padding: 10px 16px 14px;
    }

    .pkp_site_nav_toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }

    .pkp_site_name_wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .pkp_site_name {
        text-align: right;
    }

    .pkp_site_name .is_text {
        max-width: 200px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    /* Menu mobile: selalu terlihat, tanpa toggle JS */

    .pkp_site_nav_menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px 10px;
        gap: 8px;
    }

    .pkp_navigation_primary_wrapper {
        border-radius: 16px;
    }

    .pkp_navigation_primary {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 2px;
    }

    .pkp_navigation_primary > li {
        width: 100%;
    }

    .pkp_navigation_primary > li > a {
        width: 100%;
        text-align: left;
        white-space: normal;
    }

    .pkp_navigation_primary > li > ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 0 2px;
        margin-top: -2px;
        background: transparent;
    }

    .pkp_navigation_primary > li > ul > li > a {
        padding: 4px 18px;
        font-size: 12px;
        color: var(--text-muted);
    }

    .pkp_navigation_user_wrapper {
        margin: 0;
    }

    .pkp_navigation_user {
        justify-content: flex-end;
    }

    /* Konten atas, sidebar bawah */

    .pkp_structure_content {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "main"
            "sidebar";
        padding: 18px 16px 22px;
    }

    .pkp_structure_sidebar {
        padding-left: 0;
    }

    .pkp_structure_sidebar .pkp_block {
        margin-left: 0;
    }

    .obj_issue_toc .heading {
        flex-direction: row;
        align-items: flex-start;
    }

    .obj_issue_toc .heading .cover {
        flex: 0 0 100px;
    }
}

@media (max-width: 640px) {
    .page_index_journal section {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .homepage_image {
        margin: 0 -4px 16px;
        border-radius: 12px;
    }

    .obj_article_summary {
        padding: 10px 11px;
    }
}
/* ===========================
   PERAPIHAN MENU DESKTOP
=========================== */
@media (min-width: 992px) {

    /* Hilangkan blok biru lebar bawaan tema */
    .pkp_site_nav_menu {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 32px 14px;
        background: transparent !important;
        border: none !important;
    }

    /* Batasi lebar dan pusatkan bar navigasi */
    .pkp_navigation_primary_row {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pkp_navigation_primary_wrapper {
        flex: 1;
        max-width: 900px;
        margin: 0 auto;
        background: rgba(15, 23, 42, 0.25);
        border-radius: 999px;
        padding: 4px 10px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    /* Menu kiri (Current, Archives, About) */
    .pkp_navigation_primary {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .pkp_navigation_primary > li > a {
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 999px;
        color: #fefefe;
        white-space: nowrap;
    }

    /* Search di ujung kanan, rapi */
    .pkp_navigation_search_wrapper {
        margin-left: auto;
        white-space: nowrap;
    }

    .pkp_navigation_search_wrapper .pkp_search_desktop {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 999px;
        border: 1px solid rgba(248, 250, 252, 0.6);
        background: transparent;
        color: #f9fafb;
    }

    /* Dropdown (About) tetap seperti sebelumnya */
    .pkp_navigation_primary > li > ul {
        top: 120%;
    }
}
/* ==== PERBAIKAN POSISI BANNER HOMEPAGE ==== */

/* Beri ruang di atas banner, pastikan tidak naik ke header */
.page_index_journal .homepage_image {
    margin-top: 16px;      /* atur jarak dari header */
    border-radius: 16px;
    overflow: hidden;
}

/* Jika tema lama memberi margin negatif, paksa hilangkan */
.homepage_image {
    margin-top: 5px !important;
}

/* Pastikan gambar tidak punya margin/padding aneh */
.homepage_image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* ===== Editorial Team – gaya modern untuk teks standar OJS3 ===== */

.editorial-team {
    max-width: 840px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: #111827;
}

/* Hapus jarak ganda dari <p> kosong / &nbsp; */
.editorial-team p strong:empty,
.editorial-team p:empty {
    display: none;
}

/* Heading level (Editor in Chief, Managing Editor, dll.) */
.editorial-team > p:first-child strong,
.editorial-team > p strong:nth-of-type(1) {
    /* fallback, kita styling semua <p><strong> yang berdiri sendiri */
}

.editorial-team > p strong {
    display: block;
    margin-top: 1.2rem;
    margin-bottom: 0.15rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #283593;
}

/* Nama (paragraf setelah heading biasanya juga <strong>) */
.editorial-team p strong + br,
.editorial-team p strong + strong {
    /* abaikan kasus aneh, OJS kadang menyisipkan <br> */
}

.editorial-team p strong + p strong,
.editorial-team p strong + p {
    /* ini tidak selalu konsisten, jadi kita styling nama via pola umum: */
}

/* Semua <p> yang berisi <strong> kedua dst dianggap "nama" */
.editorial-team p strong + p,
.editorial-team p + p strong {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* Afiliasi (paragraf setelah nama) */
.editorial-team p + p {
    margin-top: 0.1rem;
    margin-bottom: 0.15rem;
    font-size: 0.92rem;
    color: #6b7280;
}

/* Tautan Scholar & Sinta */
.editorial-team a {
    color: #c62828;
    font-weight: 500;
    text-decoration: none;
}

.editorial-team a:hover {
    color: #8e0000;
    text-decoration: underline;
}

/* Jarak antar blok orang */
.editorial-team p {
    margin: 0.1rem 0;
}

/* Sedikit spasi ekstra setelah baris link profil */
.editorial-team p a[href*="scholar.google"],
.editorial-team p a[href*="sinta.kemdiktisaintek.go.id"] {
    /* baris link profil sudah cukup rapat, kita pakai margin dari p */
}

/* Responsive: teks tetap terbaca di layar kecil */
@media (max-width: 600px) {
    .editorial-team {
        padding: 0 0.5rem;
        font-size: 0.95rem;
    }

    .editorial-team > p strong {
        font-size: 1rem;
    }
}
/* Container utama */
.ojsjb-wrap {
  max-width: 1200px;
  margin: 24px auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e6eef8;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(14, 30, 37, 0.06);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Header flex container */
.ojsjb-head {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

/* Info section */
.ojsjb-info {
  flex: 1 1 450px;
  min-width: 280px;
}

/* Title styling */
.ojsjb-title {
  margin: 0 0 16px;
  font-size: 22px;
  color: #0b67a3;
  font-weight: 700;
  line-height: 1.4;
}

/* Meta information */
.ojsjb-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #475b66;
  line-height: 1.6;
}

.ojsjb-meta div {
  margin: 0;
}

.ojsjb-meta strong {
  color: #0b2633;
  font-weight: 600;
  margin-right: 4px;
}

/* Logo grid container */
.ojsjb-logos {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
  padding: 20px;
  background: #f9fbfd;
  border-radius: 10px;
  border: 1px solid #e6eef8;
}

/* Individual logo wrapper */
.ojsjb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ojsjb-logo:hover {
  box-shadow: 0 4px 12px rgba(11, 103, 163, 0.1);
  transform: translateY(-2px);
}

/* Logo images */
.ojsjb-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%) opacity(0.9);
  transition: filter 0.3s ease;
}

.ojsjb-logo img:hover {
  filter: grayscale(0%) opacity(1);
}

/* Responsive design - Tablet */
@media (max-width: 900px) {
  .ojsjb-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Responsive design - Mobile */
@media (max-width: 768px) {
  .ojsjb-wrap {
    padding: 18px;
    margin: 16px auto;
  }
  
  .ojsjb-head {
    flex-direction: column;
    gap: 24px;
  }
  
  .ojsjb-title {
    font-size: 19px;
  }
  
  .ojsjb-meta {
    font-size: 13px;
  }
}


