/**
 * Credentials Badge Styles
 *
 * Styles for industry awards and credentials display in footer
 *
 * @package Refinery_Hair
 */

/* ============================================
   Footer Credentials Section
   ============================================ */

.footer-credentials {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credentials-badge {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ============================================
   Badge Link & Image
   ============================================ */

.badge-link {
	display: inline-block;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.badge-link:hover,
.badge-link:focus {
	transform: scale(1.05);
	opacity: 0.9;
}

.badge-link:focus {
	outline: 2px solid var(--color-accent, #ECA651);
	outline-offset: 4px;
}

.badge-image {
	max-width: 150px;
	max-height: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(1.1);
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 768px) {
	.footer-credentials {
		padding: 24px 0;
		margin-top: 24px;
	}

	.badge-image {
		max-width: 120px;
		max-height: 80px;
	}
}

@media (max-width: 480px) {
	.footer-credentials {
		padding: 20px 0;
		margin-top: 20px;
	}

	.badge-image {
		max-width: 100px;
		max-height: 70px;
	}
}
