.fsl-list {
	--fsl-accent: #76c043;
	--fsl-columns: 1;
	--fsl-gap: 18px;
	--fsl-hover-bg: rgba(118, 192, 67, 0.08);
	display: grid;
	grid-template-columns: repeat(var(--fsl-columns), minmax(0, 1fr));
	gap: var(--fsl-gap);
	counter-reset: fsl-counter;
}

.fsl-item {
	min-width: 0;
}

.fsl-item-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 14px;
	text-decoration: none;
	border-radius: 10px;
	transition: background-color 180ms ease, transform 180ms ease;
}

.fsl-item-inner:hover,
.fsl-item-inner:focus-visible {
	background: var(--fsl-hover-bg);
}

.fsl-hover-lift .fsl-item-inner:hover,
.fsl-hover-lift .fsl-item-inner:focus-visible {
	transform: translateY(-2px);
}

.fsl-has-dividers .fsl-item-inner {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(51, 49, 50, 0.16);
}

.fsl-marker {
	display: inline-grid;
	place-items: center;
	min-width: var(--fsl-marker-size, 28px);
	min-height: var(--fsl-marker-size, 28px);
	color: var(--fsl-accent);
	font-weight: 800;
	line-height: 1;
	font-size: 15px;
}

.fsl-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.fsl-title,
.fsl-description {
	display: block;
}

.fsl-title {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.fsl-description {
	font-size: 15px;
	line-height: 1.55;
}

.fsl-style-slash .fsl-marker {
	font-size: 0;
}

.fsl-style-slash .fsl-marker::before {
	content: '';
	display: block;
	width: 8px;
	height: 30px;
	background: var(--fsl-accent);
	transform: skew(-18deg);
}

.fsl-style-dot .fsl-marker {
	font-size: 0;
	min-width: 20px;
}

.fsl-style-dot .fsl-marker::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--fsl-accent);
}

.fsl-style-line .fsl-marker {
	font-size: 0;
	min-width: 32px;
	justify-content: start;
}

.fsl-style-line .fsl-marker::before {
	content: '';
	width: 28px;
	height: 3px;
	background: var(--fsl-accent);
}

.fsl-style-number .fsl-marker {
	font-variant-numeric: tabular-nums;
}


.fsl-style-chevron .fsl-marker,
.fsl-style-arrow .fsl-marker,
.fsl-style-check .fsl-marker,
.fsl-style-plus .fsl-marker,
.fsl-style-square .fsl-marker,
.fsl-style-custom .fsl-marker {
	font-size: 0;
}

.fsl-style-chevron .fsl-marker::before {
	content: '';
	width: calc(var(--fsl-marker-size, 28px) * 0.42);
	height: calc(var(--fsl-marker-size, 28px) * 0.42);
	border-top: 3px solid var(--fsl-accent);
	border-right: 3px solid var(--fsl-accent);
	transform: rotate(45deg);
}

.fsl-style-arrow .fsl-marker::before {
	content: '→';
	font-size: calc(var(--fsl-marker-size, 28px) * 0.82);
	font-weight: 900;
	line-height: 1;
	color: var(--fsl-accent);
}

.fsl-style-check .fsl-marker::before {
	content: '✓';
	font-size: calc(var(--fsl-marker-size, 28px) * 0.72);
	font-weight: 900;
	line-height: 1;
	color: var(--fsl-accent);
}

.fsl-style-plus .fsl-marker::before,
.fsl-style-plus .fsl-marker::after {
	content: '';
	position: absolute;
	background: var(--fsl-accent);
}

.fsl-style-plus .fsl-marker {
	position: relative;
}

.fsl-style-plus .fsl-marker::before {
	width: calc(var(--fsl-marker-size, 28px) * 0.58);
	height: 3px;
}

.fsl-style-plus .fsl-marker::after {
	width: 3px;
	height: calc(var(--fsl-marker-size, 28px) * 0.58);
}

.fsl-style-square .fsl-marker::before {
	content: '';
	width: calc(var(--fsl-marker-size, 28px) * 0.42);
	height: calc(var(--fsl-marker-size, 28px) * 0.42);
	background: var(--fsl-accent);
	transform: rotate(45deg);
}

.fsl-custom-icon {
	display: block;
	width: var(--fsl-marker-size, 28px);
	height: var(--fsl-marker-size, 28px);
	object-fit: contain;
}

.fsl-style-none .fsl-item-inner {
	grid-template-columns: 1fr;
}

.fsl-style-none .fsl-marker {
	display: none;
}


@media (max-width: 767px) {
	.fsl-list {
		grid-template-columns: 1fr;
	}
}
