.artikel-konten {
	font-size: 14px;
	color: #999999;
	font-weight: 500;
	width: 100%;
	min-height: 50px;
	background: transparent;
	margin-bottom: 20px;
	line-height: 1.6;
	box-sizing: border-box;
}

/* Biarkan elemen HTML tetap tampil sesuai semestinya */
.artikel-konten * {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	line-height: inherit;
}

/* Tapi tag dengan gaya semantik tetap tampil */
.artikel-konten b,
.artikel-konten strong {
	font-weight: bold;
	color: #666666;
}

.artikel-konten i,
.artikel-konten em {
	font-style: italic;
}

.artikel-konten u {
	text-decoration: underline;
}

/* List bawaan biar tetap normal */
.artikel-konten ul,
.artikel-konten ol {
	margin: 10px 0 10px 25px;
	padding: 0;
	list-style: revert;
}

.artikel-konten li {
	margin-bottom: 5px;
}

/* Heading tetap besar sesuai semantik */
.artikel-konten h1,
.artikel-konten h2,
.artikel-konten h3,
.artikel-konten h4,
.artikel-konten h5,
.artikel-konten h6 {
	font-weight: bold;
	color: #333333;
	line-height: 1.4;
	margin-top: 15px;
	margin-bottom: 10px;
}

/* Gambar di artikel */
.artikel-konten img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 10px auto;
}

.tombol-produk .btn {
	font-size: 15px;
	font-weight: 600;
	border-radius: 12px;
	padding: 12px 20px;
	transition: all 0.25s ease;
	text-transform: none;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.tombol-produk .btn i {
	font-size: 16px;
}

.btn-tanya {
	background: linear-gradient(135deg, #007bff, #0056d2);
	color: #fff;
	border: none;
}

.btn-tanya:hover {
	background: linear-gradient(135deg, #0056d2, #003c9e);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 91, 255, 0.3);
	color: #fff;
}

.btn-order {
	background: linear-gradient(135deg, #25d366, #1ebd5a);
	color: #fff;
	border: none;
}

.btn-order:hover {
	background: linear-gradient(135deg, #1ebd5a, #128c7e);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
	color: #fff;
}

/* Responsif di layar kecil */
@media (max-width: 576px) {
	.tombol-produk .btn {
		font-size: 14px;
		padding: 10px 16px;
	}
}

.post-rank {
	width: 35px;
	height: 70px;
	background: linear-gradient(to bottom, #af8402, #f3c65c);
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.blog-item {
	transition: background 0.2s ease;
}

.blog-item:hover {
	background: #fafafa;
}

.blog-thumb img {
	width: 160px;
	height: 120px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #eee;
}

.blog-text h5 a:hover {
	color: #af8402;
}

.blog-meta {
	font-size: 0.85rem;
}

@media (max-width: 768px) {
	.blog-content {
		flex-direction: column;
	}

	.blog-thumb img {
		width: 100%;
		height: 220px;
	}
}
