/* =============================================================================
   Kitchen planning trust bar — mobile/tablet only
   Section: .kplan-trust (20+ års erfaring, 500+ prosjekter, etc.)
   Desktop ≥1025px: unchanged (header-b2b.css)
   ============================================================================= */

/* Desktop ≥1025px: wrapper is transparent — same flex row as before (icon + strong + span) */
@media (min-width: 1025px) {
	.kplan-trust-item__copy {
		display: contents;
	}
}

/* ── Tablet ≤1024px: 2-column grid ─────────────────────────────────────────── */
@media (max-width: 1024px) {

	.kplan-trust {
		margin-top: 48px;
		padding: 28px max(16px, env(safe-area-inset-right, 0)) 32px max(16px, env(safe-area-inset-left, 0));
		box-sizing: border-box;
	}

	.kplan-trust > .wrapper.kplan-trust__inner {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 20px;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto;
		padding: 0;
		justify-content: stretch !important;
		align-items: stretch;
		flex-wrap: nowrap !important;
	}

	.kplan-trust-sep {
		display: none !important;
	}

	.kplan-trust-item {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		flex: none !important;
		width: 100%;
		min-width: 0;
		min-height: 72px;
		padding: 14px 12px;
		box-sizing: border-box;
		background: #fff;
		border: 1px solid #e8ecf0;
		border-radius: 8px;
	}

	.kplan-trust-item svg {
		width: 26px;
		height: 26px;
		min-width: 26px;
		flex-shrink: 0;
		align-self: center;
	}

	.kplan-trust-item__copy {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 3px;
		flex: 1;
		min-width: 0;
	}

	.kplan-trust-item__copy strong,
	.kplan-trust-item__copy span {
		display: block;
		line-height: 1.3;
	}

	.kplan-trust-item__copy strong {
		font-size: clamp(16px, 4vw, 18px);
		font-weight: 800;
		color: #0c1c2e;
		word-break: break-word;
	}

	.kplan-trust-item__copy span {
		font-size: clamp(13px, 3.5vw, 15px);
		color: #5d6b7a;
		line-height: 1.4;
		word-break: break-word;
	}
}

/* ── Mobile ≤640px: single column stack ─────────────────────────────────────── */
@media (max-width: 640px) {

	.kplan-trust {
		margin-top: 40px;
		padding-top: 24px;
		padding-bottom: 28px;
	}

	.kplan-trust > .wrapper.kplan-trust__inner {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.kplan-trust-item {
		min-height: 64px;
		padding: 14px 16px;
	}

	.kplan-trust-item svg {
		width: 28px;
		height: 28px;
		min-width: 28px;
	}
}

/* ── Small phones ≤380px ──────────────────────────────────────────────────── */
@media (max-width: 380px) {

	.kplan-trust-item {
		padding: 12px 14px;
		gap: 10px;
	}

	.kplan-trust-item__copy strong {
		font-size: 16px;
	}

	.kplan-trust-item__copy span {
		font-size: 13px;
	}
}
