
.logo-card {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	padding: 0 1rem;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
	box-sizing: border-box;
	width: 100%;
	height: 100px;
	background-color: rgba(26, 26, 26, 1);
	border: 1px solid rgba(46, 46, 46, 1);
	border-radius: 12px;
}

.logo-card:hover {
	background: linear-gradient(rgba(26, 26, 26, 1), rgba(38, 228, 133, 0.06)) !important;
	border: 1px solid rgba(22, 182, 102, 1) !important
}

.logo-card a {
	text-decoration: none;
	color: inherit;
}

.logo-circle {
	background-color: transparent;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 66px;
	height: 66px;
	border: none;

}

.logo-circle img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.logo-text h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.4em;
	color: #fff;
}

.logo-text p {
	margin: 0;
	font-size: 13px;
	line-height: 1.4em;
	color: #ccc;
}
