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

/* ── Generic Section Helpers ── */
.doc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--plum-700);
	margin-bottom: 13px;
}

.doc-eyebrow::before {
	content: '';
	width: 18px;
	height: 2px;
	background: var(--sage-600);
	display: inline-block;
}

.doc-section h3.doc-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(30px, 3.6vw, 42px);
	line-height: 1.16;
	color: var(--ink-900);
	margin: 0;
}

.doc-section h3.doc-title em { font-style: italic; font-weight: 600; color: var(--plum-700); }

.doc-section p.doc-sub {
	color: var(--gray-600);
	font-size: 14.5px;
	margin-top: 10px;
	max-width: 600px;
	line-height: 1.7;
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.doc-dark-panel {
	background: linear-gradient(160deg, var(--plum-950), var(--plum-900));
	border-radius: var(--r-lg);
	padding: 40px 36px;
	color: #fff;
	margin-top: 28px;
}

/* ── Quick Facts ── */
.quickfacts {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 26px;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
}

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

.quickfact-row:last-child { border-bottom: none; }
.quickfact-row:hover { background: var(--paper-50); }

.quickfact-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--blush-100);
	color: var(--plum-700);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.quickfact-icon .icon { width: 19px; height: 19px; }
.quickfact-text h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; color: var(--ink-900); }
.quickfact-text p { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; margin: 0; }

.quickfact-pill {
	margin-left: auto;
	flex-shrink: 0;
	align-self: center;
	background: var(--paper);
	color: var(--plum-700);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
	padding: 7px 13px;
	border-radius: var(--r-pill, 999px);
	white-space: nowrap;
}
