/**
 * Buyer-protection banner.
 *
 * Shown on listing detail pages and seller profiles when the seller has a
 * protection plan assigned. Enqueued via inc/scripts.php.
 *
 * @package SkatesPK_Core
 */

.skpk-protection-banner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	margin: 0 0 20px;
	background: #E8F5EC;
	border: 1px solid #B7E0C4;
	border-left: 4px solid #1E9E54;
	border-radius: 10px;
	color: #14532D;
}

.skpk-protection-banner__icon {
	flex: 0 0 auto;
	color: #1E9E54;
	line-height: 0;
	margin-top: 2px;
}

.skpk-protection-banner__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.skpk-protection-banner__title {
	font-family: "Poppins", "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}

.skpk-protection-banner__amount {
	color: #1E9E54;
	font-weight: 700;
}

.skpk-protection-banner__text {
	font-size: 13px;
	line-height: 1.5;
	color: #2F6B47;
}

/* Compact variant — tighter spacing for sidebars / cards. */
.skpk-protection-banner--compact {
	padding: 10px 12px;
	gap: 10px;
	margin-bottom: 14px;
}

.skpk-protection-banner--compact .skpk-protection-banner__icon svg {
	width: 22px;
	height: 22px;
}

.skpk-protection-banner--compact .skpk-protection-banner__title {
	font-size: 14px;
}

.skpk-protection-banner--compact .skpk-protection-banner__text {
	font-size: 12px;
}
