/* ============================ Cream highlight card ====================== */

.bb-flist {
	padding: 30px 28px;
	border-radius: var(--bb-radius);
	background: var(--bb-cream);
	height: 100%;
}

.bb-flist--white {
	background: #fff;
	box-shadow: var(--bb-shadow-sm);
}

.bb-flist--outline {
	background: transparent;
	border: 1px solid var(--bb-border);
}

.bb-flist--plain {
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.bb-flist__title {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 700;
	color: var(--bb-heading);
}

.bb-flist__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

.bb-flist__item {
	--bb-divider: rgba(14, 33, 72, .08);
}

.bb-flist--dividers .bb-flist__item:not(:last-child) {
	padding-bottom: 22px;
	border-bottom: 1px solid var(--bb-divider);
}

.bb-flist__row {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

a.bb-flist__row:hover .bb-flist__text {
	color: var(--bb-saffron);
}

.bb-flist__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(232, 149, 43, .16);
	color: var(--bb-saffron);
	font-size: 18px;
	flex: none;
	transition: background-color .22s var(--bb-ease), color .22s var(--bb-ease);
}

.bb-flist__icon .bb-icon,
.bb-flist__icon svg {
	width: 1em;
	height: 1em;
}

a.bb-flist__row:hover .bb-flist__icon {
	background: var(--bb-saffron);
	color: #fff;
}

.bb-flist__text {
	color: var(--bb-heading);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
	transition: color .22s var(--bb-ease);
}

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 767px) {
	.bb-flist {
		padding: 24px 20px;
	}

	.bb-flist__list {
		gap: 18px;
	}

	.bb-flist__icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.bb-flist__text {
		font-size: 14.5px;
	}
}
