/**
 * GBP Feature Highlights Widget Styles
 *
 * Feature blocks with icon, heading, and description.
 */

/* ======================
   Container
   ====================== */
.gbp-feature-highlights {
	width: 100%;
}

/* ======================
   Feature Item
   ====================== */
.gbp-feature-highlights__item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
}

.gbp-feature-highlights--has-separator .gbp-feature-highlights__item:not(:last-child) {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E5E7EB;
}

/* ======================
   Icon Container
   ====================== */
.gbp-feature-highlights__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 1px solid #D1D5DB;
	background-color: transparent;
}

.gbp-feature-highlights__icon i {
	font-size: 28px;
	color: #0D9488;
	line-height: 1;
}

.gbp-feature-highlights__icon svg {
	width: 28px;
	height: 28px;
	fill: #0D9488;
}

/* ======================
   Content Area
   ====================== */
.gbp-feature-highlights__content {
	flex: 1;
	min-width: 0;
}

/* ======================
   Heading
   ====================== */
.gbp-feature-highlights__heading {
	margin: 0 0 8px 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	color: #1F2937;
}

.gbp-feature-highlights__heading a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.gbp-feature-highlights__heading a:hover,
.gbp-feature-highlights__heading a:focus-visible {
	text-decoration: none;
}

/* ======================
   Description
   ====================== */
.gbp-feature-highlights__description {
	margin: 0;
	line-height: 1.6;
	color: #4B5563;
}

/* ======================
   Mobile Responsive
   ====================== */
@media (max-width: 767px) {
	.gbp-feature-highlights__item {
		gap: 16px;
	}

	.gbp-feature-highlights__icon {
		width: 56px;
		height: 56px;
	}

	.gbp-feature-highlights__icon i {
		font-size: 22px;
	}

	.gbp-feature-highlights__icon svg {
		width: 22px;
		height: 22px;
	}

	.gbp-feature-highlights__heading {
		font-size: 16px;
	}

}

/* ======================
   Editor Preview Fixes
   ====================== */
.elementor-editor-active .gbp-feature-highlights__icon i,
.elementor-editor-active .gbp-feature-highlights__icon svg {
	display: inline-flex;
}
