.exhibitors-section {
	padding: 40px 0;
}

.exhibitors-header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

.exhibitors-title {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
}

.exhibitors-count {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.exhibitors-filters {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
	padding: 16px;
	background: #f7f5f2;
	border-radius: 8px;
}

.exhibitors-filter {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.exhibitors-filter label {
	font-size: 13px;
	font-weight: 600;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.exhibitors-filter input,
.exhibitors-filter select {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #d8d3cb;
	border-radius: 6px;
	background: #fff;
	font-size: 15px;
	color: #222;
}

.exhibitors-filter input:focus,
.exhibitors-filter select:focus {
	outline: none;
	border-color: #a54843;
	box-shadow: 0 0 0 3px rgba(165, 72, 67, 0.15);
}

.exhibitors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}

.exhibitor-card {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 14px;
	background: #fff;
	border: 1px solid #ece8e2;
	border-radius: 8px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.exhibitor-card,
a.exhibitor-card:hover,
a.exhibitor-card:focus,
a.exhibitor-card:visited {
	color: inherit;
	text-decoration: none;
}

a.exhibitor-card-link {
	cursor: pointer;
}

.exhibitor-card:hover {
	border-color: #d2cac0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.exhibitor-card[hidden] {
	display: none;
}

.exhibitor-logo {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: linear-gradient(135deg, #f2d086 0%, #d99c4a 100%);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.5px;
	overflow: hidden;
}

.exhibitor-logo:has(img) {
	background: #fff;
	border: 1px solid #ece8e2;
}

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

.exhibitor-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.exhibitor-stand {
	font-size: 12px;
	color: #777;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.exhibitor-stand strong {
	color: #a54843;
	font-weight: 700;
}

.exhibitor-name {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #222;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.exhibitor-branche {
	font-size: 13px;
	color: #555;
}

.exhibitors-empty {
	margin: 24px 0;
	padding: 20px;
	text-align: center;
	color: #888;
	background: #f7f5f2;
	border-radius: 6px;
}

.exhibitors-loadmore {
	margin-top: 24px;
	text-align: center;
}

@media (max-width: 600px) {
	.exhibitors-filters {
		grid-template-columns: 1fr;
	}

	.exhibitors-grid {
		grid-template-columns: 1fr;
	}
}
