
:root {
	--bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
	font-family: var(--bs-font-sans-serif);
	font-weight: 400;
	color: #24292de6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color:#433061;
}

h1, h2, h3, h4, h5, h6 {
	color: #212529;
	font-weight: 600;
	letter-spacing: -0.02em;
}

img {
	max-width:100%;
}

.wrapper {
	width: 100%; 
}

#sidebar {
	min-width: 280px;
	max-width: 280px;
	background: #1e1e3f;
	color: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
#sidebar.active {
	margin-left: -280px;
}
#sidebar .sidebar-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	padding: 2.5rem 1.25rem 2rem;
	min-height: 100vh;
}
#sidebar .sidebar-top {
	flex: 1;
}
#sidebar .logo {
	display: block;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	text-align: center;
}
#sidebar .logo-description {
	text-align: center;
	padding-top: 1.25rem;
	margin-bottom: 2rem;
}
#sidebar .logo span {
	display: block;
}
#sidebar .logo img {
	border-radius: 50%;
	height: 120px;
	width: 120px;
	object-fit: contain;
	background: #908e9b;
	border: 1px solid rgba(255, 255, 255, 0.35);
}
#sidebar .sidebar-nav {
	padding: 0 0.5rem;
}
#sidebar ul.components {
	padding: 0;
}
#sidebar ul {
	margin: 0;
	padding: 0;
	display: block;
	list-style: none;
}
#sidebar ul li {
	font-size: 15px;
	display: block;
}
#sidebar ul li > ul {
	margin-left: 1rem;
}
#sidebar ul li > ul li {
	font-size: 14px;
}
#sidebar ul li a,
#sidebar ul li a.nav-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	margin-bottom: 0.35rem;
	color: rgba(255, 255, 255, 0.92);
	border-bottom: none;
	border-radius: 10px;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}
#sidebar ul li a .menu-icon,
#sidebar ul li a.nav-link .menu-icon,
#sidebar ul li a i.menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	font-size: 1.05rem;
	flex-shrink: 0;
}
#sidebar ul li a .menu-text {
	line-height: 1.2;
}
#sidebar ul li a:hover,
#sidebar ul li a.nav-link:hover {
	color: #f5c842;
	background: rgba(255, 255, 255, 0.05);
}
#sidebar ul li.active > a,
#sidebar ul li.current > a,
#sidebar ul li.active > a.nav-link,
#sidebar ul li.current > a.nav-link {
	background: rgba(255, 255, 255, 0.1);
	color: #f5c842;
}
#sidebar ul li.active > a .menu-icon,
#sidebar ul li.current > a .menu-icon,
#sidebar ul li.active > a i.menu-icon,
#sidebar ul li.current > a i.menu-icon {
	color: #f5c842;
}
#sidebar h1 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.25rem;
}
#sidebar .side-slogan {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
	margin: 0;
}
#sidebar .sidebar-social {
	padding: 1.5rem 0.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 1.5rem;
	text-align: left;
}
#sidebar .sidebar-social-title {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0.75rem;
	text-align: left;
}
#sidebar .sidebar-social-icons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.85rem;
}
#sidebar .sidebar-social-icons a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.15rem;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}
#sidebar .sidebar-social-icons a:hover {
	color: #fff;
	transform: translateY(-2px);
}
#sidebar .sidebar-social-icons a[aria-label="WhatsApp"]:hover {
	color: #25D366;
}
#sidebar .sidebar-social-icons a[aria-label="LinkedIn"]:hover {
	color: #0A66C2;
}
#sidebar .sidebar-social-icons a[aria-label="GitHub"]:hover {
	color: #fff;
}
#sidebar .sidebar-social-icons a[aria-label="Upwork"]:hover {
	color: #14A800;
}
/* Hide copyright if still present via a sidebar module */
#sidebar .sidebar-copyright {
	display: none !important;
}

