/* ===== HEADER HOME OJS ===== */
body.site .pkp_site_name {
    background: #73EC8B; /* Ganti sesuai warna pilihan */
    padding: 20px;
    text-align: center;
}

body.site .pkp_site_name a {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
}

body.site .pkp_site_name a:hover {
    color: #00B894; /* efek hover */
}

/* ===== DAFTAR JURNAL DI HOME ===== */
body.site .cmp_journal_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Card tiap jurnal */
body.site .cmp_journal_list .cmp_journal {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.site .cmp_journal_list .cmp_journal:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Cover Jurnal */
body.site .cmp_journal_list .cmp_journal .cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Judul Jurnal */
body.site .cmp_journal_list .cmp_journal h3 a {
    font-size: 18px;
    font-weight: 600;
    color: #1E90FF;
    text-decoration: none;
}

body.site .cmp_journal_list .cmp_journal h3 a:hover {
    color: #00B894;
}

/* Deskripsi singkat */
body.site .cmp_journal_list .cmp_journal p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Bungkus logo agar center */
body.site .pkp_site_name {
    display: flex;
    flex-direction: column; /* biar logo & teks tersusun ke bawah */
    align-items: center;   /* center horizontal */
    justify-content: center; /* center vertical */
    padding: 20px;
    background: #73EC8B; /* warna header */
    text-align: center;
}

/* Atur logo */
body.site .pkp_site_name .is_img img {
    max-height: 120px;
    margin-bottom: 8px; /* beri jarak dengan teks bawah */
}

/* Tambahkan subjudul di bawah logo */
body.site .pkp_site_name::after {
    content: "Journal Universitas Qamarul Huda Badaruddin Bagu";
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff; /* ganti sesuai kebutuhan */
    margin-top: 8px;
}

