.elementor-widget-vars-location-highlights {
	width: 100%;
}

.vars-lh {
	width: 100%;
}

/* Item */
.vars-lh-item {
	border: 1px solid #ddd;
	margin-bottom: -1px;
}

/* Header */
.vars-lh-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	cursor: pointer;
	background-color: #fff;
	user-select: none;
	transition: background-color 0.3s ease;
}

/* Active header */
.vars-lh-item.active .vars-lh-header {
	background-color: #FBB12F;
}

/* Title */
.vars-lh-title {
	flex: 1;
	font-weight: 500;
}

/* Icon */
.vars-lh-icon {
	font-size: 1.25rem;
	font-weight: 300;
	margin-left: 1rem;
	flex-shrink: 0;
}

/* Content — collapsed by default */
.vars-lh-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	background-color: #f9f9f9;
}

/* Content — open state */
.vars-lh-item.active .vars-lh-content {
	max-height: 1000px;
}

.vars-lh-body {
	padding: 1rem 1.5rem;
}


/* Responsive */
@media (max-width: 768px) {
	.vars-lh-header {
		padding: 0.75rem 1rem;
	}

	.vars-lh-body {
		padding: 0.75rem 1rem;
	}

	.vars-lh-icon {
		margin-left: 0.5rem;
	}
}
