/* Exhibition Stall Designs — card grid
   Class prefix: iexh- (per existing site convention)
   Brand accent: #F4A215
   Edit freely — this file is loaded on any page using [exhibition_stalls] */

.iexh-stall-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
	margin: 24px 0;
}

.iexh-stall-grid.iexh-cols-2 { grid-template-columns: repeat(2, 1fr); }
.iexh-stall-grid.iexh-cols-3 { grid-template-columns: repeat(3, 1fr); }
.iexh-stall-grid.iexh-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
	.iexh-stall-grid,
	.iexh-stall-grid.iexh-cols-3,
	.iexh-stall-grid.iexh-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.iexh-stall-grid,
	.iexh-stall-grid.iexh-cols-2,
	.iexh-stall-grid.iexh-cols-3,
	.iexh-stall-grid.iexh-cols-4 {
		grid-template-columns: 1fr;
	}
}

.iexh-stall-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iexh-stall-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.iexh-stall-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.iexh-stall-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.iexh-stall-card__body {
	padding: 18px 20px 22px;
}

.iexh-stall-card__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 12px;
	text-transform: uppercase;
	color: #1a1a1a;
}

.iexh-stall-card__title a {
	color: inherit;
	text-decoration: none;
}

.iexh-stall-card__meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.iexh-stall-card__size {
	color: #F4A215;
	font-weight: 700;
	font-size: 15px;
}

.iexh-stall-card__location {
	color: #6b7280;
	font-size: 14px;
}

.iexh-stall-card__event {
	color: #0d9488;
	font-size: 14px;
	font-weight: 500;
}

.iexh-no-stalls {
	text-align: center;
	color: #6b7280;
	padding: 40px 0;
}
