/**
 * Fact box.
 *
 * brand.css .es-detail and its .ico-list.
 */

.nysf-factbox {
	position: sticky;
	top: 100px;
	background: var(--nysf-card);
	border: 1px solid var(--nysf-line);
	border-radius: var(--nysf-r-lg);
	padding: 28px;
	box-shadow: var(--nysf-shadow);
}

.nysf-factbox__list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.nysf-factbox__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--nysf-line);
	font-size: 14.5px;
}

.nysf-factbox__list li:last-child {
	border-bottom: 0;
}

.nysf-factbox__icon {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--nysf-light);
	color: var(--nysf-twilight);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nysf-factbox__text b {
	display: block;
	font-family: var(--nysf-display);
	color: var(--nysf-navy);
}

.nysf-factbox__text small {
	color: var(--nysf-ink-soft);
}

/* Full width, because it is the page's primary action. */
.nysf-factbox__cta {
	width: 100%;
	justify-content: center;
}

/* brand.css stacks the quieter action 10px under the gold one. */
.nysf-factbox__cta--second {
	margin-top: 10px;
}

@media (max-width: 880px) {
	/* Stacked, a sticky card would follow the reader up the page. */
	.nysf-factbox {
		position: static;
	}
}
