:root {
	--max-width: 1300px;
	--gap: 1rem;
	--colour-accent: rgb(255, 157, 0);
}

/* @view-transition {
	navigation: auto;
} */

html {
	scroll-behavior: smooth;
}

h1, h2, h3, li, p {
	max-width: 63ch;
}

header {
	/* position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1000; */

	display: flex;
	gap: .75em;
	justify-content: space-between;
	align-items: center;
	padding: 1.5em 0 .5em;
	/* background-color: rgba(255, 255, 255, .9); */
	/* backdrop-filter: blur(10px); */
	/* margin-top: 1rem; */
	/* & form, fieldset {
		border: 0;
		margin: 0;
		padding: 0;
		font-size: 16px;
		line-height: 110%;
		& input, button {
			-webkit-appearance: none;
			appearance: none;
			padding: 0;
			font: inherit;
			color: inherit;
			font: inherit;
			border: none;
			background: none;
			outline: none;
			cursor: text;
		}
		& button {
			aspect-ratio: 1;
			overflow: hidden;
			border-radius: 1.5em;
			background: rgb(255, 157, 0) url(/icon.search_white.svg) no-repeat 55% 55% / 1em;
			height: 1.75em;
			cursor: pointer;
			text-indent: -99999em;
		}
	}
	& fieldset {
		display: flex;
		background-color: #eeeeee;
		border-radius: 1.5em;
		padding: .2em .2em .2em 1em;
		align-items: center;
	}
	& fieldset:focus-within {
		outline: 2px solid #ffb300;
	} */
	& > a:first-child {
		margin-right: auto;
	}
	& a img {
		display: block;
	}
	& nav a {
		font: inherit;
		font-weight: 500;
		font-size: .8em;
		line-height: 1;
		text-transform: uppercase;
		letter-spacing: .1em;
		color: inherit;
		text-decoration: none;;
	}
	& nav {
		margin-right: 2em;
		@media screen and (max-width: 699px) {
			display: none;
		}
	}
}

