/* front-end styles, kept low-specificity so it's easy to override from Elementor's custom CSS or the theme */
body{
	font-family:"Bricolage Grotesque", sans-serif;
}
.lph-grid {
	display: grid;

	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
row-gap:60px;
	margin: 24px 0;
}

.lph-columns-1 { grid-template-columns: 1fr; }
.lph-columns-2 { grid-template-columns: repeat(2, 1fr); }
.lph-columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {

	.lph-grid { grid-template-columns: repeat(2, 1fr); gap: 24px;}
}
@media (max-width: 600px) {
	.lph-grid { grid-template-columns: 1fr; gap: 24px;}
}

.lph-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
}

.lph-card-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.lph-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.lph-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.lph-card-heading h3 {
	margin: 0;
	font-size: 18px;
}

.lph-cat-tag {
	font-size: 12px;
	background: #f1eefe;
	color: #6b3fd4;
	padding: 2px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.lph-promo-text {
	font-size: 12px;
	color: #6b3fd4;
	font-weight: 600;
}

.lph-excerpt {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
	flex: 1;
}

.lph-cta {
	margin-top: 8px;
	display: inline-block;
	text-align: center;
	padding: 10px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	text-decoration: none !important;
	font-weight: 600;
	color: #4c1d95;
}
.lph-cta:hover { background: #f5f3ff; }

.lph-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	background: #7c3aed;
	color: #fff;
}
.lph-badge-trending { background: #ea580c; }
.lph-badge-new { background: #059669; }
.lph-badge-recommended { background: #2563eb; }

/* filter pills */
.lph-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 20px 0;
}

.lph-filter-pill {
	padding: 8px 18px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #374151;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 500;
}

.lph-filter-pill.active {
	background: #7c3aed;
	border-color: #7c3aed;
	color: #fff;
}

.lph-empty {
	text-align: center;
	color: #9ca3af;
	padding: 40px 0;
}

/* ajax loading state */
.lph-grid-wrapper.lph-loading .lph-grid {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

/* Featured Showcase, alternating layout */
.lph-featured-list {
	display: flex;
	flex-direction: column;
	gap: 64px;
	margin: 32px 0;
}

.lph-featured-item {
	display: flex;
	align-items: center;
	gap: 48px;
/* 	background: linear-gradient(135deg, #ede9fe, #f5f3ff); */
	border-radius: 24px;
	padding-top: 20px;
}

.lph-featured-item.lph-image-left {
	flex-direction: row-reverse;
}

.lph-featured-content{
padding: 15px 25px;
border-radius: 20px;
	background: linear-gradient(180deg, #C800DE1F, #45EEEE29);

}
.lph-featured-content,
.lph-featured-image {
	flex: 1;
	min-width: 0;
}

.lph-featured-content h2 {
	font-size: 28px;
	margin: 0 0 12px;
}

.lph-featured-desc {
	color: #6b7280;
	margin-bottom: 20px;
}

.lph-feature-rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.lph-feature-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #fff;
	border-radius: 12px;
	padding: 14px 16px;
}

.lph-feature-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: #4c1d95;
	color: #fff;
	border-radius: 10px;
	font-size: 18px;
}

.lph-feature-row strong {
	display: block;
	margin-bottom: 2px;
}

.lph-feature-row p {
	margin: 0;
	font-size: 13px;
	color: #6b7280;
}

.lph-cta-block {
	display: block;
	text-align: center;
	background: #fff;
}

.lph-featured-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}

@media (max-width: 900px) {
	.lph-featured-item,
	.lph-featured-item.lph-image-left {
		flex-direction: column;
	}
}
