.influencers-hero {
	padding: 120px 24px 52px;
	text-align: center;
	background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
}

.influencers-hero h1 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	margin-bottom: 12px;
}

.influencers-hero h1 span {
	color: var(--accent);
}

.influencers-hero p {
	max-width: 560px;
	margin: 0 auto;
	color: var(--fg-muted);
}

.influencers-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px;
}

.filters-wrapper {
	--filter-panel-grid-min: 180px;
	margin-bottom: 24px;
}

.search-row {
	gap: 12px;
}

.search-box.city-box {
	max-width: 260px;
}

.active-filters {
	margin-bottom: 16px;
}

.collection-intro {
	margin-bottom: 14px;
	color: var(--fg-dim);
	font-size: 0.9rem;
	line-height: 1.6;
}

.sort-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.sort-bar > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	width: 100%;
}

.sort-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sort-label {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--fg-muted);
	white-space: nowrap;
}

.influencers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
	align-items: stretch;
}

.influencers-grid .influencer-card-modern {
	height: 100%;
}

.empty-state {
	display: none;
	padding: 64px 24px;
	text-align: center;
}

.empty-state-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.empty-state h3 {
	margin-bottom: 10px;
}

.empty-state p {
	margin-bottom: 20px;
	color: var(--fg-muted);
}

.load-more-container {
	text-align: center;
	margin-top: 32px;
}

.loading-spinner {
	display: inline-block;
	width: 36px;
	height: 36px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 920px) {
	.influencers-container {
		padding: 18px 14px 24px;
	}

	.sort-bar {
		justify-content: stretch;
	}
}

@media (max-width: 640px) {
	.influencers-hero {
		padding: 120px 16px 44px;
	}

	.search-box.city-box {
		max-width: none;
	}

	.sort-wrapper,
	#sort-filter {
		width: 100%;
	}

	#sort-filter {
		min-width: 100% !important;
	}
}
