.yeh-events {
	--yeh-ink: #0b2f45;
	--yeh-accent: #b85f42;
	--yeh-gold: #a77b42;
	--yeh-paper: #fffaf4;
	--yeh-tint: #f5eee5;
	color: #3f3a36;
	overflow: clip;
}

.yeh-breadcrumbs {
	padding-top: clamp(2rem, 5vw, 4.5rem);
}

.yeh-hero {
	padding: clamp(2.5rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
}

.yeh-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.yeh-eyebrow {
	margin: 0 0 .9rem;
	color: var(--yeh-accent);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .2em;
}

.yeh-hero h1,
.yeh-section h2 {
	color: var(--yeh-ink);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	line-height: 1.25;
}

.yeh-hero h1 {
	margin: 0 0 1.5rem;
	font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.yeh-hero__lead {
	font-size: clamp(1.08rem, 1.8vw, 1.35rem);
	line-height: 1.9;
}

.yeh-hero__copy > p:not(.yeh-eyebrow) {
	max-width: 48rem;
}

.yeh-hero__media {
	position: relative;
	margin: 0;
	border-radius: 1.5rem 1.5rem .35rem .35rem;
	overflow: hidden;
	box-shadow: 0 22px 55px rgba(11, 47, 69, .14);
}

.yeh-hero__media::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.yeh-hero__media img {
	display: block;
	width: 100%;
	height: clamp(360px, 48vw, 590px);
	object-fit: cover;
}

.yeh-button-row,
.yeh-text-links {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 1.8rem;
}

.yeh-section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.yeh-section--paper {
	background: var(--yeh-paper);
}

.yeh-section--tint {
	background: var(--yeh-tint);
}

.yeh-section h2 {
	margin: 0 0 clamp(2rem, 4vw, 3.5rem);
	font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.yeh-empty {
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid rgba(167, 123, 66, .22);
	border-radius: 1.25rem;
	background: #fff;
	box-shadow: 0 16px 45px rgba(67, 49, 33, .06);
}

.yeh-empty__title {
	margin-top: 0;
	color: var(--yeh-ink);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(1.35rem, 2.7vw, 2rem);
	font-weight: 700;
}

.yeh-text-links a {
	color: var(--yeh-ink);
	font-weight: 700;
	text-underline-offset: .3em;
}

.yeh-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.yeh-card {
	min-width: 0;
	padding: clamp(1.6rem, 3vw, 2.5rem);
	border-top: 3px solid var(--yeh-gold);
	background: #fff;
	box-shadow: 0 16px 45px rgba(11, 47, 69, .08);
}

.yeh-card__number {
	margin: 0 0 1.4rem;
	color: var(--yeh-accent);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .16em;
}

.yeh-card h3 {
	margin: 0 0 1rem;
	color: var(--yeh-ink);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 1.45rem;
}

.yeh-updates {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

.yeh-updates > div {
	min-width: 0;
}

.yeh-updates h2 {
	max-width: 10em;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
	font-size: clamp(2rem, 3.4vw, 3.25rem);
	line-break: strict;
	overflow-wrap: anywhere;
	white-space: normal;
}

.yeh-update-links {
	display: grid;
	gap: .75rem;
}

.yeh-update-links a {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	padding: 1.1rem 1.25rem;
	border: 1px solid rgba(11, 47, 69, .16);
	border-radius: .75rem;
	background: rgba(255,255,255,.7);
	color: var(--yeh-ink);
	text-decoration: none;
}

.yeh-update-links a::after {
	content: "→";
	font-size: 1.25rem;
}

.yeh-update-links span {
	font-size: .78rem;
	letter-spacing: .08em;
}

.yeh-update-links strong {
	margin-left: auto;
}

@media (max-width: 960px) {
	.yeh-hero__grid,
	.yeh-updates {
		grid-template-columns: 1fr;
	}

	.yeh-hero__media {
		max-width: 760px;
	}
}

@media (max-width: 720px) {
	.yeh-hero {
		padding-top: 2rem;
	}

	.yeh-hero h1 {
		font-size: clamp(2.45rem, 13vw, 4rem);
	}

	.yeh-hero__media img {
		height: min(112vw, 520px);
	}

	.yeh-card-grid {
		grid-template-columns: 1fr;
	}

	.yeh-button-row .button {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.yeh-update-links a {
		align-items: flex-start;
		flex-wrap: wrap;
	}
}