#content {
	width: 100%;
	padding: 0;
	min-height: 100vh;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s; 
	display: flex;
	flex-direction: column;
	background: #f8f9fc;
}
@media (min-width: 768px) {
	#content {
		padding: 1.75rem 3rem 3rem;
	}
}

.topbar {
	padding: 1rem 0 1.25rem;
	margin-bottom: 0.5rem;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}
.topbar-search {
	flex: 1;
	width: 100%;
	max-width: 420px;
	margin-left: auto;
}
body.page-finder-search .topbar-search {
	max-width: none;
}
.topbar-search .mod-finder,
.topbar-search form,
.topbar-search .search {
	width: 100%;
}
.topbar-search input[type="search"],
.topbar-search input[type="text"],
.topbar-search .form-control,
.topbar-search .js-finder-search-query {
	width: 100%;
	padding: 0.75rem 1rem 0.75rem 2.75rem;
	border: 1px solid #e2e6ef;
	border-radius: 999px;
	background: #fff;
	font-size: 0.95rem;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.topbar-search input[type="search"]:focus,
.topbar-search input[type="text"]:focus,
.topbar-search .form-control:focus,
.topbar-search .js-finder-search-query:focus {
	border-color: #c5b8e8;
	outline: none;
	box-shadow: 0 0 0 0.2rem rgba(94, 53, 177, 0.12);
}
.topbar-search .mod-finder.js-finder-searchform {
	display: block;
	width: 100%;
}
.topbar-search .mod-finder,
.topbar-search .mod-finder__search {
	position: relative;
}
.topbar-search label.finder {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.topbar-search .mod-finder__search::before,
.topbar-search form::before {
	content: "\f002";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #98a2b3;
	pointer-events: none;
	z-index: 2;
}


.blog {
	margin-bottom:70px;
}
.item-pageblog {
	margin-bottom: 70px;
}

/* Single blog article */
.blog-article {
	margin-bottom: 2rem;
}
.blog-article__card {
	width: 100%;
	max-width: none;
	margin: 0;
	background: #fff;
	border: 1px solid #e8ebf3;
	border-radius: 18px;
	box-shadow: 0 2px 12px rgba(16, 24, 40, 0.05);
	overflow: hidden;
}
.blog-article__header {
	padding: 2rem 2rem 0;
}
.blog-article__title-wrap {
	margin-bottom: 0;
	border: 0;
}
.blog-article__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 800;
	line-height: 1.25;
	color: #212529;
}
.blog-article .article-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin: 0 0 1rem;
	padding: 0;
}
.blog-article .article-info-term {
	display: none;
}
.blog-article .article-info dd {
	margin: 0;
}
.blog-article .category-name {
	flex: 0 0 100%;
	margin-bottom: 0.15rem;
}
.blog-article .category-name a,
.blog-article .category-name span {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #5e35b1;
	text-decoration: none;
}
.blog-article .category-name a:hover {
	color: #4a2c8c;
}
.blog-article .published,
.blog-article .createdby,
.blog-article .hits {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: #667085;
}
.blog-article .published time {
	color: inherit;
}
.blog-article .createdby .icon-user {
	display: none;
}
.blog-article .blog-article__readtime-item,
.blog-article .blog-article__readtime {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: #667085;
}
.blog-article__tags {
	padding: 0 2rem;
}
.blog-article__tags .tags {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.blog-article__tags .tags .list-inline-item {
	margin: 0;
}
.blog-article__tags .tags a {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border: 1px solid #e2e6ef;
	border-radius: 999px;
	background: #f8f9fc;
	color: #433061 !important;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: none;
}
.blog-article__tags .tags a:hover {
	background: #f3f0fa;
	border-color: #c5b8e8;
	color: #5e35b1 !important;
}
.blog-article__media {
	padding: 0 2rem;
}
.blog-article__media .item-image {
	margin: 0 0 1.5rem;
}
.blog-article__media .item-image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 14px;
}
.blog-article__body {
	padding: 0 2rem 2rem;
	color: #24292de6;
	font-size: 1.02rem;
	line-height: 1.8;
}
.blog-article__body > :first-child {
	margin-top: 0;
}
.blog-article__body h2,
.blog-article__body h3,
.blog-article__body h4 {
	margin: 2rem 0 0.85rem;
	font-weight: 700;
	color: #212529;
	line-height: 1.35;
}
.blog-article__body h2 { font-size: 1.45rem; }
.blog-article__body h3 { font-size: 1.2rem; }
.blog-article__body p,
.blog-article__body ul,
.blog-article__body ol {
	margin-bottom: 1.1rem;
}
.blog-article__body ul,
.blog-article__body ol {
	padding-left: 1.35rem;
}
.blog-article__body li {
	margin-bottom: 0.45rem;
}
.blog-article__body a {
	color: #5e35b1;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.blog-article__body a:hover {
	color: #4a2c8c;
}
.blog-article__body blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid #5e35b1;
	background: #f8f6fc;
	border-radius: 0 12px 12px 0;
	color: #433061;
}
.blog-article__body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}
.blog-article__body pre,
.blog-article__body code {
	font-family: Consolas, Monaco, 'Courier New', monospace;
}
.blog-article__body pre {
	padding: 1rem 1.15rem;
	background: #1e1e3f;
	color: #f5f5f5;
	border-radius: 12px;
	overflow-x: auto;
}
.blog-article__body :not(pre) > code {
	padding: 0.15rem 0.4rem;
	background: #f3f0fa;
	border-radius: 6px;
	font-size: 0.92em;
	color: #433061;
}
.blog-article__tags--footer {
	padding-top: 0.5rem;
	padding-bottom: 2rem;
	border-top: 1px solid #eef1f6;
	margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
	.blog-article__header,
	.blog-article__media,
	.blog-article__body,
	.blog-article__tags {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	.blog-article__header {
		padding-top: 1.5rem;
	}
	.blog-article__body {
		padding-bottom: 1.5rem;
	}
}

/* SP Page Builder: Articles addon with class "blog-list" */
.blog-list.sppb-addon-articles {
	position: relative;
	margin-bottom: 2rem;
}
.blog-list.sppb-addon-articles .sppb-addon-title {
	margin: 0 0 1.5rem;
	padding-right: 11rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #212529;
	line-height: 1.3;
}
.blog-list.sppb-addon-articles .sppb-addon-content {
	position: relative;
}
.blog-list.sppb-addon-articles .sppb-addon-content > .sppb-btn {
	position: absolute;
	top: -3.25rem;
	right: 0;
	margin: 0;
	padding: 0;
	background: none !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #5e35b1 !important;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}
.blog-list.sppb-addon-articles .sppb-addon-content > .sppb-btn:hover {
	color: #4a2c8c !important;
	text-decoration: underline;
}
.blog-list.sppb-addon-articles .sppb-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 0;
}
.blog-list.sppb-addon-articles .sppb-addon-article-layout {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	flex: none !important;
}
.blog-list.sppb-addon-articles .sppb-addon-article {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid #e8ebf3;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-list.sppb-addon-articles .sppb-addon-article:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}
.blog-list.sppb-addon-articles .sppb-article-img-wrap {
	display: block;
	height: 150px;
	overflow: hidden;
	background: #f3f4f8;
}
.blog-list.sppb-addon-articles .sppb-article-img-wrap img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
	border-radius: 0;
	margin: 0;
}
.blog-list.sppb-addon-articles .sppb-article-info-wrap {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1rem 1.1rem 1.15rem;
}
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h1,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h2,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h3,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h4 {
	order: 2;
	margin: 0 0 0.65rem;
	font-size: 1rem;
	line-height: 1.45;
	font-weight: 700;
}
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h1 a,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h2 a,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h3 a,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h4 a {
	color: #212529;
	text-decoration: none;
}
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h1 a:hover,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h2 a:hover,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h3 a:hover,
.blog-list.sppb-addon-articles .sppb-article-info-wrap > h4 a:hover {
	color: #5e35b1;
}
.blog-list.sppb-addon-articles .sppb-article-meta {
	display: contents;
}
.blog-list.sppb-addon-articles .sppb-meta-category {
	order: 1;
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.blog-list.sppb-addon-articles .sppb-meta-category a {
	color: #5e35b1;
	text-decoration: none;
}
.blog-list.sppb-addon-articles .sppb-addon-article-layout:nth-child(4n+2) .sppb-meta-category a { color: #2e7d32; }
.blog-list.sppb-addon-articles .sppb-addon-article-layout:nth-child(4n+3) .sppb-meta-category a { color: #1565c0; }
.blog-list.sppb-addon-articles .sppb-addon-article-layout:nth-child(4n+4) .sppb-meta-category a { color: #00838f; }
.blog-list.sppb-addon-articles .sppb-meta-author,
.blog-list.sppb-addon-articles .sppb-meta-date-modified,
.blog-list.sppb-addon-articles .sppb-meta-date-unmodified,
.blog-list.sppb-addon-articles .tags {
	display: none;
}
.blog-list.sppb-addon-articles .sppb-article-introtext {
	order: 3;
	margin: 0 0 1rem;
	color: #667085;
	font-size: 0.875rem;
	line-height: 1.55;
	flex: 1;
}
.blog-list.sppb-addon-articles .sppb-article-introtext p {
	margin: 0;
}
.blog-list.sppb-addon-articles .sppb-readmore {
	display: none;
}
.blog-list.sppb-addon-articles .blog-list__footer {
	order: 4;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid #eef1f6;
	color: #98a2b3;
	font-size: 0.78rem;
}
.blog-list.sppb-addon-articles .blog-list__date {
	white-space: nowrap;
}

@media (max-width: 1199.98px) {
	.blog-list.sppb-addon-articles .sppb-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 575.98px) {
	.blog-list.sppb-addon-articles .sppb-row {
		grid-template-columns: 1fr;
	}
	.blog-list.sppb-addon-articles .sppb-addon-title {
		padding-right: 0;
		margin-bottom: 2.75rem;
	}
	.blog-list.sppb-addon-articles .sppb-addon-content > .sppb-btn {
		top: -2.5rem;
	}
}

/* Joomla category blog — card grid (Blog menu only, via .blog-list wrapper) */
.com-content-category-blog.blog-list {
	margin-bottom: 2rem;
}
.com-content-category-blog.blog-list > h1,
.com-content-category-blog.blog-list > h2 {
	margin: 0 0 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #212529;
	line-height: 1.3;
}
.com-content-category-blog.blog-list .blog-items.blog-list-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 0;
}
.com-content-category-blog.blog-list .blog-items.blog-list-grid .blog-item {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
.com-content-category-blog.blog-list .blog-list-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid #e8ebf3;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.com-content-category-blog.blog-list .blog-list-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}
.com-content-category-blog.blog-list .blog-list-card__image {
	display: block;
	height: 150px;
	overflow: hidden;
	background: #f3f4f8;
}
.com-content-category-blog.blog-list .blog-list-card__image img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
}
.com-content-category-blog.blog-list .blog-list-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1rem 1.1rem 1.15rem;
}
.com-content-category-blog.blog-list .blog-list-card__category {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #5e35b1;
}
.com-content-category-blog.blog-list .blog-item:nth-child(4n+2) .blog-list-card__category { color: #2e7d32; }
.com-content-category-blog.blog-list .blog-item:nth-child(4n+3) .blog-list-card__category { color: #1565c0; }
.com-content-category-blog.blog-list .blog-item:nth-child(4n+4) .blog-list-card__category { color: #00838f; }
.com-content-category-blog.blog-list .blog-list-card__title {
	margin: 0 0 0.65rem;
	font-size: 1rem;
	line-height: 1.45;
	font-weight: 700;
}
.com-content-category-blog.blog-list .blog-list-card__title a {
	color: #212529;
	text-decoration: none;
}
.com-content-category-blog.blog-list .blog-list-card__title a:hover {
	color: #5e35b1;
}
.com-content-category-blog.blog-list .blog-list-card__excerpt {
	margin: 0 0 1rem;
	color: #667085;
	font-size: 0.875rem;
	line-height: 1.55;
	flex: 1;
}
.com-content-category-blog.blog-list .blog-list__footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid #eef1f6;
	color: #98a2b3;
	font-size: 0.78rem;
}
.com-content-category-blog.blog-list .blog-list__date {
	white-space: nowrap;
}

@media (max-width: 1199.98px) {
	.com-content-category-blog.blog-list .blog-items.blog-list-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 575.98px) {
	.com-content-category-blog.blog-list .blog-items.blog-list-grid {
		grid-template-columns: 1fr;
	}
}

.blog a {
	text-decoration:none;
}
.blog-items .blog-item {
	margin-bottom:80px;
}
.com-content-category-blog.blog-list .blog-items .blog-item {
	margin-bottom: 0;
}
.blog-items .blog-item .page-header h2 {
	font-size:1.5rem;
}
.blog-items .blog-item .item-image img {
	border-radius:4px;
	object-fit:cover;
	max-height: 550px;
}
.item-pageblog .item-image img {
	border-radius:4px;
	object-fit:cover;
	max-height: 650px;
}

footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#sidebarCollapse {
	background-color: #1e1e3f;
	border-color: #1e1e3f;
	color: #fff;
}
#sidebarCollapse:hover,
#sidebarCollapse:focus,
#sidebarCollapse:active {
	background-color: #2a2a52;
	border-color: #2a2a52;
	color: #fff;
}
#sidebarCollapse:focus {
	box-shadow: 0 0 0 0.2rem rgba(30, 30, 63, 0.35);
}

/* Finder search page */
.finder-page {
	width: 100%;
}
body.page-finder-search .topbar-search,
body.page-finder-search .topbar-search .mod-finder,
body.page-finder-search .topbar-search form,
body.page-finder-search .topbar-search .mod-finder__search,
body.page-finder-search .topbar-search input[type="search"],
body.page-finder-search .topbar-search input[type="text"],
body.page-finder-search .topbar-search .form-control,
body.page-finder-search .topbar-search .js-finder-search-query {
	width: 100%;
	max-width: none;
}
.finder-page__heading {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: #212529;
}
.finder-page__form,
.finder-page__searchform {
	display: none;
}
.finder-page__explained {
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	background: #f3f0fa;
	border-radius: 10px;
	color: #433061;
	font-size: 0.925rem;
}
.finder-page__explained a {
	color: #5e35b1;
	font-weight: 600;
}
.finder-page__empty {
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: #fff;
	border: 1px solid #e8ebf3;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}
.finder-page__empty-icon {
	font-size: 2.5rem;
	color: #98a2b3;
	margin-bottom: 0.75rem;
}
.finder-page__empty-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #212529;
}
.finder-page__empty-text {
	margin: 0;
	color: #667085;
	font-size: 0.95rem;
}
.finder-page__results-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.finder-page__result {
	padding: 1.25rem;
	margin-bottom: 1rem;
	background: #fff;
	border: 1px solid #e8ebf3;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}
.finder-page__result-title {
	margin-bottom: 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
}
.finder-page__result-title a {
	color: #212529;
	text-decoration: none;
}
.finder-page__result-title a:hover {
	color: #5e35b1;
}
.finder-page__result-description {
	margin: 0;
	color: #667085;
	font-size: 0.925rem;
	line-height: 1.6;
}
.finder-page__result-date {
	display: inline-block;
	margin-right: 0.5rem;
	font-size: 0.8rem;
	color: #98a2b3;
}
.finder-page__navigation {
	margin-top: 1.5rem;
}
.finder-page__counter {
	margin-top: 0.75rem;
	color: #667085;
	font-size: 0.875rem;
}

@media (max-width: 991.98px) {
    #sidebar {
        margin-left: -280px;
	}
    #sidebar.active {
        margin-left: 0;
	}
	.topbar-inner {
		justify-content: space-between;
	}
    #sidebarCollapse span {
        display: none; 
	}	
}

