.vl-licensees {
	--vl-licensees-columns: 4;
	--vl-licensees-gap: 24px;
	--vl-licensees-image-height: 150px;
	color: #1f2933;
}

.vl-licensees__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: end;
	margin: 0 0 32px;
}

.vl-licensees__filter {
	display: grid;
	gap: 6px;
	min-width: min(100%, 220px);
}

.vl-licensees__filter label {
	font-size: 0.875rem;
	font-weight: 700;
}

.vl-licensees__filter select {
	width: 100%;
	min-height: 44px;
	padding: 8px 36px 8px 12px;
	border: 1px solid #c8cdd2;
	border-radius: 3px;
	background-color: #fff;
	color: inherit;
	font: inherit;
}

.vl-licensees__results {
	transition: opacity 160ms ease;
}

.vl-licensees__results[aria-busy="true"] {
	opacity: 0.45;
	pointer-events: none;
}

.vl-licensees__grid {
	display: grid;
	grid-template-columns: repeat(var(--vl-licensees-columns), minmax(0, 1fr));
	gap: var(--vl-licensees-gap);
}

.vl-licensees__card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: #f3f4f5;
	box-shadow: 0 3px 12px rgba(21, 32, 43, 0.1);
	color: inherit;
	text-decoration: none;
}

.vl-licensees__card:is(a):hover,
.vl-licensees__card:is(a):focus-visible {
	color: inherit;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(21, 32, 43, 0.16);
	transform: translateY(-2px);
}

.vl-licensees__card:is(a) {
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.vl-licensees__image {
	display: grid;
	height: var(--vl-licensees-image-height);
	place-items: center;
	background: #fff;
}

.vl-licensees__image:empty {
	background: #fff;
}

.vl-licensees__image img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 12px;
	object-fit: contain;
}

.vl-licensees__content {
	flex: 1;
	padding: 16px;
	background: #f3f4f5;
}

.vl-licensees__title {
	margin: 0 0 18px;
	color: #3f4a58;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}

.vl-licensees__meta,
.vl-licensees__types {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.vl-licensees__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3em;
}

.vl-licensees__types {
	margin-top: 2px;
}

.vl-licensees__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 24px;
	background: #f3f4f5;
	text-align: center;
}

@media (max-width: 1024px) {
	.vl-licensees {
		--vl-licensees-columns: 2;
	}
}

@media (max-width: 767px) {
	.vl-licensees {
		--vl-licensees-columns: 1;
	}

	.vl-licensees__filters {
		display: grid;
	}

	.vl-licensees__filter {
		width: 100%;
	}
}
