/* =======================================================
   TEMA CSS OJS 3 - ALKAFFAH: JURNAL NILAI-NILAI KEISLAMAN
   Penerbit: MUI Provinsi Sumatera Utara
   ======================================================= */

/* =======================================================
   0. VARIABEL WARNA (COLOR PALETTE)
   * Karena gambar terlampir tidak terlihat oleh sistem, saya membuat
     sistem variabel. Jika warnanya kurang pas, Anda HANYA PERLU 
     mengganti kode warna (HEX) di blok :root ini saja.
   * Default: Tema Islami Elegan (Hijau Zamrud & Emas)
   ======================================================= */
:root {
    --alk-primary: #187a5d;      /* Hijau Zamrud (Dominan) #187a5d */
    --alk-dark: #0f4c3a;         /* Hijau Gelap (Header/Footer/Menu) #0f4c3a */
    --alk-darker: #082b20;       /* Hijau Paling Gelap (Copyright Footer) #082b20 */
    --alk-accent: #c5a059;       /* Emas / Gold (Garis aksen, tombol, hover) */
    --alk-text-main: #1f2937;    /* Warna Teks Utama */
    --alk-text-muted: #475569;   /* Warna Teks Sekunder (Abu-abu) */
    --alk-bg-light: #f8fafc;     /* Background Terang / Abu-abu muda */
    --alk-border: #e2e8f0;       /* Warna Garis Border */
}

/* =======================================================
   1. PENGATURAN HEADER & LOGO
   ======================================================= */
.pkp_site_name { padding-top: 0 !important; padding-bottom: 0 !important; }
.pkp_site_name > a { padding-top: 0; padding-bottom: 0; }
.pkp_site_name .is_img { display: inline-block; margin: 0; padding: 0; }
.pkp_site_name .is_img img { max-height: 300px !important; margin: 0; }
.pkp_head_wrapper, .has_site_logo .pkp_head_wrapper { position: relative; padding-top: 10px; background: transparent; }
.pkp_site_name_wrapper { padding-left: 0; padding-right: 0; }

/* =======================================================
   2. STICKY MENU ATAS & EFEK HOVER
   ======================================================= */
.pkp_navigation_primary_wrapper {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.pkp_navigation_primary_row {
    background: var(--alk-primary);
    padding-left: 2.143rem;
    padding-right: 2.143rem;
}
#navigationPrimary > li > a {
    padding-bottom: 6px;
    border-bottom-width: 4px;
    transition: all 0.3s ease !important;
}
@media (min-width: 992px) {
    #navigationPrimary a { color: #fff; }
}
#navigationPrimary > li > a:hover {
    background-color: var(--alk-dark);
    color: #ffffff !important;
    border-bottom-color: #ffffff;
    border-radius: 4px 4px 0 0;
}

/* =======================================================
   3. MENU PENGGUNA (USER NAV) & PENCARIAN
   ======================================================= */
