.lemon-feature-card {
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.07 );
	padding: 24px;
	max-width: 260px;
}

.lemon-feature-card__header {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.lemon-feature-card__icon,
.lemon-feature-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lemon-feature-card__icon i {
	line-height: 1;
}

.lemon-feature-card__title {
	margin: 0;
	line-height: 1.3;
	font-weight: 700;
}

.lemon-feature-card__list {
	display: flex;
	flex-direction: column;
}

.lemon-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.lemon-feature-item__icon i {
	line-height: 1;
}

.lemon-feature-item__text {
	display: flex;
	flex-direction: column;
}

.lemon-feature-item__title {
	font-weight: 700;
	margin-bottom: 2px;
}

.lemon-feature-item__desc {
	margin: 0;
	line-height: 1.45;
}

.lemon-icon-block {
	text-decoration: none;
}

.lemon-note-card {
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.07 );
	padding: 24px;
}

.lemon-note-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.lemon-note-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lemon-note-card__icon i {
	line-height: 1;
}

.lemon-note-card__title {
	margin: 0;
	line-height: 1.3;
	font-weight: 700;
}

.lemon-note-card__body > *:first-child {
	margin-top: 0;
}
.lemon-note-card__body > *:last-child {
	margin-bottom: 0;
}

.lemon-icon-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lemon-icon-list__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lemon-icon-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.lemon-icon-list__text {
	font-size: 15px;
	color: #2d2d2d;
}

/* ---- icon picker (editor only) ---- */

.lemon-icon-picker {
	position: relative;
}

.lemon-icon-picker__trigger {
	all: unset;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.lemon-icon-picker__trigger:hover {
	opacity: 0.85;
}

.lemon-icon-popover {
	width: 260px;
	padding: 10px;
}

.lemon-icon-popover__search {
	margin-bottom: 8px;
}

.lemon-icon-popover__grid {
	display: grid;
	grid-template-columns: repeat( 6, 1fr );
	gap: 4px;
	max-height: 220px;
	overflow-y: auto;
}

.lemon-icon-popover__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	color: #2d2d2d;
}
.lemon-icon-popover__item:hover {
	background: #eef8e2;
}
.lemon-icon-popover__item.is-selected {
	background: #a0e311;
	color: #fff;
}

.lemon-icon-popover__empty {
	font-size: 12px;
	color: #767676;
	padding: 8px 4px;
}

.lemon-icon-popover__hint {
	margin: 8px 0 0;
	font-size: 11px;
	color: #9a9a9a;
}
