/**
 * Trusted Brands panel styles.
 */

.panel-trusted-brands {
	background: #fff;
	padding: 47px 0;
    border-top: 2px solid #F4F4F6;
    border-bottom: 2px solid #F4F4F6;
}

.panel-trusted-brands__inner {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.panel-trusted-brands__rule {
	display: block;
	width: 100%;
	height: 2px;
	margin: 0;
	border: 0;
	background: #f4f4f6;
}

.panel-trusted-brands__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px 48px;
	min-height: 51px;
	padding: 14px 0;
}

.panel-trusted-brands__label {
	flex: 0 0 auto;
	margin: 0;
	max-width: 220px;
	color: var(--ppi-blue, #089ef7);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.panel-trusted-brands__logos {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: 24px 32px;
	min-width: 0;
}

.panel-trusted-brands__logo {
	display: flex;
	flex: 0 1 auto;
	align-items: center;
	justify-content: center;
}

.panel-trusted-brands__logo img {
	display: block;
	max-width: 200px;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.panel-trusted-brands__logo a {
	display: inline-flex;
	align-items: center;
}

@media only screen and (max-width: 991px) {
	.panel-trusted-brands__row {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 0;
	}

	.panel-trusted-brands__logos {
		flex-wrap: wrap;
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.panel-trusted-brands__logo {
	    flex: 1 1 36%;
	}
	.panel-trusted-brands__logo img {
		max-width: 140px;
		max-height: 44px;
	}
}
