.lemon-link-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba( 0, 0, 0, 0.04 );
}
a.lemon-link-card:hover {
	box-shadow: 0 8px 18px rgba( 0, 0, 0, 0.08 );
}

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

.lemon-link-card__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.lemon-link-card__line1 {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.lemon-link-card__line2 {
	font-size: 13px;
	line-height: 1.3;
}

.lemon-link-card__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-left: auto;
	color: #9aa1a9;
}
.lemon-link-card__arrow svg {
	width: 100%;
	height: 100%;
}

/* ---- 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;
}
