.bienal-grilla-wrap {
	width: 100%;
	box-sizing: border-box;
}

.bienal-grilla-wrap *,
.bienal-grilla-wrap *::before,
.bienal-grilla-wrap *::after {
	box-sizing: border-box;
}

/* Tabs de filtro (Lunes 5, Martes 6, etc.) */
.bienal-grilla-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0 0 16px;
	border-bottom: 1px solid #e2e2e2;
	justify-content: center;
}

.bienal-grilla-tab {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #999;
	padding: 6px 2px;
	transition: color 0.15s ease;
}

.bienal-grilla-tab:hover {
	color: #333;
}

.bienal-grilla-tab.is-active {
	color: #111;
	border-bottom: 2px solid #111;
}

/* Grid de 3 columnas */
.bienal-grilla {
	display: grid;
	grid-template-columns: repeat(var(--bienal-grilla-columnas, 3), 1fr);
	gap: 32px 28px;
}

.bienal-grilla-item {
	display: none;
}

.bienal-grilla-item.is-visible {
	display: block;
}

.bienal-grilla-item__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bienal-grilla-item__imagen {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	margin-bottom: 16px;
	background: #f2f2f2;
}

.bienal-grilla-item__imagen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}

.bienal-grilla-item__link:hover .bienal-grilla-item__imagen img {
	transform: scale(1.03);
}

.bienal-grilla-item__imagen-placeholder {
	width: 100%;
	height: 100%;
	background: #f2f2f2;
}

.bienal-grilla-item__titulo {
	font-size: 20px;
	line-height: 1.25;
	font-weight: 600;
	margin: 0 0 8px;
	color: #111;
}

.bienal-grilla-item__bajada {
	font-size: 15px;
	line-height: 1.5;
	color: #555;
}

/* Responsive */
@media (max-width: 992px) {
	.bienal-grilla {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.bienal-grilla-tabs {
		gap: 8px 18px;
	}
}