form.search {
	border: 0;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 110%;
	display: inline-block;
	position: relative;
	& fieldset {
		border: 0;
		margin: 0;
		padding: 0;
		line-height: 110%;
		display: flex;
		background-color: #eeeeee;
		border-radius: 1.5em;
		padding: .2em .2em .2em .8em;
		align-items: center;
	}
	& fieldset:focus-within {
		outline: 2px solid #ffb300;
	}
	& input, button {
		-webkit-appearance: none;
		appearance: none;
		padding: 0;
		font: inherit;
		color: inherit;
		font: inherit;
		border: none;
		background: none;
		outline: none;
		cursor: text;
		width: 5em;
	}
	& button {
		aspect-ratio: 1;
		overflow: hidden;
		border-radius: 1.5em;
		background: rgb(255, 157, 0) url(/icon.search_white.svg) no-repeat 52% 55% / 1em;
		height: 1.75em;
		width: 3.15em;
		cursor: pointer;
		text-indent: -99999em;
	}
	& .tips {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.35s ease, visibility 0.35s ease;

		position: absolute;
		right: 0;
		top: calc(100% + .5em);
		width: max-content;
		padding: 1em;
		border-radius: 6px;
		box-shadow: 0 .1em .5em rgba(0, 0, 0, .1), 0 .75em 1em rgba(0, 0, 0, .1), 0 1.5em 3em rgba(0, 0, 0, .25);
		max-width: calc(100dvw - 3rem);
		background: rgba(255, 255, 255, .85);
		backdrop-filter: blur(20px);
		z-index: +99999;
	}
	&.focus .tips {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		animation: tips-fade-in 0.35s ease;
		/* animation: tips-fade-in .35s ease; */

	}
}
@keyframes tips-fade-in {
	from {
		opacity: 0;
		transform: translateY(-.5em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
form.search.big {
	font-size: 2rem !important;
}


body {
	font-size: clamp(16px, 3dvw, 18px);
	font-family: "Outfit", "Mona Sans", "Figtree", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 150%;
	color: #222;
	margin: 0;
	background-color: #fff;
	/* padding-inline: var(--gap);
	margin: auto;
	max-width: var(--max-width); */
}

body > * {
	box-sizing: border-box;
	max-width: 100vw;
	padding-left: max(calc(((100vw - var(--max-width)) / 2)), var(--gap)) !important;
	padding-right: max(calc(((100vw - var(--max-width)) / 2)), var(--gap)) !important;
}

h1, h2, h3, h4, h5, b, strong {
	color: #111;
	text-wrap: balance;
	line-height: 120%;
	
	font-family: "Outfit", "Mona Sans", "Figtree", serif;
	font-feature-settings: "ss01";
	font-kerning: auto;
	font-optical-sizing: auto;
	font-palette: normal;
	font-size-adjust: none;
	font-stretch: 100%;
	font-style: normal;
	font-weight: 625;
	letter-spacing: -.015em;
}

h1 {
	font-size: 1.75rem;
	font-weight: 650;
	/* line-height: 110%; */
}
h2 {
	margin-top: 1.5em;
	font-size: 1.35rem;
	/* line-height: 110%; */
}
h3 {
	font-size: 1.2rem;
	/* line-height: 110%; */
}
@media (max-width: 699px) {
	h1 {
		font-size: 1.6rem;
		line-height: 110%;
	}
	h2 {
		font-size: 1.25rem;
		/* line-height: 110%; */
	}
	
}
h1 + h2 {
	font-weight: 400;
	margin-top: -.75em;
	color: #666;
}


h2 > small,
h2 > .keyphrase {
	font-size: .865rem;
	font-weight: 400;
	line-height: 1;
	color: #888;
	letter-spacing: 0.025em;
	display: block;
	/* text-transform: uppercase; */
}

a {
	/* color: rgb(68, 107, 226); */
	color: rgb(255, 157, 0);
	text-decoration-thickness: 1.5px;
	/* text-decoration-color: rgba(68, 107, 226, .33); */
	text-decoration-color: rgba(255, 157, 0, .33);
	text-underline-offset: 1.5px;
	transition: text-decoration-color .35s ease-out;
	&:hover {
		/* text-decoration-color: rgba(68, 107, 226, 1); */
		text-decoration-color: rgba(255, 157, 0, 1);
	}
}

ul a {
	color: cornflowerblue;
	text-decoration-color: cornflowerblue;
	text-decoration-thickness: 1.5px;
	text-decoration: none;
	&:hover {
		text-decoration-color: cornflowerblue;
		text-decoration: underline;
	}
}




address {
	font-style: normal;
}

h1 small,
h1 .keyphrase {
	font-size: .865em;
	display: block;
}
*::first-letter {
    text-transform: capitalize;
}

.Grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-auto-flow: dense;
	gap: var(--gap);
}
.Grid.Shelf {
	/* margin-inline: calc(var(--gap) * -1); */
	overflow-x: scroll;
	grid-auto-flow: column;
	grid-auto-columns: minmax(200px, 1fr);
	grid-template-columns: initial;
	padding-inline: var(--gap);
	scroll-padding-left: var(--gap); /* Ensures first item starts with a gap */
	/* Scroll snapping */
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	& > * {
		scroll-snap-align: start;
	}
}

@media screen and (min-width: 1300px) {
	.Grid.Shelf {
		/* margin-inline: calc((var(--max-width) - 100dvw) / 2); */
		padding-left: calc((100dvw - var(--max-width)) / 2);
		scroll-padding-left: calc((100dvw - var(--max-width)) / 2); /* Ensures first item starts with a gap */
	}
}

@media screen and (max-width: 620px) {
	.Grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}

.Card {
	color: inherit;
	text-decoration: none;
	&:hover h2 {
		text-decoration: underline;
	}
	& > img:first-child {
		filter: contrast(95%)
				saturate(95%)
				brightness(105%)
				sepia(5%)
				hue-rotate(-10deg);
	}
	& > * {
		margin: 0;
		padding-block: .15em;
	}
	& h2, h3 {
		font-size: 1.05rem;
		display: -webkit-box;
		-webkit-line-clamp: 3; /* Limit to 3 lines */
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	& p {
		font-size: .9rem;
		display: -webkit-box;
		-webkit-line-clamp: 3; /* Limit to 3 lines */
		-webkit-box-orient: vertical;
		overflow: hidden;
		line-height: 100%;
		color: #666;
	}
	& img, time {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
		object-position: 50% 50%;
		border-radius: 5px;
		display: block;
		padding: 0;
		background-color: #f5f5f5;
	}
	& time {
		width: 100%;
		height: auto;
		border-radius: 5px;
		border-radius: 100%;
		display: block;
		border: 2px solid rgb(255, 157, 0);
		color: rgb(255, 157, 0);
		box-sizing: border-box;
		background-color: #fff;
		/* background-image: url(https://alculator.app/bubbles.svg), linear-gradient(321deg, rgb(255, 157, 0) 42.02%, rgba(255, 190, 0, 1) 81.93%, rgb(252, 205, 65) 97.06%) !important;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: cover;
		color: #fff; */
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: .85em;
		text-transform: uppercase;
		line-height: 1;
		& big {
			font-size: 1.75rem;
			font-weight: 400;
			line-height: .8;
		}
	}
	& img + *, time + * {
		margin-top: .25rem;
	}
}

.Grid.Mini {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-auto-flow: dense;
	gap: var(--gap);
	& .Card {
		display: grid;
		grid-template-columns: 6rem auto;
		column-gap: .5rem;
		& img {
			grid-row: span 3;
		}
		& div {
			display: flex;
			flex-direction: column;
			gap: .4em;
			& * {
				margin: 0;
				padding: 0;
			}
		}
		/* & img ~ * {
			margin-top: .25rem;
		} */
	}
}


img.PlacePage {
	width: 100%;
	max-width: 800px;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 5px;
}
@media screen and (max-width: 620px) {
	img.PlacePage {
		width: 100dvw;
		border-radius: 0;
		margin-inline: -1.5rem;
	}
}




.Breadcrumbs {
	display: flex;
	gap: .5em;
	font-size: .9rem;
	font-weight: 400;
	color: #666;
	padding-block: .25em 1em;
	overflow-x: auto;
	max-width: 100%;
	& a {
		color: inherit;
		text-decoration: none;
		white-space: nowrap;
		&:hover {
			text-decoration: underline;
		}
	}
}


@media (max-width: 799px) {
	.Halfsy {
		& > img {
			display: none;
		}
	}

}
@media (min-width: 800px) {
	.Halfsy {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		margin-bottom: 2rem;
		align-items: center;
		& h1 {
			font-size: 2em
		}
		& > img {
			order: 0;
			display: block;
			width: 100%;
			height: auto;
			border-radius: 5px;
		}
	}

}



table th {
	text-align: left;
}
th, td {
	padding: .1em 1.5em .1em 0;
}


hr {
	margin-block: var(--gap);
	border: none;
	border-top: 2px solid #fff;
}



footer {
	margin-top: 10dvh;
}

h2 + ul.dot {
	margin-top: -.75em !important;
}

ul.check, ul.dot {
	margin: 0;
	padding: 0;
	list-style: none;
	& li {
		display: flex;
		display: flex;
		gap: .5em;
		margin: 0;
		padding: .275em 0;
		line-height: 130%;
	}
	& li::before {
		content: url(/_check_yellow.svg);
		display: block;
		height: 1.15em;
		width: auto;
		aspect-ratio: 1;
		translate: 0 .09em;
	}
}
ul.dot {
	& li::before {
		content: url(/_dot.svg);
	}
}


h3 + ul.check, h3 + ul.dot {
	margin-top: -.75em;
}



@media (min-width: 400px) {
	ul.listcolumns {
		column-count: 2;
		column-gap: 3rem;
	}
}
@media (min-width: 900px) {
	ul.listcolumns {
		column-count: 3;
		column-gap: 3rem;
	}
}
@media (min-width: 1100px) {
	ul.listcolumns {
		column-count: 4;
		column-gap: 3rem;
	}
}







.photos a {
	color: inherit;
	text-decoration: none;
}
.photos > a[href="#reviews"] {
	display: block;
	background-image: url(https://alculator.app/bubbles.svg), linear-gradient(321deg, rgb(255, 157, 0) 42.02%, rgba(255, 190, 0, 1) 81.93%, rgb(252, 205, 65) 97.06%) !important;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 5rem;
	line-height: 100%;
	font-weight: 500;
	& small {
		display: block;
		line-height: 100%;
		font-size: 2.5rem;
	}
}
/* .photos > .ShareLinks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto auto;
	gap: .75em;
	background-image: url(https://alculator.app/bubbles.svg), linear-gradient(321deg, rgb(255, 157, 0) 42.02%, rgba(255, 190, 0, 1) 81.93%, rgb(252, 205, 65) 97.06%) !important;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 1.15em;
	padding: .5em;
	line-height: 100%;
	font-weight: 500;
	text-wrap: balance;
	& p {
		margin: 0;
		padding: 0;
		grid-column: span 2;
	}
	& a:nth-child(even) {
		justify-self: end;
	}
	& a:nth-child(odd) {
		justify-self: start;
	}
	& img {
		width: 2.25em;
		height: auto;
		aspect-ratio: 1;
		display: inline-block;
		vertical-align: middle;
	}
} */

.photos > .ShareLinks {
	background-image: url(https://alculator.app/bubbles.svg), linear-gradient(321deg, rgb(255, 157, 0) 42.02%, rgba(255, 190, 0, 1) 81.93%, rgb(252, 205, 65) 97.06%) !important;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 1.15em;
	padding: .5em;
	line-height: 100%;
	font-weight: 500;
	text-wrap: balance;
	& p {
		margin: 0;
		padding: 0;
	}
	& > div {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: .5em;
		margin-top: .5em;
		& a:nth-child(even) {
			justify-self: start;
		}
		& a:nth-child(odd) {
			justify-self: end;
		}
		& img {
			width: 2.25em;
			height: auto;
			aspect-ratio: 1;
			display: inline-block;
			vertical-align: middle;
		}
	}
	
}

@media (max-width: 699px) {
	/* .photos {
		margin: 0;
		padding: 0;
		width: 100dvw;
		border-radius: 0;
		margin-inline: calc(var(--gap) * -1);
		overflow-x: scroll;
		display: grid;
		gap: 1rem;
		grid-auto-flow: column;
		grid-auto-columns: 100dvw;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
	}
	.photos > * {
		scroll-snap-align: start;
		aspect-ratio: 4/3;
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: 50% 30%;
	}
	.photos > *:not(img) {
		place-content: center;
		text-align: center;
	} */
	.photos {
		margin: 0;
		padding: 0;
		display: grid;
		gap: .5rem;
		margin-inline: -.5rem;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
		grid-auto-flow: dense;
	}
	.photos > * {
		border-radius: 5px;
	}
	.photos > img {
		aspect-ratio: 8/5;
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: 50% 30%;
		background-color: #f5f5f5;
	}
	.photos > *:first-child {
		grid-column: 1/-1;
		grid-row: 1/2;
	}
	.photos > *:not(img) {
		display: none !important;
		place-content: center;
		text-align: center;
	}
	.photos > a[href="#reviews"] {
		font-size: 2.5rem;
		line-height: 100%;
		& small {
			line-height: 100%;
			font-size: 1.25rem;
		}
	}



	.photos > .ShareLinks > div {
		display: flex;
		justify-content: center;
		gap: .25em;
		& img {
			width: 1.75em;
		}
	}


}
@media (min-width: 700px) {
	.photos {
		margin: 0;
		padding: 0;
		display: grid;
		gap: .5rem;
		grid-template-columns: 2.04fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.photos > * {
		border-radius: 5px;
	}
	.photos > img {
		aspect-ratio: 1/1;
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: 50% 30%;
		background-color: #f5f5f5;
	}
	.photos > *:first-child {
		grid-column: 1/2;
		grid-row: 1/3;
	}
	.photos > *:nth-child(2) {
		grid-column: 2/3;
		grid-row: 1/2;
	}
	.photos > *:nth-child(3) {
		grid-column: 3/4;
		grid-row: 2/3;
	}
	.photos > *:not(img) {
		/* background: #eee; */
		place-content: center;
		text-align: center;
	}
}

.etherial {
	text-transform: uppercase;
	font-weight: 450;
	font-size: 1em;
	letter-spacing: .1em;
	color: #444;
	padding-block: 1em .5em;
}

.mega {
	font-size: clamp(2rem, 10dvw, 6rem);
	line-height: 1;
	/* margin-block: var(--gap) calc(var(--gap) * 2); */
	text-align: center;
	color: #111;
	font-weight: 770;
	letter-spacing: -.035em;
	& span {
		display: block;
		color: #bbb;
		font-weight: 700;
		font-size: .65em;
		letter-spacing: -.02em;
		padding-top: clamp(0em, 1dvh, .3em);
		background: linear-gradient(177deg, #ffb300, #e77a00 69.33%, rgb(135, 63, 23) 98.74%);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}
h2.mega {
	font-size: clamp(1.5rem, 4.5dvw, 3rem);
	line-height: 1;
	margin-block: var(--gap) calc(var(--gap) * 2);
	text-align: center;
	color: #888;
	font-weight: 470;
	letter-spacing: -.035em;
	
}
p.mega {
	font-size: clamp(1.25rem, 3.5dvw, 2.25rem);
	line-height: 1.2;
	margin-block: calc(var(--gap) * 3);
	text-align: center;
	color: #333;
	font-weight: 470;
	letter-spacing: -.035em;
	
}

img.star {
	width: 1.15em;
	height: auto;
	aspect-ratio: 1;
	display: inline-block;
	vertical-align: bottom;
	margin-right: .25em;
}

.beerholder {
	position: relative;
}
.beers {
	width: 100%;
	border-collapse: collapse;
	font: inherit;
	/* max-width: 63ch; */
	margin-top: 1.5rem;
	& caption {
		font-weight: 625;
		letter-spacing: -.015em;
		font-size: 1.35rem;
		text-align: left;
		margin-bottom: 1rem;
	}
	& thead {
		position: sticky;
		top: 0;
		z-index: +1;
		background-color: #fff;
	}
	& tr {
		& > * {
			vertical-align: top;
			padding: .5em;
		}
		& > *:first-child {
			padding-left: 0;
			position: sticky;
			left: 0;
			text-wrap: balance;
			text-wrap: pretty;
		}
		& > *:last-child {
			padding-bottom: 0;
		}
		& > *:not(:first-child) {
			width: 1%;
			white-space: nowrap;
			text-align: right;
		}
	}
	& tbody {
		& > tr > * {
			border-top: 1px solid #eee;
		}
		& > tr:last-child > * {
			border-bottom: 1px solid #eee;
			text-transform: lowercase;
		}
	}
	/* & .tags {
		display: flex;
		flex-wrap: wrap;
		gap: .5em;
		font-size: .65em;
		text-transform: uppercase;
		line-height: 1;
		letter-spacing: 0;
		display: inline-flex;
		vertical-align: text-bottom;
		& > * {
			border: 1px solid rgb(255, 157, 0);
			color: rgb(255, 157, 0);
			border-radius: 3px;
			padding: .35em .5em .3em;
			line-height: 1;
			font-weight: 600
		}
	} */
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
	font-size: .65em;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0;
	display: inline-flex;
	vertical-align: text-bottom;
	& > * {
		border: 1px solid rgb(255, 157, 0);
		color: rgb(255, 157, 0);
		border-radius: 3px;
		padding: .35em .5em .3em;
		line-height: 1;
		font-weight: 600
	}
	& > time {
		border: 1px solid #999;
		color: #999;
	}
}



.event {
	display: flex;
	flex-direction: column;
	gap: .25em;
	padding: 0 0 0 .75em;
	border-left: 4px solid rgb(255, 157, 0);
	margin-bottom: 1em;
	& > .tags {
		margin-block: .25em;
	}
	& > * {
		margin: 0;
		padding: 0;
	}
}

.hp {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: calc(var(--gap) * 2);
	& article, aside {
		aspect-ratio: 1;
		display: grid;
		border-radius: 5px;
		padding: var(--gap);
		background-size: cover;
		background-position: center;
		background-repeat: none;
		max-width: 100%;
		& a {
			align-self: center;
			justify-self: center;
			text-align: center;
			display: inline-block;
			padding-top: 50%;
			color: white;
			// font-size: 4rem;
			font-size: clamp(1.25rem, 6.5dvw, 4rem);
			font-weight: 700;
			letter-spacing: -.025em;
			line-height: .8;
			text-decoration: none !important;
			text-shadow: 2px 2px .25em rgba(0, 0, 0, .25);
		}
		& b {
			align-self: end;
			justify-self: start;
			display: inline-block;
			color: black;
			background-color: white;
			font-size: 1.4rem;
			font-weight: 600;
			letter-spacing: -.025em;
			line-height: 1;
			text-decoration: none;
			border-radius: 1.5em;
			padding: .75em 1.5em;
		}
	}
	& aside {
		aspect-ratio: 2 / 1;
		& a {
			font-size: clamp(1.2rem, 5.5dvw, 3.25rem);
			text-wrap: balance;
			padding-top: initial;

		}
	}
}
@media screen and (max-width: 750px) {
	.hp {
		grid-template-columns: 1fr;
		& article {
			aspect-ratio: 2 / 1;
			& a {
				font-size: 3rem;
				padding: 0
			}
		}
		& aside {
			aspect-ratio: 2 / 1;
			& a {
				font-size: 2.5rem;
			}
		}
	}
}





@media (max-width: 840px) {
	.not_mobile {
		display: none;
	}
}


@keyframes FadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.FadeIn {
	animation: FadeIn .5s ease-in-out;
}


@keyframes Skeleton {
	from {
		opacity: .8;
	}
	to {
		opacity: 1;
	}
}
.Skeleton {
	animation: Skeleton .5s ease-in-out;
	& * {
		color: #f5f5f5 !important;
	}
	& img {
		background: #f5f5f5;
	}
}




/* 
.StickyFirst {
	& > *:not(:first-child) {
		scroll-margin-top: 3.5em;
		padding-bottom: 2em;
	}
	& > *:first-child {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: +9999 !important;
		background-color: rgba(255, 255, 255, .9);
		backdrop-filter: blur(10px);
		padding-block: 1em;
	}
} */








.AnchorNav {
	margin: 0;
	padding: .5em 0;
	display: flex;
	gap: 1em;
	list-style: none;
	/* font-size: .9rem; */
	font-weight: 400;
	/* color: #666; */
	overflow-x: auto;
	max-width: 100%;
	& a {
		color: inherit;
		text-decoration: none;
		white-space: nowrap;
	}
}



mark {
	background-color: #ffbf65;
	/* color: rgb(255, 157, 0); */
	padding-inline: .25em;
	border-radius: 5px;
	font-weight: 600;
}


.stickytable {
	position: relative;
	overflow: scroll;
	& table {
		width: 100%;
		border-collapse: collapse;
		border-spacing: 0;
		/* & thead tr > * {
			background: #fff9;
			position: sticky;
			top: 0;
			z-index: 1;
		} */
		& tr > *:first-child {
			background: #fff;
			position: sticky;
			left: 0;
			z-index: +999;
		}
		& th, td {
			text-wrap: nowrap;
			width: min-content;
			max-width: 25ch;
			/* line clamp to 2 lines */
			overflow: hidden;
			text-overflow: ellipsis;
			/* display: -webkit-box; */
			/* -webkit-line-clamp: 1; */
			/* -webkit-box-orient: vertical; */
			/* padding: 0.5em; */
		}
		& tbody tr > * {
			border-top: 1px solid #eee;
			padding-block: 0.35em;
		}
		& a {
			color: inherit;
			text-decoration-color: transparent;
		}
	}
	
}








.linkbar {
	display: block;
	background-color: #fff9;
	backdrop-filter: blur(20px);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: +99;
	/* flex-wrap: wrap; */
	gap: .5em;
	width: auto !important;
	margin: auto !important;
	padding: .45em .45em .75em .45em !important;
	display: flex;
	text-align: center;
	justify-content: center;
	list-style: none;

	& a {
		color: inherit;
		text-decoration: none;
		border-radius: 2em;
		padding: .25em 1em;
		font-weight: 600;
		font-size: .9rem;
		line-height: 1.2;
		text-align: center;
		color: #fff;
		transition: background .25s ease;
		text-decoration: none !important;
		background: rgb(255, 157, 0);
		&:hover, :active {
			background: #000;
		}
	}

	& ~ * {
		scroll-margin-top: 2.5em;
	}
}

.mega + .linkbar {
	/* margin-block: -3em 3em !important; */
	margin-block: calc(var(--gap) * -1) 3em !important;
}