.bnzh-branch-profile {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding: clamp(1.5rem, 4vw, 3rem);
	border-top: 2px solid var(--bnzh-brand-gold);
	background: var(--bnzh-tint);
}

.bnzh-branch-profile__intro h2 {
	margin: .3rem 0 1rem;
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	font-weight: 500;
}

.bnzh-branch-profile__intro > p:not(.bnzh-eyebrow) {
	max-width: 48rem;
	margin-bottom: 0;
	color: var(--bnzh-muted);
}

.bnzh-branch-contact {
	padding-left: clamp(0rem, 3vw, 2rem);
	border-left: 1px solid var(--bnzh-line);
}

.bnzh-branch-contact h3 {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 800;
}

.bnzh-branch-contact dl {
	display: grid;
	gap: .8rem;
	margin: 0;
}

.bnzh-branch-contact dl > div {
	display: grid;
	grid-template-columns: 105px minmax(0, 1fr);
	gap: .75rem;
}

.bnzh-branch-contact dt {
	color: var(--bnzh-muted);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.bnzh-branch-contact dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.bnzh-branch-directory {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--bnzh-line);
}

.bnzh-branch-directory__list {
	display: grid;
	gap: 1.5rem;
}

.bnzh-branch-row {
	display: grid;
	grid-template-columns: minmax(320px, 2fr) repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.bnzh-branch-row__main,
.bnzh-branch-row__post {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--bnzh-line);
	background: var(--bnzh-surface);
	overflow: hidden;
	overflow-wrap: anywhere;
}

.bnzh-branch-row__image,
.bnzh-branch-row__post-image {
	display: block;
	flex-shrink: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--bnzh-tint);
}

.bnzh-branch-row__post-image {
	aspect-ratio: 16 / 10;
}

.bnzh-branch-row__image img,
.bnzh-branch-row__post-image img,
.bnzh-branch-row__post-image .bnzh-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bnzh-branch-row__image img,
.bnzh-branch-row__post-image img {
	display: block;
}

.bnzh-branch-row__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: .55rem;
	padding: 1rem 1.1rem 1.1rem;
}

.bnzh-branch-row__content .bnzh-eyebrow {
	margin: 0;
}

.bnzh-branch-row__content h3 {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 600;
}

.bnzh-branch-row__content h3 a,
.bnzh-branch-row__post-body h4 a {
	color: var(--bnzh-text);
	text-decoration: none;
}

.bnzh-branch-row__content h3 a:hover,
.bnzh-branch-row__post-body h4 a:hover {
	text-decoration: underline;
	text-decoration-color: var(--bnzh-brand-gold);
	text-underline-offset: .16em;
}

.bnzh-branch-row__summary {
	margin: 0;
	color: var(--bnzh-muted);
	font-size: .9rem;
	line-height: 1.5;
}

.bnzh-branch-row__meta {
	display: grid;
	gap: .3rem;
	margin-top: .25rem;
	color: var(--bnzh-muted);
	font-size: .8rem;
}

.bnzh-branch-row__meta a {
	font-weight: 700;
}

.bnzh-branch-row__content .bnzh-text-link {
	margin-top: auto;
	padding-top: .6rem;
}

.bnzh-branch-row__post-body {
	padding: .8rem .9rem 1rem;
}

.bnzh-branch-row__post-body h4 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.bnzh-branch-row__post-body time {
	display: block;
	margin-top: .5rem;
	color: var(--bnzh-muted);
	font-size: .7rem;
}

@media (max-width: 1100px) {
	.bnzh-branch-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bnzh-branch-row__main {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.bnzh-branch-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.bnzh-branch-row__main {
		grid-column: auto;
	}
}

.bnzh-home-branches__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.bnzh-home-branch {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--bnzh-line);
	border-top: 3px solid var(--bnzh-brand-gold);
	background: var(--bnzh-surface);
}

.bnzh-home-branch__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--bnzh-tint);
}

.bnzh-home-branch__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bnzh-home-branch__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.bnzh-home-branch h3 {
	margin: .2rem 0 .75rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.bnzh-home-branch h3 a {
	color: var(--bnzh-text);
	text-decoration: none;
}

.bnzh-home-branch h3 a:hover {
	text-decoration: underline;
	text-decoration-color: var(--bnzh-brand-gold);
	text-underline-offset: .15em;
}

.bnzh-home-branch__summary {
	margin: 0 0 .9rem;
	color: var(--bnzh-muted);
	font-size: .9rem;
}

.bnzh-home-branch__contact {
	margin: 0 0 1rem;
	color: var(--bnzh-muted);
	font-size: .78rem;
	overflow-wrap: anywhere;
}

.bnzh-home-branch__updates {
	margin: .25rem 0 1.1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--bnzh-line);
}

.bnzh-home-branch__updates-label {
	margin: 0 0 .55rem;
	color: var(--bnzh-muted);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.bnzh-home-branch__updates ul {
	display: grid;
	gap: .65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bnzh-home-branch__updates li {
	display: grid;
	gap: .2rem;
}

.bnzh-home-branch__updates li a {
	color: var(--bnzh-text);
	font-family: var(--bnzh-serif);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
}

.bnzh-home-branch__updates li a:hover {
	text-decoration: underline;
}

.bnzh-home-branch__updates time {
	color: var(--bnzh-muted);
	font-size: .7rem;
}

.bnzh-home-branch .bnzh-text-link {
	margin-top: auto;
}

.bnzh-institutional--solo {
	grid-template-columns: 1fr;
}

@media (max-width: 900px) {
	.bnzh-home-branches__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bnzh-branch-profile {
		grid-template-columns: 1fr;
	}

	.bnzh-branch-contact {
		padding-left: 0;
		padding-top: 1.25rem;
		border-top: 1px solid var(--bnzh-line);
		border-left: 0;
	}
}

@media (max-width: 650px) {
	.bnzh-home-branches__grid {
		grid-template-columns: 1fr;
	}

	.bnzh-branch-contact dl > div {
		grid-template-columns: 1fr;
		gap: .2rem;
	}
}
