.brands-showcase {
	margin: 2rem auto 6rem;
}

.brands-showcase__footnote {
	margin-top: 2rem;
	font-size: 0.75rem;
	line-height: 0.8rem;
}

.brands-showcase__inner {
	width: min(100%, 74rem);
	margin: 0 auto;
	text-align: center;
}


.brands-showcase__subheader {
	line-height: 1.5;
}

.brands-showcase__title-underline {
	text-decoration: underline;
	text-decoration-color: var(--brands-title-underline-color, var(--global-title-underline-color, currentColor));
	text-decoration-thickness: var(--title-underline-thickness, 0.313rem);
	text-underline-offset: var(--title-underline-offset, 0.5rem);
	
}

.brands-showcase__text {
	max-width: 38rem;
	margin: 0 auto 2rem;
	line-height: 1.65;
}

.brands-showcase__text > *:first-child {
	margin-top: 0;
}

.brands-showcase__text > *:last-child {
	margin-bottom: 0;
}

.brands-showcase__logos {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	margin: 0 auto 2rem;
	padding: 1.75rem 2rem;
}

.brands-showcase__logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4.5rem;
}

.brands-showcase__logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.brands-showcase__logo-link:focus-visible {
	outline: 2px solid #1b1c1a;
	outline-offset: 4px;
}

.brands-showcase__logo-image {
	display: block;
	max-width: 13rem;
	width: auto;
	height: auto;
	max-height: 12rem;
	object-fit: contain;
}

.brands-showcase__logo-text {
	display: inline-block;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1b1c1a;
}

.brands-showcase__actions {
	display: flex;
	justify-content: center;
}


// used outline-btn style due to blue color render bug

.brands-showcase__button {
  background: transparent;
  border-color: #1c1c1e;
  border-style: solid;
  border-width: 1px;
  color: #1c1c1e;
}

.brands-showcase__button:hover {
  background: #E4DFDC;
  color: #1c1c1e99;
  border-style: solid;
  border-color: #E4DFDC;
  border-width: 1px;
}

.brands-showcase__button:focus {
  background: #D5CECA;
  color: #1c1c1e;
  border-style: solid;
  border-color: #D5CECA;
  border-width: 1px;
}

.brands-showcase__button:disabled {
  background: #D5CECA;
  color: #1c1c1e;
  border-style: solid;
  border-color: #1c1c1e;
  border-width: 1px;
}

@media (max-width: 767px) {
	.brands-showcase {
		padding: 0;
		margin: 2rem auto;
	}

	.brands-showcase__text {
		margin-bottom: 1.5rem;
	}

	.brands-showcase__logos {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem 1rem;
	}

	.brands-showcase__logo-image {
		max-width: 12rem;
		max-height: 11rem;
	}
}
