/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 23 2026 | 03:03:35 */
/* SKELETON */

.bl-grid.loading .bl-card {
	opacity: 0.3;
}

.sk-card {
	height: 200px;
	background: #eee;
	border-radius: 10px;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% { opacity: 0.6; }
	50% { opacity: 1; }
	100% { opacity: 0.6; }
}

/* SKELETON END */

button.bl-filter {
	min-width: 200px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Archivo';
	font-size: 14px;
	font-weight: 600;
	color: #333333;
	gap: 10px;
	padding: 0 20px !important;
	line-height: 1.5;
}

.bl-filters {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
	flex-wrap: wrap;
}

button.bl-filter span.dot {
	width: 12px;
	height: 12px;
	border-radius: 100px;
	line-height: 1;
	transform: translateY(-1px);
}

button.bl-filter:hover {
	/* Fallback for older browsers */
	background: rgba(204, 204, 204, 0.2);
	/* Modern browsers */
	background: color-mix(in srgb, var(--bl-color) 20%, transparent);
}

.bl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.bl-grid .bl-thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bl-grid .bl-card > a {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bl-grid .bl-card .bl-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: 'Archivo';
	font-size: 13px;
	font-weight: 600;
	color: #6D757F;
}

.bl-grid .bl-card .bl-badge {
	border: 2px solid;
	display: flex;
	border-radius: 3px;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	width: max-content;
	padding: 2px 10px;
}

.bl-grid .bl-card a {
	text-decoration: none;
}

.bl-grid .bl-card .bl-badge p {
	font-family: 'Archivo';
	font-size: 13px;
	font-weight: 600;
	line-height: 20px;
	margin: 0;
}

.bl-grid .bl-card > a h3.bl-title {
	margin: 0;
	color: #183354;
	font-family: 'Archivo';
	font-size: 20px;
	line-height: 1.25;
	font-weight: 600;
	/* 	position: relative; */
}

h3.bl-title span {
  display: inline;
  background-image: linear-gradient(to right, #183354 0, #183354 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 2px;
  transition: background-size .80s cubic-bezier(.2, .75, .5, 1);
}

.bl-grid .bl-card > a:hover h3.bl-title span {
  background-size: 100% 2px;
}

/* .bl-grid .bl-card > a h3.bl-title:after {
position: absolute;
bottom: -5px;
height: 2px;
background: #183354;
width: 0;
transition: 250ms all linear;
left: 0;
content: '';
}

.bl-grid .bl-card > a:hover h3.bl-title:after {
width: 100%;
}
*/



.bl-grid .bl-card > a .bl-thumb {
	height: 220px;
	overflow:hidden;
	border-radius: 10px;
}

.bl-grid .bl-card .bl-meta p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin: 0px;
	line-height: 2;
}

.bl-grid .bl-card .bl-meta p img.bl-meta-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

button#bl-load-more {
	display: table;
	margin: 40px auto 0;
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
	font-size: var(--e-global-typography-accent-font-size);
	font-weight: var(--e-global-typography-accent-font-weight);
	text-decoration: var(--e-global-typography-accent-text-decoration);
	line-height: var(--e-global-typography-accent-line-height);
	fill: var(--e-global-color-8a782ad);
	color: var(--e-global-color-8a782ad);
	background-color: var(--e-global-color-primary);
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: var(--e-global-color-secondary);
	border-radius: 5px;
	padding: 0px 0px 0px 0px;
	height: 49px;
	width: 250px;
}

button#bl-load-more:hover {
	transform: translateY(-10px);
	box-shadow: 0px 8px 4px 0px rgba(38, 58.00000000000002, 90, 0.35);
}

/* RESPONSIVE STYLES */
/* Large devices (desktops, less than 1200px) */
@media screen and (max-width: 1400px) {
	.bl-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	button.bl-filter {
		min-width: 150px;
	}
}

/* Mid-Large devices (desktops, less than 1200px) */
@media screen and (max-width: 1200px) {
	button.bl-filter {
		flex: 0 0 calc(50% - 10px);
	}

}

/* Medium devices (tablets landscape, less than 992px) */
@media screen and (max-width: 999px) {
	.bl-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Small devices (tablets portrait, less than 768px) */
@media screen and (max-width: 767px) {
	.bl-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	button.bl-filter {
		flex: 0 0 100%;
	}
}

/* Extra small devices (large phones, less than 576px) */
@media screen and (max-width: 576px) {
}

/* Extra extra small devices (small phones, less than 400px) */
@media screen and (max-width: 400px) {
}