/* Mattis Property Features Addon */
.mpf-features {
	display: block;
	margin: 0 0 40px;
}

.mpf-title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: var(--mattis-dark, #151515);
}

.mpf-feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mpf-chip {
	background: #e8e8e8;
	border-radius: 5px;
	color: #151515 !important;
	padding: 7px 9px;
	font-size: 13px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 23px;
	min-height: 31px;
}

.mpf-chip__bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #db7e2b;
	display: inline-block;
	flex-shrink: 0;
}

/* Placeholder para el editor */
.mpf-placeholder {
	background: #f5f5f5;
	border: 2px dashed #ddd;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	color: #666;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
	.mpf-title {
		font-size: 18px;
	}

	.mpf-chip {
		font-size: 12px;
		padding: 6px 8px;
		gap: 15px;
	}
}
