/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates

	WARNA: Gunakan var(--rembang-primary) bukan hardcode #1abc9c
-----------------------------------------------------------------*/

/* Organization Cards */
.ckan-org-card {
	border-left: none !important;
	border-bottom: 4px solid var(--rembang-primary) !important;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ckan-org-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.15) !important;
}
.ckan-org-desc {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