@media (max-width: 991px) {
	.blog-items .blog-item .item-image img {
		height:200px;
		object-fit:cover;
	}
}

/* Featured product card — homepage / SP Page Builder */
.featured-product-card,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-addon-article-layout-side-content {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0;
	background: #f6f4fc;
	border: 1px solid #e8e4f4;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(67, 48, 97, 0.08);
}

.featured-product-card__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
}

.featured-product-card__content,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap {
	flex: 1 1 320px;
	padding: 2.25rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	order: 1;
}

.featured-product-card__media,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-img-wrap {
	flex: 1 1 280px;
	min-height: 280px;
	order: 2;
	display: block;
	margin: 0;
	padding: 1.25rem;
	background: transparent;
}

.featured-product-card__media img,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-img-wrap img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}

.featured-product-card__label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #5e35b1;
}

.featured-product-card__label i {
	font-size: 0.85rem;
}

.featured-product-card__title,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h1,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h2,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h3 {
	margin: 0 0 1rem;
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	font-weight: 800;
	line-height: 1.25;
	color: #212529;
}

.featured-product-card__title a,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h1 a,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h2 a,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h3 a {
	color: inherit;
	text-decoration: none;
}

.featured-product-card__title a:hover,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h1 a:hover,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h2 a:hover,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap h3 a:hover {
	color: #433061;
}

