:root {
	--primary-teal: #00AA9B;
	--dark-navy: #172333;
	--soft-bg: #F8F9FA;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: white;
	color: var(--dark-navy);
	line-height: 1.8;
}

/* Tombol Kembali Konsisten di Kiri Atas */
/* .back-nav {
	position: fixed;
	top: 25px;
	left: 25px;
	z-index: 1000;
} */

.btn-back-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;

  padding: 8px 16px;
  border-radius: 50px;

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  color: #00AA9B;
  background: rgba(0,170,155,0.08);
  border: 1px solid rgba(0,170,155,0.25);

  transition: 0.25s;
}

.btn-back-inline:hover {
  background: #00AA9B;
  color: #ffffff;
  transform: translateX(-4px);
}

.btn-back {
	background: white;
	color: var(--dark-navy);
	border-radius: 50px;
	padding: 10px 22px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #eee;
}

.btn-back:hover {
	background: var(--primary-teal);
	color: white;
	transform: translateX(-5px);
}

/* Detail Berita Styling */
.article-container {
	max-width: 900px;
	margin: 100px auto 60px;
	padding: 0 20px;
}

.article-category {
	color: var(--primary-teal);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	margin-bottom: 15px;
	display: block;
}

.article-title {
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 25px;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.main-article-img {
	width: 100%;
	border-radius: 25px;
	margin-bottom: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.article-body {
	font-size: 1.1rem;
	color: #444;
	text-align: justify;
}

.article-body p {
	margin-bottom: 25px;
}

.btn-edit {
	display: inline-flex;
	align-items: center;
	gap: 6px;

	padding: 10px 24px;
	border-radius: 12px;

	font-size: 14px;
	font-weight: 600;
	text-decoration: none;

	color: #2563eb;
	border: 1.5px solid rgba(37, 99, 235, 0.4);
	background-color: transparent;

	transition: all 0.25s ease;
}

.btn-edit:hover {
	background-color: #2563eb;
	color: #fff;
	border-color: #2563eb;
}
