/*
 * Shipping Policy — Overview Quick Facts
 * Depends on: design-tokens.css, log-sp-docs.css
 * Page: body.log-shipping-page
 */

.quickfacts {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
}

.quickfact-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
	transition: background .25s var(--ease);
}

.quickfact-row:last-child {
	border-bottom: none;
}

.quickfact-row:hover {
	background: var(--blush-100);
}

.quickfact-icon {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: var(--blush-100);
	color: var(--plum-700);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .3s var(--ease);
}

.quickfact-row:hover .quickfact-icon {
	transform: scale(1.1) rotate(-6deg);
	background: var(--white);
}

.quickfact-icon .icon {
	width: 18px;
	height: 18px;
}

.quickfact-text {
	flex: 1;
	min-width: 0;
}

.quickfact-text h4 {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink-900);
	font-family: var(--body);
	-webkit-font-smoothing: antialiased;
}

.quickfact-text p {
	font-size: 12.5px;
	color: var(--gray-600);
	line-height: 1.55;
	margin-top: 2px;
	margin-bottom: 0px;
}

.quickfact-pill {
	flex-shrink: 0;
	background: var(--paper);
	color: var(--plum-700);
	font-size: 10.5px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .03em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: var(--r-pill);
	white-space: nowrap;
}

@media(max-width:560px) {
	.quickfact-pill {
		display: none;
	}

	.quickfact-row {
		padding: 13px 14px;
		gap: 12px;
	}
}