/* ── City page hero ───────────────────────────────────────────────
 * Shared by the Los Angeles and New York page templates. Stacks: the KH
 * locale lockup on top, then the character art (.city-hero__art), then a
 * two-column row placing the "Manga Meets in …" headline left and the
 * intro copy right, over the city's dark background image (picked by the
 * .city-hero--la / .city-hero--ny modifier). Extracted from la-page.css
 * when the NY page adopted the same hero.
 * ────────────────────────────────────────────────────────────────── */

.city-hero {
	background-color: var(--color-black);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	padding: var(--space-07) 0;
}

.city-hero--la {
	background-image: image-set(url(../../assets/kodanshahouse-background--los-angeles.avif) type("image/avif"), url(../../assets/kodanshahouse-background--los-angeles.webp) type("image/webp"), url(../../assets/kodanshahouse-background--los-angeles.png) type("image/png"));
}

.city-hero--ny {
	background-image: image-set(url(../../assets/kodanshahouse-background--new-york.avif) type("image/avif"), url(../../assets/kodanshahouse-background--new-york.webp) type("image/webp"), url(../../assets/kodanshahouse-background--new-york.png) type("image/png"));
}

.city-hero__inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-06);
}

.city-hero__locale {
	display: block;
	width: 100%;
	max-width: 14rem;
	height: auto;
	fill: var(--color-white);
}

.city-hero__locale path {
	fill: inherit;
}

.city-hero__art {
	display: block;
	width: 100%;
}

.city-hero__art-img {
	display: block;
	width: 100%;
	height: auto;
}

/* Artwork renders at its natural size, centered, instead of being stretched
   soft; it still shrinks on small screens. */
.city-hero__art--natural .city-hero__art-img {
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}

.city-hero__columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	gap: var(--space-06);
}

.city-hero__headline {
	margin: 0;
	color: var(--color-white);
	font-size: 5rem; /* 80px — family + tracking from .kodansha-black */
	line-height: 1.1;
}

.city-hero__body p {
	margin: 0 0 1rem;
	font-family: Maax;
	font-size: 1.3rem;
	line-height: 1.3; /* 130% */
	color: var(--color-gray-mid);
}

@media (max-width: 900px) {

	.city-hero__columns {
		grid-template-columns: 1fr;
		gap: var(--space-05);
	}

	.city-hero__headline {
		font-size: clamp(2.75rem, 9vw, 5rem);
	}
}
