/* Love Pharm · Trust badges — layout & styling (RTL, responsive).
 * Rendered by inc/trust-badges/trust-badges.php via [lp_trust]. */

.lp-trust {
	direction: rtl;
	display: grid;
	/* N equal columns (from --lp-trust-cols); minmax(0,1fr) lets cards shrink
	 * fluidly instead of overflowing on narrow widths. */
	grid-template-columns: repeat(var(--lp-trust-cols, 3), minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 24px;
}

.lp-trust__item {
	background: var(--lighter-gray, #F5F6F7);
	padding: 20px 8px 18px;
	text-align: center;
}

.lp-trust__icon svg {
	display: block;
	width: 26px;
	height: 26px;
	margin: 0 auto 12px;
	fill: none;
	stroke: #111;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lp-trust__title {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .2px;
	color: #111;
	margin-bottom: 5px;
}

.lp-trust__sub {
	font-size: 12.5px;
	color: #8a8a8a;
}

/* Mobile: slim the text down to fight line breaks in the 3-across layout. */
@media (max-width: 768px) {
	.lp-trust__title {
		font-size: 12px;
	}
	.lp-trust__sub {
		font-size: 12px;
	}
}

/* Very small screens: stack so titles/subtitles stay readable. */
@media (max-width: 380px) {
	.lp-trust {
		grid-template-columns: 1fr;
	}
}
