.connection-hub {
	padding: 90px 0;
  overflow: visible;
}

.connection-hub .row {
	align-items: flex-start;
}

.connection-hub__filters {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	padding: 30px 20px;
	position: -webkit-sticky;
	position: sticky;
	top: 180px;
	z-index: 10;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
}

.connection-hub__filters-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.connection-hub__filter-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 23.5px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: #063354;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
	background: transparent;
}

.connection-hub__filter-link.is-active,
.connection-hub__filter-link:hover {
	background: #90d9f9;
	border-color: #90d9f9;
	color: #063354;
}

.connection-hub__sections {
	display: flex;
	flex-direction: column;
}

.connection-hub__section {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.connection-hub__section:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.connection-hub__section-title {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.25;
	color: #5e5e5e;
	margin: 0 0 40px;
}

.connection-hub__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.connection-hub__card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	padding: 48px 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.connection-hub__logo {
	position: relative;
	width: max-content;
}

.connection-hub__logo-box {
	width: 69px;
	height: 69px;
	border: 1px solid #e0e0e0;
	border-radius: 4.6px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	overflow: hidden;
}

.connection-hub__logo-box img {
	max-width: 80%;
	max-height: 80%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.connection-hub__logo-text {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #0070b9;
}

.connection-hub__badge {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 22px;
	height: auto;
}

.connection-hub__partner {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.25;
	color: #0070b9;
	margin: 0;
}

.connection-hub__description {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #5e5e5e;
	margin: 0;
}

.connection-hub__empty {
	font-family: "Roboto", sans-serif;
	color: #5e5e5e;
	margin: 0;
}

@media (max-width: 1199.98px) {
	.connection-hub__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.connection-hub {
		padding: 60px 0;
	}

	.connection-hub__filters {
		position: static;
		margin-bottom: 30px;
	}

	.connection-hub__section-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.connection-hub__card {
		padding: 32px 24px;
	}
}

@media (max-width: 767.98px) {
	.connection-hub__cards {
		grid-template-columns: minmax(0, 1fr);
	}
}