.pkp_navigation_user_wrapper { top: 0; right: 0; padding-right: 0px; }
.pkp_navigation_user_wrapper .pkp_navigation_user { margin-right: 15px; padding-right: 0; width: auto; margin-top: 3px; }
.pkp_navigation_user > li > a { color: #fff; }
.pkp_nav_list ul a { display: block; padding-left: .357rem; border-left: .357rem solid transparent; color: var(--alk-primary); }
.pkp_navigation_search_wrapper a { padding-bottom: 6px; border-bottom-width: 4px; color: #fff; transition: all 0.3s ease; }
.pkp_navigation_search_wrapper a:hover { color: var(--alk-bg-light); }
.pkp_head_wrapper .pkp_search .search_controls .search_prompt {
    padding-bottom: 10px; border-bottom: none; font-size: 13px; color: rgba(255, 255, 255, 0.54); font-weight: 700; text-transform: uppercase;
}

/* =======================================================
   4. TAMPILAN HALAMAN & DAFTAR ARTIKEL
   ======================================================= */
body { font-family: 'Montserrat', sans-serif; }
a { color: var(--alk-dark); transition: color 0.2s ease; }
a:hover { color: var(--alk-primary); text-decoration: none; }
.pkp_structure_page { margin-top: 0px !important; margin-bottom: 0 !important; padding-bottom: 0 !important; }
.pkp_structure_content { padding-top: 0rem; }
.pkp_block { padding: 20px; }
.pkp_page_index .current_issue h2 { display: inline-block; padding-bottom: 0.5em; border-bottom: 3px solid var(--alk-primary); text-transform: uppercase; font-weight: 700; color: var(--alk-dark); }
.pkp_page_index .current_issue .read_more { display: inline-block; position: relative; padding-right: 2.143rem; font-size: .93rem; font-weight: 700; line-height: 2.143rem; color: var(--alk-dark); text-decoration: none; margin-bottom: 1.43rem; transition: color 0.3s ease; }
.pkp_page_index .current_issue .read_more:hover { color: var(--alk-primary); }

.cmp_article_list > li {
    margin-bottom: 1.5rem;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--alk-border);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cmp_article_list > li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =======================================================
   5. QUICK MENU SIDEBAR
   ======================================================= */
.custom-quick-menu { background-color: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); margin-bottom: 25px; }
.quick-menu-header { background-color: var(--alk-dark); color: #ffffff; padding: 14px 18px; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; border-bottom: 4px solid var(--alk-accent); letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.quick-menu-list { display: flex; flex-direction: column; }
.quick-menu-item { display: flex; align-items: center; padding: 12px 18px; color: var(--alk-text-main); text-decoration: none; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid var(--alk-bg-light); transition: all 0.3s ease-in-out; border-left: 4px solid transparent; }
.quick-menu-item:last-child { border-bottom: none; }
.quick-menu-item .qm-icon { color: var(--alk-accent); margin-right: 12px; font-size: 0.8rem; transition: transform 0.3s ease; }
.quick-menu-item:hover { background-color: var(--alk-bg-light); color: var(--alk-dark); border-left: 4px solid var(--alk-dark); }
.quick-menu-item:hover .qm-icon { transform: translateX(5px); color: var(--alk-dark); }

/* =======================================================
   6. CUSTOM FOOTER FULL WIDTH
   ======================================================= */   
.pkp_brand_footer { display: none !important; }
.pkp_structure_footer { padding: 0 !important; margin-left: -20px !important; margin-right: -20px !important; }
.custom-footer-wrapper {
    background-color: var(--alk-dark);
    color: #ffffff;
    margin: 0;
    padding-top: 40px;
    width: 100%;
    box-sizing: border-box;
    border-top: 5px solid var(--alk-accent);
}
.custom-footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 40px; gap: 30px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h4 { color: var(--alk-accent); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; border-bottom: 2px solid var(--alk-accent); padding-bottom: 10px; margin-bottom: 15px; margin-top: 0; }
.footer-col p, .footer-col ul { color: var(--alk-border); font-size: 0.9rem; line-height: 1.6; margin: 0; padding: 0; }
.footer-col ul { list-style-type: none; }
.footer-col ul li { margin-bottom: 8px; transition: transform 0.2s ease; }
.footer-col ul li:hover { transform: translateX(5px); }
.footer-col a { color: var(--alk-border); text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: #ffffff; text-decoration: none; }

.footer-copyright {
    background-color: var(--alk-darker); 
    color: #94a3b8;
    text-align: center;
    padding: 15px 20px;
    margin-top: 30px;
    font-size: 0.85rem;
}

/* =======================================================
   7. HALAMAN DETAIL ARTIKEL (ABSTRAK, PENULIS, PDF)
   ======================================================= */
.obj_article_details .authors { background-color: var(--alk-bg-light); padding: 20px 25px; border-radius: 8px; border-left: 5px solid var(--alk-accent); margin-bottom: 30px; box-shadow: 0 2px 4px rgba(0,0,0,0.03); }
.obj_article_details .authors .name { font-weight: 700; color: var(--alk-dark); font-size: 1.15rem; margin-bottom: 5px; }
.obj_article_details .authors .affiliation { font-style: italic; color: var(--alk-text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.obj_article_details .authors .orcid { font-size: 0.85rem; }

.obj_article_details .item.galleys .obj_galley_link {
    background-color: var(--alk-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.obj_article_details .item.galleys .obj_galley_link:before { content: "\1F4D6"; margin-right: 8px; font-size: 1.1rem; }
.obj_article_details .item.galleys .obj_galley_link:hover {
    background-color: var(--alk-dark) !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
    transform: translateY(-3px);
    text-decoration: none !important;
}

.obj_article_details .item.abstract { line-height: 1.8; color: var(--alk-text-main); text-align: justify; font-size: 1.05rem; margin-bottom: 30px; }
.obj_article_details .item.abstract h2 { color: var(--alk-dark); border-bottom: 2px solid var(--alk-border); padding-bottom: 10px; margin-bottom: 20px; font-weight: 700; font-size: 1.3rem; }

.obj_article_details .item.doi, .obj_article_details .item.keywords, .obj_article_details .item.published { background-color: #ffffff; border: 1px solid var(--alk-border); padding: 15px; border-radius: 6px; margin-bottom: 15px; }
.obj_article_details .item .label { font-weight: 700; color: var(--alk-dark); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 5px; display: block; }

/* =======================================================
   8. INPUT FORM & KOTAK PENCARIAN
   ======================================================= */
input[type="text"], input[type="search"], input[type="password"], textarea { border: 1px solid var(--alk-border) !important; border-radius: 6px !important; padding: 10px 15px !important; transition: all 0.3s ease !important; }
input[type="text"]:focus, input[type="search"]:focus, textarea:focus { border-color: var(--alk-primary) !important; box-shadow: 0 0 0 3px rgba(24, 122, 93, 0.2) !important; outline: none !important; }

/* =======================================================
   9. CUSTOM SIDEBAR BLOCKS (WA, TEMPLATES, TOOLS, DLL)
   ======================================================= */
.custom-sidebar-block { background-color: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); margin-bottom: 25px; text-align: center; font-family: 'Segoe UI', Roboto, Arial, sans-serif; }
.custom-sidebar-header { background-color: var(--alk-dark); color: #ffffff; padding: 12px 15px; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; border-bottom: 3px solid var(--alk-accent); text-align: left; letter-spacing: 0.5px; }
.custom-sidebar-content { padding: 15px; }
.custom-sidebar-content img { max-width: 100%; height: auto; margin-bottom: 12px; transition: transform 0.3s ease, filter 0.3s ease; }
.custom-sidebar-content img:last-child { margin-bottom: 0; }
.custom-sidebar-content a:hover img { transform: scale(1.05); filter: brightness(1.1); }
.wa-button { padding: 0; }
.wa-button img { border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); margin-bottom: 0; }

/* =======================================================
   10. DESAIN HALAMAN STATIS (PAGES / ETIKA PUBLIKASI)
   ======================================================= */
.custom-static-content { font-family: 'Montserrat', sans-serif; color: var(--alk-text-main); line-height: 1.8; text-align: justify; }
.custom-static-content h3 { color: var(--alk-dark); font-size: 1.3rem; font-weight: 700; border-bottom: 2px solid var(--alk-accent); padding-bottom: 8px; margin-top: 35px; margin-bottom: 15px; text-transform: uppercase; }
.custom-callout-box { background-color: var(--alk-bg-light); border-left: 5px solid var(--alk-accent); padding: 20px; border-radius: 0 8px 8px 0; margin: 20px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.custom-static-content ul { margin-top: 10px; padding-left: 20px; }
.custom-static-content ul li { margin-bottom: 10px; }

/* =======================================================
   11. KARTU PROFIL EDITORIAL TEAM & REVIEWERS
   ======================================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; margin-bottom: 40px; }
.team-card { background: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; padding: 25px 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border-top: 4px solid var(--alk-accent); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.team-name { font-size: 1.15rem; font-weight: 700; color: var(--alk-dark); margin-bottom: 5px; }
.team-role { font-size: 0.85rem; font-weight: 700; color: var(--alk-primary); text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.5px; }
.team-affiliation { font-size: 0.9rem; color: var(--alk-text-muted); margin-bottom: 20px; line-height: 1.5; }
.team-links { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }
.team-links a { display: inline-block; background: var(--alk-bg-light); color: var(--alk-dark); padding: 5px 12px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.2s ease; }
.team-links a:hover { background: var(--alk-primary); color: #ffffff; }

/* =======================================================
   12. HALAMAN FOCUS & SCOPE (TOPIC GRID & NOTICE)
   ======================================================= */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-top: 20px; margin-bottom: 35px; }
.topic-item { background-color: var(--alk-bg-light); border: 1px solid var(--alk-border); padding: 12px 15px; border-radius: 6px; color: var(--alk-dark); font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; transition: all 0.3s ease; }
.topic-item:hover { background-color: var(--alk-primary); color: #ffffff; border-color: var(--alk-primary); transform: translateX(5px); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.topic-item::before { content: "\2713"; margin-right: 12px; color: var(--alk-accent); font-weight: bold; font-size: 1.1rem; }
.topic-item:hover::before { color: #ffffff; }

.notice-box { background-color: #fff1f2; border-left: 5px solid #e11d48; padding: 20px 25px; border-radius: 0 8px 8px 0; margin: 30px 0; color: #881337; box-shadow: 0 2px 5px rgba(225, 29, 72, 0.05); }
.notice-box h4 { color: #e11d48; margin-top: 0; margin-bottom: 10px; font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }

/* =======================================================
   13. HALAMAN INDEXING & ABSTRACTING (SHOWCASE)
   ======================================================= */
.indexer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 25px; margin-bottom: 40px; }
.indexer-card { background: #ffffff; border: 1px solid var(--alk-border); border-radius: 10px; padding: 30px 20px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.01); display: flex; flex-direction: column; justify-content: space-between; align-items: center; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.indexer-card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); border-color: var(--alk-primary); }
.indexer-logo-wrapper { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; width: 100%; }
.indexer-logo-wrapper img { max-height: 100%; max-width: 80%; object-fit: contain; }
.indexer-info { font-size: 0.9rem; color: var(--alk-text-muted); line-height: 1.6; margin-bottom: 20px; text-align: center; }
.indexer-status { display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; color: #15803d; background-color: #dcfce7; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.indexer-btn { display: block; width: 85%; background-color: var(--alk-dark); color: #ffffff !important; text-decoration: none !important; padding: 10px 15px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; transition: background-color 0.2s ease; }
.indexer-btn:hover { background-color: var(--alk-primary); }

/* =======================================================
   14. HALAMAN COPYRIGHT NOTICE (CC LICENSE BOX)
   ======================================================= */
.cc-license-box { background-color: var(--alk-bg-light); border: 1px solid var(--alk-border); border-radius: 8px; padding: 20px; margin: 30px 0; display: flex; align-items: center; gap: 20px; }
@media (max-width: 600px) { .cc-license-box { flex-direction: column; text-align: center; } }
.cc-license-image { flex-shrink: 0; }
.cc-license-image img { display: block; width: 120px; height: auto; }
.cc-license-text { font-size: 0.9rem; color: var(--alk-text-muted); line-height: 1.6; }

/* =======================================================
   15. HALAMAN OPEN ACCESS POLICY (OA PANEL SPLIT)
   ======================================================= */
.oa-split-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 25px 0; }
.oa-panel { padding: 25px; border-radius: 8px; height: 100%; }
.oa-panel-allow { background-color: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.oa-panel-terms { background-color: #fefce8; border: 1px solid #fef08a; color: #854d0e; }
.oa-panel h4 { margin-top: 0; margin-bottom: 15px; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 10px; }
.oa-panel ul { margin: 0; padding-left: 20px; }
.oa-panel ul li { margin-bottom: 12px; font-size: 0.9rem; line-height: 1.6; }
.oa-panel ul li strong { color: inherit; }

/* =======================================================
   16. HALAMAN PLAGIARISM CHECK (TURNITIN INTEGRATION)
   ======================================================= */
.plagiarism-hero { display: flex; gap: 25px; align-items: center; background: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; padding: 25px; margin-bottom: 30px; border-left: 5px solid var(--alk-accent); }
@media (max-width: 768px) { .plagiarism-hero { flex-direction: column; text-align: center; } }
.plagiarism-logo-side { flex-shrink: 0; max-width: 180px; }
.plagiarism-logo-side img { width: 100%; height: auto; display: block; }
.plagiarism-threshold-card { background: linear-gradient(135deg, var(--alk-dark) 0%, var(--alk-primary) 100%); color: #ffffff; padding: 30px 20px; border-radius: 10px; text-align: center; margin: 30px 0; box-shadow: 0 4px 12px rgba(0,0,0, 0.12); }
.threshold-number { font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 5px; color: #ffffff; }
.threshold-label { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.threshold-note { font-size: 0.9rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.plagiarism-workflow { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 25px; }
.wf-card { padding: 25px; border-radius: 8px; border: 1px solid var(--alk-border); height: 100%; line-height: 1.6; }
.wf-pass { border-top: 5px solid #16a34a; background-color: #f0fdf4; }
.wf-fail { border-top: 5px solid #dc2626; background-color: #fef2f2; }
.wf-card h4 { margin-top: 0; margin-bottom: 12px; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.wf-pass h4 { color: #166534; }
.wf-fail h4 { color: #991b1b; }

/* =======================================================
   17. HALAMAN PEER REVIEW PROCESS (TIMELINE WORKFLOW)
   ======================================================= */
.review-workflow-container { margin-top: 30px; margin-bottom: 40px; }
.workflow-step-card { display: flex; gap: 20px; background: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; padding: 25px; margin-bottom: 20px; border-left: 5px solid var(--alk-accent); position: relative; box-shadow: 0 4px 6px rgba(0,0,0,0.01); }
@media (max-width: 600px) { .workflow-step-card { flex-direction: column; gap: 12px; } }
.workflow-number-badge { background-color: var(--alk-dark); color: #ffffff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.workflow-text-content { flex-grow: 1; }
.workflow-text-content h4 { margin-top: 0; margin-bottom: 10px; color: var(--alk-dark); font-size: 1.15rem; font-weight: 700; }

.decision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 15px; }
.decision-item { padding: 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; border: 1px solid var(--alk-border); text-align: center; }
.dec-accept { background-color: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.dec-minor  { background-color: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.dec-major  { background-color: #fff7ed; color: #9a3412; border-color: #ffedd5; }
.dec-reject { background-color: #fef2f2; color: #991b1b; border-color: #fecaca; }

.withdrawal-box { background-color: var(--alk-bg-light); border: 1px solid var(--alk-border); border-top: 4px solid var(--alk-text-muted); border-radius: 8px; padding: 25px; margin-top: 35px; }
.withdrawal-box h4 { color: var(--alk-text-main); margin-top: 0; margin-bottom: 12px; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* =======================================================
   18. HALAMAN ARTICLE PROCESSING CHARGES (APC)
   ======================================================= */
.apc-pricing-card { background: linear-gradient(135deg, var(--alk-dark) 0%, var(--alk-primary) 100%); color: #ffffff; border-radius: 10px; padding: 35px 25px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.15); margin: 25px 0; }
.apc-price { font-size: 3rem; font-weight: 800; margin: 10px 0; color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.apc-table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: 0.95rem; }
.apc-table th { background-color: var(--alk-dark); color: #ffffff; text-align: left; padding: 14px; font-weight: 600; }
.apc-table td { padding: 14px; border-bottom: 1px solid var(--alk-border); color: var(--alk-text-main); }
.apc-table tr:nth-child(even) { background-color: var(--alk-bg-light); }

/* =======================================================
   19. HALAMAN CONTACT (GRID LAYOUT)
   ======================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 25px; margin-bottom: 35px; }
.contact-card { background: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; padding: 25px; box-shadow: 0 4px 6px rgba(0,0,0,0.01); border-top: 4px solid var(--alk-accent); }
.contact-card h4 { color: var(--alk-dark); margin-top: 0; margin-bottom: 15px; font-size: 1.15rem; font-weight: 700; border-bottom: 1px solid var(--alk-border); padding-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item { margin-bottom: 12px; font-size: 0.9rem; line-height: 1.6; color: var(--alk-text-muted); }

/* =======================================================
   20. HALAMAN AUTHOR GUIDELINES (TECHNICAL SPEC)
   ======================================================= */
.spec-box { background-color: var(--alk-bg-light); border: 1px solid var(--alk-border); border-radius: 8px; padding: 20px; margin-bottom: 25px; }
.spec-title { font-size: 1rem; font-weight: 700; color: var(--alk-dark); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--alk-accent); padding-bottom: 5px; }
.spec-list { list-style: none !important; padding-left: 0 !important; margin: 0; }
.spec-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 0.95rem; line-height: 1.5; }
.spec-list li::before { content: "■"; position: absolute; left: 0; color: var(--alk-accent); font-size: 0.8rem; top: 2px; }

/* =======================================================
   21. HALAMAN REVIEWER GUIDELINES (CHECKLIST MATRIX)
   ======================================================= */
.reviewer-gate-box { background-color: #eff6ff; border-left: 5px solid var(--alk-accent); padding: 20px; border-radius: 0 8px 8px 0; margin-bottom: 30px; }
.reviewer-gate-box h4 { color: var(--alk-dark); margin-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
.checklist-card { background: #ffffff; border: 1px solid var(--alk-border); border-radius: 8px; padding: 22px; margin-bottom: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.01); }
.checklist-card h4 { margin-top: 0; margin-bottom: 12px; color: var(--alk-dark); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.checklist-card h4::before { content: "📋"; font-size: 1.1rem; }
.checklist-card ul { margin: 0; padding-left: 20px; }
.checklist-card ul li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.6; }
