.imh-inspire-speakers__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 35px;
}

.imh-inspire-speakers__filter {
	appearance: none;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	padding: 10px 18px;
	border-radius: 999px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}

.imh-inspire-speakers__filter:hover {
	opacity: .75;
}

.imh-inspire-speakers__filter.is-active {
	background: #000;
	color: #fff;
}

.imh-inspire-speakers__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 30px;
	transition: opacity .2s ease;
}

.imh-inspire-speakers.is-loading .imh-inspire-speakers__grid {
	opacity: .35;
	pointer-events: none;
}

.imh-inspire-speakers__loading {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}

.imh-inspire-speakers__spinner {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, .15);
	border-top-color: #000;
	animation: imh-inspire-speakers-spin .7s linear infinite;
}

@keyframes imh-inspire-speakers-spin {
	to {
		transform: rotate(360deg);
	}
}

.imh-inspire-speakers__empty,
.imh-inspire-speakers__notice {
	grid-column: 1 / -1;
	text-align: center;
	padding: 30px;
}

@media (max-width: 1024px) {
	.imh-inspire-speakers__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.imh-inspire-speakers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.imh-inspire-speakers__filters {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 5px;
	}

	.imh-inspire-speakers__filter {
		flex: 0 0 auto;
	}
}
