.objek {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	border: 1px solid #ddd;
	padding: 20px;
	height: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	/* Tambahkan margin-bottom untuk jarak antar card */
}

.objek h4 {
	margin: 10px 0;
	font-size: 18px;
	font-weight: bold;
}

.objek p {
	flex-grow: 1;
	margin-bottom: 10px;
	text-align: justify;
}

.objek img {
	width: 300px;
	height: 200px;
}

/* Media query untuk tampilan mobile */
@media (max-width: 767px) {
	.objek {
		margin-bottom: 15px;
		/* Mengatur jarak antar card pada tampilan mobile */
	}

	.col-lg-4,
	.col-sm-6 {
		margin-bottom: 15px;
		/* Menambahkan margin bawah untuk kolom di mobile */
	}
}

/* Review dan bintang sejajar */
.review_objek {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 10px;
}

.review_objek p {
	margin: 0;
	color: black;
	font-weight: bold;
	font-size: 15px;
}

.stars_objek {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.stars_objek i.active {
	color: #ffd700;
	/* Warna kuning emas untuk bintang */
	font-size: 14px;
}

.stars_objek i {
	color: #ccc;
}
/* .stars_objek i.active {
	color: #fcd703;
} */
