/* Footer Logo Responsive Behavior */
#footer-company .contact-info .logo {
	display: block;
	margin-bottom: 20px;
	text-align: center;
}

#footer-company .contact-info .logo img {
	object-fit: contain;
	object-position: left center;
}

@media (max-width: 991px) {
	#footer-company .contact-info .logo {
		width: 60px;
		margin: 0 auto 20px auto;
	}

	#footer-company .contact-info .logo img {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 767px) {
	#footer-company .contact-info .logo {
		width: 50px;
		margin: 0 auto 20px auto;
	}

	#footer-company .contact-info .logo img {
		width: 50px;
		height: 50px;
	}
}

/* Hubbell Brand Section */
#footer-hubbell-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#footer-hubbell-brand img {
	width: 150px;
	height: auto;
	object-fit: contain;
	margin-bottom: 12px;
	line-height: 0;
}

#footer-hubbell-brand p {
	margin: 8px 0;
	font-size: 14px;
}

/* Click to learn more link styling */
#footer-hubbell-brand a {
	color: #fddb32;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

#footer-hubbell-brand a:hover {
	opacity: 0.8;
}

#footer-hubbell-brand a:focus {
	outline: 2px solid #fddb32;
	outline-offset: 2px;
	border-radius: 2px;
}

@media (max-width: 767px) {
	#footer-hubbell-brand img {
		width: 120px;
	}
}

