/* Home H2 — encabezados de sección */
.h2-section-head {
	margin: 0 0 1.25rem;
}

.h2-section-head--lines {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.h2-section-head__rule {
	flex: 1;
	height: 2px;
	background: #111;
	min-width: 24px;
}

.h2-section-head__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	color: #111;
}

/* Recuadro negro inclinado (líneas, ribbon y columnas); skew compensado en __title-badge-text */
.h2-section-head--lines .h2-section-head__title {
	flex-shrink: 0;
}

.h2-section-head__title-badge {
	display: inline-block;
	background: #000;
	padding: 0.4em 1.15em;
	transform: skewX(-12deg);
}

.h2-section-head__title-badge-text {
	display: inline-block;
	transform: skewX(12deg);
	color: #fff;
	font-style: italic;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.h2-section-head--ribbon {
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
	margin-top: 1rem;
}

.h2-section-head__ribbon {
	display: block;
	margin: 0;
	font-size: 0.85rem;
	font-weight: 800;
	text-align: center;
}

.h2-section-head--ribbon .h2-section-head__title-badge-text {
	letter-spacing: 0.06em;
}

.h2-stack {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.h2-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.h2-list--compact li {
	margin-bottom: 0.65rem;
}

.h2-list__row {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
}

.h2-list__row:hover .h2-list__text {
	opacity: 0.8;
}

.h2-list__thumb {
	flex: 0 0 72px;
	overflow: hidden;
	background: #eee;
}

.h2-list__thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.h2-list__text {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
}

.h2-grid--cultura {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
	gap: clamp(0.75rem, 2vw, 1.25rem);
	align-items: start;
}

.h2-grid--cultura .h2-col--cultura-center {
	order: 2;
}

@media screen and (min-width: 1101px) {
	.h2-grid--cultura .h2-col:first-child {
		order: 1;
	}
	.h2-grid--cultura .h2-col:last-child {
		order: 3;
	}
}

@media screen and (max-width: 1100px) {
	.h2-grid--cultura {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.h2-grid--cultura .h2-col:last-child {
		grid-column: 1 / -1;
	}
}

@media screen and (max-width: 782px) {
	.h2-grid--cultura {
		grid-template-columns: minmax(0, 1fr);
	}

	.h2-grid--cultura .h2-col:last-child {
		grid-column: auto;
	}
}