.featured-product-card__desc,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-introtext {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #667085;
}

.featured-product-card__desc p,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-introtext p {
	margin: 0;
}

.featured-product-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.featured-product-card__tags span {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #5e35b1;
	background: rgba(94, 53, 177, 0.1);
	border-radius: 999px;
}

.featured-product-card__btn,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-readmore {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
	padding: 0.75rem 1.35rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff !important;
	background: #5e35b1;
	border-radius: 10px;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.featured-product-card__btn:hover,
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-readmore:hover {
	background: #433061;
	color: #fff !important;
	transform: translateY(-1px);
}

.featured-product-card__btn i {
	font-size: 0.75rem;
}

/* Hide default SP PB meta when using custom intro */
.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-meta {
	display: none;
}

.home-product-featured .sppb-addon-articles .sppb-row {
	margin: 0;
}

.home-product-featured .sppb-addon-article-layout-side-wrapper {
	padding: 0;
	max-width: 100%;
}

.mod-articles-items.mod-list {
	margin:0;
	list-style:none;
	padding:0;
}

@media (max-width: 767.98px) {
	.featured-product-card__content,
	.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-info-wrap {
		padding: 1.5rem;
		order: 2;
	}

	.featured-product-card__media,
	.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-img-wrap {
		order: 1;
		min-height: 200px;
		padding: 1rem 1rem 0;
	}

	.featured-product-card__media img,
	.home-product-featured .sppb-addon-article-layout-side-wrapper .sppb-article-img-wrap img {
		min-height: 200px;
	}
}

/* Product category list — intro HTML cards only */
.com-content-category-blog.product-list .blog-item {
	margin-bottom: 2rem;
	padding: 0;
}

.com-content-category-blog.product-list .blog-item .item-content {
	margin: 0;
	padding: 0;
}

.com-content-category-blog.product-list .featured-product-card {
	margin: 0;
}

/* Product single article — plain layout (no blog-article__card) */
.product-article {
	margin-bottom: 2rem;
}

.product-article__page-heading {
	margin-bottom: 1.5rem;
}

.product-article__page-heading h1 {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 700;
	color: #212529;
}

.product-article__title-wrap {
	margin-bottom: 1.25rem;
}

.product-article__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	line-height: 1.25;
	color: #212529;
}

.product-article__body {
	color: #24292de6;
	line-height: 1.65;
}

.product-article__body > :first-child {
	margin-top: 0;
}

.product-article__body img {
	max-width: 100%;
	height: auto;
}