.sponsors-wrapper {
	background: white;
	border-radius: .4rem;
	padding: 1rem;
	margin: -.2rem auto 2rem;
	text-align: center;
}

.sponsors-wrapper h3 {
	color: var(--nerd-mustard);
	font-family: var(--title-font);
	font-size: 2rem;
	letter-spacing: .6rem;
	line-height: 1;
	margin: 3rem auto 1rem;
}

.sponsors-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	padding: 1rem 0;
}

.sponsors-row a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 200px;
	padding: 1rem;
	transition: transform 0.2s ease;
}

.sponsors-row a:hover {
	transform: scale(1.05);
}

.card-img-top {
	background-color: white;
	border-radius: 4px;
	max-height: 80px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.sponsors-wrapper .btn {
	display: inline-block;
	margin-block: 2rem;
}

@media (max-width: 768px) {
	.sponsors-row a {
		width: 160px;
		height: 80px;
	}

	.card-img-top {
		max-height: 60px;
	}

	.sponsors-row {
		gap: 1.5rem;
	}
}

@media (max-width: 480px) {
	.sponsors-row a {
		width: 120px;
		height: 60px;
	}

	.card-img-top {
		max-height: 40px;
	}

	.sponsors-row {
		gap: 1rem;
	}
}