/* ============================================
   ARAJANG - CONTENT BOOST GABUNGAN (v5)
   File ini menggabungkan:
   1. Banner "Current Issue" + kartu artikel (v3)
   2. Kotak info volume/tanggal publish (v4)
   Upload file ini untuk GANTIKAN arajang-fix-v4.css
   yang sekarang aktif di Journal style sheet.
   ============================================ */

/* --- Judul "Current Issue" jadi banner menonjol --- */
.page_index h2,
.current_issue h2,
#homeContent h2 {
	background: linear-gradient(135deg, #C0392B, #922B21);
	color: #fff !important;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 1.3em;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(192, 57, 43, 0.25);
	margin-top: 24px;
	margin-bottom: 16px;
}

/* --- Kotak info volume + tanggal publish (nama class asli: current_issue_title) --- */
.current_issue_title {
	background: #FDF2F1;
	border-left: 4px solid #C0392B;
	border-radius: 8px;
	padding: 14px 20px;
	margin-bottom: 20px;
}

.current_issue_title p:first-child {
	font-weight: 700;
	color: #922B21;
	margin-bottom: 4px;
}

/* --- Setiap artikel jadi kartu terpisah --- */
.obj_article_summary,
.page_index .article,
#homeContent .article {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 20px 24px;
	margin-bottom: 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.obj_article_summary:hover,
.page_index .article:hover,
#homeContent .article:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(192, 57, 43, 0.15);
	border-color: #E6B0AA;
}

/* --- Judul artikel: perbesar sedikit, transisi warna saat hover --- */
.obj_article_summary .title a,
.page_index .article .title a,
#homeContent .article .title a {
	color: #C0392B;
	font-weight: 700;
	font-size: 1.05em;
	transition: color 0.2s ease;
}
.obj_article_summary .title a:hover,
.page_index .article .title a:hover,
#homeContent .article .title a:hover {
	color: #922B21;
	text-decoration: underline;
}

/* --- Stats (views/downloads) jadi pill kecil abu-abu --- */
.obj_article_summary .item_metrics,
.article .item_metrics,
.metrics {
	display: inline-block;
	background: #F4F4F4;
	color: #666;
	font-size: 0.85em;
	padding: 3px 10px;
	border-radius: 999px;
	margin-right: 6px;
}

/* --- Tombol PDF: shadow halus + hover naik --- */
.obj_galley_link.pdf,
a.file,
.article .galleys a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #C0392B !important;
	color: #fff !important;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 3px 8px rgba(192,57,43,0.3);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.obj_galley_link.pdf:hover,
a.file:hover,
.article .galleys a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(192,57,43,0.4);
}
