/**
 * The food-type inner pages and the offers band.
 *
 * Both reuse the dish card from the menu page (.bh-dish, .bh-menugrid), so
 * only the wrappers and the pieces unique to these two views live here.
 */

/* --- Food type inner page ------------------------------------------------ */

.bh-foodtype {
	padding-block: clamp(3rem, 6vw, 5rem);
}

.bh-foodtype__intro {
	max-width: 60ch;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.bh-foodtype__intro p {
	margin: 0.75rem 0 0;
	color: var(--bh-text);
}

.bh-foodtype__count {
	font-size: 0.82rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bh-gold);
}

.bh-foodtype__course {
	margin: clamp(2rem, 4vw, 3rem) 0 1.25rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid var(--bh-border);
	font-family: var(--bh-display);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 500;
	color: var(--bh-white);
}

.bh-foodtype__course::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 1px;
	margin-top: 0.6rem;
	background: linear-gradient(90deg, var(--bh-gold), transparent);
}

.bh-foodtype__empty {
	text-align: center;
	color: var(--bh-text);
}

/* Sideways navigation to neighbouring parts of the board. */

.bh-foodtype__more {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	border-top: 1px solid var(--bh-border);
	text-align: center;
}

.bh-foodtype__more .bh-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.bh-foodtype__more .bh-pill {
	display: inline-block;
	padding: 0.55rem 1.3rem;
	border: 1px solid var(--bh-border);
	border-radius: 999px;
	color: var(--bh-white);
	font-size: 0.92rem;
	transition: var(--bh-ease);
}

.bh-foodtype__more .bh-pill:hover,
.bh-foodtype__more .bh-pill:focus-visible {
	border-color: var(--bh-gold);
	color: var(--bh-gold);
}
