/* =============================================================
   Global Partners Grid — snippet-6500
   ============================================================= */

.gpg-c1d2e3f4-wrapper {
	font-family: "Quicksand", sans-serif;
	padding: 80px 0;
}

/* Title */
.gpg-c1d2e3f4-title-wrap {
	margin-bottom: 32px;
}

.gpg-c1d2e3f4-title {
	font-family: "Quicksand", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #222222;
	margin: 0 0 0 0;
	line-height: 1.2;
}

/* Bordered grid — mirrors the reference "table" layout */
.gpg-c1d2e3f4-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
}

.gpg-c1d2e3f4-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 24px 20px;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	background: #ffffff;
	transition: background 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
}

.gpg-c1d2e3f4-cell:hover {
	background: #f9fffe;
	box-shadow: inset 0 -3px 0 #01A368;
}

.gpg-c1d2e3f4-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.gpg-c1d2e3f4-logo {
	max-width: 100%;
	max-height: 64px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.gpg-c1d2e3f4-cell:hover .gpg-c1d2e3f4-logo {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

.gpg-c1d2e3f4-name {
	font-family: "Quicksand", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #555555;
	text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
	.gpg-c1d2e3f4-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.gpg-c1d2e3f4-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gpg-c1d2e3f4-title {
		font-size: 24px;
	}
}
