.ims-logo-item {
	flex: 0 0 auto;
	width: 150px;
	height: 76px;
	background: #ffffff;
	border: 1px solid #e0e6ef;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ims-logo-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(26, 42, 74, 0.12);
}

.ims-logo-item img {
	max-height: 48px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	filter: grayscale(45%);
	opacity: 0.85;
	transition: filter 0.25s ease, opacity 0.25s ease;
}

.ims-logo-item:hover img {
	filter: grayscale(0);
	opacity: 1;
}
