/**
 * Components
 */

/* --------------------------------------------------
	SKIP LINK, SHORTCUT TO CONTENT
-------------------------------------------------- */

.skip-link {

	/* Base positioning (onscreen, but visually hidden via transform) */
	position			: absolute;
	left				: 12px;
	top					: 12px;
	z-index				: 100000; /* above sticky header */

	padding				: 10px 14px;
	border-radius		: 10px;

	background			: var(--light);
	color				: var(--brand-dark);

	font-family			: var(--font-ui);
	font-weight			: 700;
	font-size			: 16px;
	line-height			: 1;

	text-decoration		: none;
	box-shadow			: 0 10px 26px rgba(0,0,0,.25);

	/* Hidden state (off-screen via transform instead of -9999px) */
	transform			: translateY(-140%);
	opacity				: 0;
	pointer-events		: none;

	transition			: transform .2s ease, opacity .2s ease;

	/* Accessibility: only show on keyboard focus */
	&:focus-visible {
		transform		: translateY(0);
		opacity			: 1;
		pointer-events	: auto;

		outline			: 3px solid var(--brand-light);
		outline-offset	: 2px;
	}

	/* Prevent mouse click focus showing it */
	&:focus:not(:focus-visible) {
		outline			: none;
	}

	/* Optional subtle polish */
	letter-spacing		: 0.02em;
	backdrop-filter		: blur(6px);
}

/* --------------------------------------------------
	NEOS PATTERNS
-------------------------------------------------- */

.neos-pattern {
	margin-bottom		: 30px;

	/* Border Radius*/
	border-radius: var(--component-border-radius); /*} */
	& img { border-radius: var(--image-border-radius); }

	& h1, h2, h3, h4, h5 {line-height: var(--headline-lh-1);}
	
	/* Global font sizing - can override in individual components as needed */
	& h1 {font-size		: var(--heading-size-l);}
	& h2 {font-size		: var(--heading-size-m);}
	& h3 {font-size		: var(--heading-size-s);}
	& h4 {font-size		: var(--heading-size-xs);}
}

/* --------------------------------------------------
	HERO VIDEO
-------------------------------------------------- */

.hero-video {
	position			: relative;
	z-index				: 0;
}

/* --------------------------------------------------
	PAGE INTRO TITLE
-------------------------------------------------- */
.neos-pattern-page-title-intro {
	display				: flex;
	flex-direction		: column;

	& h1 {
		order			: 2;
	}

	& h2 {
		order			: 1;
		padding	: 20px 0;
	}

	& p {
		order			: 3;
	}
}


/* --------------------------------------------------
	SIGN POST BLOCK
-------------------------------------------------- */
.neos-pattern-signpost-block {
	min-height: auto;

	& .wp-block-cover__inner-container {
		display			: flex;
		flex-direction	: column;
		align-items		: center;
		justify-content	: center;

		& h2 {
			order		: 2;
		}

		& h3 {
			order		: 1;
			padding-bottom: 20px;
		}

		& .wp-block-buttons {
			order		: 3;
		}
	}
}

/* --------------------------------------------------
	COLUMNS
-------------------------------------------------- */
.neos-columns {
	gap: 30px !important;
}

.neos-columns-2 {
	& .wp-block-column {
		max-width: calc(50% - 15px) !important;
	}
}


/* --------------------------------------------------
	CAROUSEL ARROWS
-------------------------------------------------- */
.wp-block-cb-carousel-v2 .cb-button-next { background: url(/wp-content/uploads/2026/03/Carousel-right-light.svg) !important;}
.wp-block-cb-carousel-v2 .cb-button-prev { background: url(/wp-content/uploads/2026/03/Carousel-left-light.svg) !important;}

.wp-block-cb-carousel-v2 .cb-button-next.swiper-button-next, .cb-button-prev.swiper-button-prev {
	background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 50px;
    height: 50px;
}

.wp-block-cb-carousel-v2 .cb-button-next:after, .wp-block-cb-carousel-v2 .cb-button-prev:after {display: none;}

/* --------------------------------------------------
	Yoast SEO
-------------------------------------------------- */
.schema-faq-answer{	margin-top:0;}

/* --------------------------------------------------
	TICKER ON THE HOME PAGE
-------------------------------------------------- */
.home-promotion-ticker-shell {
	/*position: sticky;
	top: 0;
	z-index: 50;*/
	width: 100%;
	pointer-events: none;
	/*height:0;*/
}

.home-promotion-ticker {
	--ticker-bg: #ef9a2f;
	--ticker-text: #1a1a1a;
	--ticker-height: 46px;
	--ticker-padding-x: 24px;
	--ticker-item-gap: 22px;
	--ticker-font-size: 17px;
	--ticker-font-weight: 600;

	width: 100%;
	background: var(--ticker-bg);
	overflow: hidden;
	pointer-events: auto;
	/*transform: translate3d(0, 20vh, 0) rotate(-2deg);
	transform-origin: center center;*/
	will-change: transform;
}

.home-promotion-ticker__track {
	display: flex;
	align-items: center;
	width: max-content;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.home-promotion-ticker__strip {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: max-content;
}

.home-promotion-ticker__item {
	display			: inline-flex;
	align-items		: center;
	white-space		: nowrap;
	min-height		: var(--ticker-height);
	font-size		: var(--ticker-font-size);
	font-weight		: var(--ticker-font-weight);
	line-height		: 1;
	color			: var(--ticker-text);
}

.home-promotion-ticker__bullet {
	margin: 0 var(--ticker-item-gap);
	color: var(--ticker-text);
}

@media (max-width: 767px) {
	.home-promotion-ticker {
		--ticker-height: 40px;
		--ticker-padding-x: 16px;
		--ticker-item-gap: 16px;
		--ticker-font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-promotion-ticker {
		transform: translate3d(0, 0, 0) rotate(0deg) !important;
	}

	.home-promotion-ticker__track {
		transform: translate3d(0, 0, 0) !important;
	}
}

/* --------------------------------------------------
	BOOK A TABLE
-------------------------------------------------- */
.book-a-table {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 9999;
}

.book-a-table.is-open {
	opacity: 1;
	pointer-events: auto;
}

.book-a-table__panel {
	position: relative;
	width: min(960px, 100%);
	max-height: 100vh;
	background: #fff;
	transform: translateY(-100%);
	transition: transform 0.35s ease;
	overflow: auto;
}

.book-a-table.is-open .book-a-table__panel {
	transform: translateY(30px);
}

.book-a-table__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	border: 0;
	background: transparent;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

body.booking-open {
	overflow: hidden;
}
.booking-shell {
	background: var(--brand-light, #f6a13a);
	border-radius: 25px;
	padding: 15px;
}

.booking-shell__inner {
	border: 2px solid #021c24;
	border-radius: 15px;
	padding: 15px 15px 15px;
}

.booking-shell__intro {
	text-align: center;
	margin-bottom: 24px;
}

.booking-shell__title {
	margin: 0 47px 20px;
	padding-top: 12px;
	font-family: var(--font-accent);
	font-size: 36px;
	line-height: 40px;
	color: #021c24;
	width: calc(100% - 94px);
}

.booking-shell__copy {
	margin: 0 0 8px;
	font-family: var(--font-hero);
	font-size: 20px;
	line-height: 1.45;
	color: #021c24;
}

.booking-shell__widget {
	background: #021c24;
	border-radius: 5px;
	padding: 18px;
}
.book-a-table__panel {
	position: relative;
	width: min(1240px, calc(100vw - 40px));
	max-height: calc(100vh - 40px);
	margin-top: 20px;
	background: transparent;
	transform: translateY(-120%);
	transition: transform 0.35s ease;
	overflow: auto;
}
.book-a-table__close {
	position: absolute;
	top: 28px;
	right: 28px;
	z-index: 20;
	border: 0;
	background: transparent;
	line-height: 1;
	cursor: pointer;
	color: #021c24;
	padding: 0;
	width:42px;
	height:42px;
	display:flex;
	justify-content: center;
	align-items: center;
	border-radius:21px;
	background:#021c24;
}
.book-a-table__close svg {
	width:42px;
	height:42px;
	top: 0px;
	position:relative;
}
#dmn-partner-widget .footer {
	display:none;
}
#dmn-partner-widget {
	max-width: 100%;
}

#dmn-partner-widget #dmn-widget-inner {
	border:0;
	background:transparent;
}
#dmn-partner-widget #dmn-widget-inner .stage {
	background:transparent;
}
#dmn-partner-widget .stage .dropdown {
	background:transparent;
}
#dmn-partner-widget .list-slot {
	background:transparent;
}
#dmn-partner-widget .list-slot:hover:not(.list-slot--disabled) {
	background:rgba(0,0,0,0.1);
}
#dmn-partner-widget #dmn-widget-inner .date-selector .date-selector__quick-buttons button{
	background:rgba(0,0,0,0.1);
}
#dmn-partner-widget #dmn-widget-inner .date-selector .date-selector__quick-buttons button:hover {
	background:rgba(0,0,0,0.2);
}
#dmn-partner-widget .date-selector .vdp-datepicker .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover {
	color:var(--brand-dark);
}
#dmn-partner-widget #dmn-widget-inner .time-header {
	background:rgba(0,0,0,0.1);
}
#dmn-partner-widget #dmn-widget-inner .time-selection-columns .from-list .time-list--blurred,
#dmn-partner-widget #dmn-widget-inner .time-selection-columns .until-list .time-list--blurred {
	background:rgba(0,0,0,0.1);
}

/* --------------------------------------------------
	NEWSLETTER
-------------------------------------------------- */
.neos-newsletter .newsletter-headline {
	font-size			: clamp(34px, 7vw, 58px);
	max-width			: 12ch;
	color				: var(--grey-light) !important;
	margin				: 0;
}
.neos-newsletter .newsletter-label-text {
	font-size			: var(--paragraph-font-size) !important;
	font-family			: var(--font-hero) !important;
	font-weight			: 600 !important;
}
.neos-newsletter .newsletter-field input {
	font-family			: var(--font-hero) !important;
	font-weight			: 400 !important;
	font-size			: 20px;
}
.neos-newsletter .newsletter-consent > span {
	font-size			: var(--paragraph-font-size) !important;
	font-family			: var(--font-hero) !important;
	font-weight			: 400 !important;
}
.neos-newsletter .newsletter-consent input {
	margin-top			: 8px;
}
.neos-article-aside .neos-newsletter .newsletter-layout-shell {
	display				: flex;
	flex-direction		: column;
	gap					: var(--newsletter-gap);
	padding				: var(--newsletter-shell-padding);
	max-width			: 1400px;
	margin				: 0 auto;
	min-height			: 100%;
}

/* --------------------------------------------------
	PHOTOBOOTH GALLERY
-------------------------------------------------- */
.neos-rogue-gallery__item {
	position			: relative;
	overflow			: hidden;
}

.neos-rogue-gallery__item img {
	display				: block;
	width				: 100%;
	height				: 100%;
	object-fit			: cover;
}

.neos-rogue-gallery__img {
	position			: relative;
	z-index				: 2;
}

.neos-rogue-gallery__img--incoming {
	position			: absolute;
	inset				: 0;
	z-index				: 1;
	opacity				: 1;
	transform			: scale(1.02);
	filter				: blur(6px);
	transition			:
		filter 600ms ease,
		transform 600ms ease;
}

.neos-rogue-gallery__img--incoming.is-visible {
	filter				: blur(0);
	transform			: scale(1);
}

.neos-rogue-gallery__img--outgoing {
	position			: relative;
	z-index				: 2;
	opacity				: 1;
	filter				: blur(0);
	transform			: scale(1);
	transition			:
		opacity 700ms ease,
		filter 700ms ease,
		transform 700ms ease;
}

.neos-rogue-gallery__img--outgoing.is-hiding {
	opacity				: 0;
	filter				: blur(14px);
	transform			: scale(1.04);
}



@media (prefers-reduced-motion: reduce) {
	.neos-rogue-gallery__img--incoming,
	.neos-rogue-gallery__img--outgoing {
		transition: none;
	}
}
/* --------------------------------------------------
	ARTICLE ASIDE
-------------------------------------------------- */
.neos-article-aside ul,
.neos-article-aside li {
	list-style: none;
	margin: 0;
	padding: 0;
	display:flex;
	flex-direction: column;
}

.neos-article-aside ul {
	gap:20px;
}
.neos-article-aside__related-link {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
	border-radius: 0.75rem;
	min-height: 170px; /* card height lives here, not on content */
}

/* full image layer */
.neos-article-aside__related-media {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.neos-article-aside__related-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

/* bottom text area only */
.neos-article-aside__related-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px;
	color: white;
}

.neos-article-aside__related-link {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
	border-radius: 0.75rem;
	min-height: 170px;
}

.neos-article-aside__related-media {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.neos-article-aside__related-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.neos-article-aside__related-content::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: -64px;
	z-index: -1;
	pointer-events: none;

	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.78) 0%,
		rgba(0, 0, 0, 0.56) 30%,
		rgba(0, 0, 0, 0.28) 60%,
		rgba(0, 0, 0, 0.10) 82%,
		rgba(0, 0, 0, 0) 100%
	);
}

.neos-article-aside__related-title {
	position: relative;
	z-index: 1;
	display: block;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.neos-article-aside__related-link:hover .neos-article-aside__related-image {
	transform: scale(1.05);
}

/* --------------------------------------------------
	ARTICLE ASIDE - COMING UP
-------------------------------------------------- */

.neos-article-aside__coming-up-list,
.neos-article-aside__coming-up-item,
.neos-article-aside__coming-up-venues-list,
.neos-article-aside__coming-up-venue-item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.neos-article-aside__coming-up-list {
	display: grid;
	gap: 1rem;
}

.neos-article-aside__coming-up-group + .neos-article-aside__coming-up-group {
	margin-top: 1.5rem;
}

.neos-article-aside__coming-up-card {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	min-height: 220px;
	background: #111;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	isolation: isolate;
}

.neos-article-aside__coming-up-media {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.neos-article-aside__coming-up-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.neos-article-aside__coming-up-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 1rem;
	color: #fff;
}

/* dark fade behind text only */
.neos-article-aside__coming-up-content::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: -80px;
	z-index: -1;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.82) 0%,
		rgba(0, 0, 0, 0.58) 34%,
		rgba(0, 0, 0, 0.24) 68%,
		rgba(0, 0, 0, 0.00) 100%
	);
	pointer-events: none;
}

.neos-article-aside__coming-up-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 248, 239, 0.92);
	color: #3c342d;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1;
}

.neos-article-aside__coming-up-title {
	margin: 0 0 0.45rem;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.neos-article-aside__coming-up-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
}

.neos-article-aside__coming-up-trigger::after {
	content: '›';
	font-size: 1.35em;
	line-height: 1;
}

/* venue overlay */
.neos-article-aside__coming-up-venues {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.52);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
}

.neos-article-aside__coming-up-venues-panel {
	width: min(280px, 100%);
	padding: 1rem;
	border-radius: 1rem;
	background: rgba(32, 28, 26, 0.92);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
	transform: translateY(10px);
	transition: transform 0.22s ease;
}

.neos-article-aside__coming-up-venues-label {
	display: block;
	margin-bottom: 0.75rem;
	color: #fff;
	font-size: 0.92rem;
	font-weight: 600;
}

.neos-article-aside__coming-up-venues-list {
	display: grid;
	gap: 0.6rem;
}

.neos-article-aside__coming-up-venue-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	background: #f6f0e8;
	color: #d66a1e;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.1;
	transition: transform 0.18s ease, background 0.18s ease;
}

.neos-article-aside__coming-up-venue-link:hover,
.neos-article-aside__coming-up-venue-link:focus {
	transform: translateY(-1px);
	background: #fff8f2;
}

/* interaction */
.neos-article-aside__coming-up-card:hover .neos-article-aside__coming-up-image,
.neos-article-aside__coming-up-card:focus-within .neos-article-aside__coming-up-image {
	transform: scale(1.05);
}

.neos-article-aside__coming-up-card:hover .neos-article-aside__coming-up-venues,
.neos-article-aside__coming-up-card:focus-within .neos-article-aside__coming-up-venues {
	opacity: 1;
	pointer-events: auto;
}

.neos-article-aside__coming-up-card:hover .neos-article-aside__coming-up-venues-panel,
.neos-article-aside__coming-up-card:focus-within .neos-article-aside__coming-up-venues-panel {
	transform: translateY(0);
}

.neos-rogue-gallery img {
	width:100%;
	display:block;
}

/* BRAND OVERVIEW VIDEO */
.neos-brand-overview-video {
	min-height:75vh !important;
	height:75vh !important;
	position:relative;
	display:block;
}

.neos-brand-overview-video .wp-block-cover__inner-container {
	left:15px;
	right:15px;
	top:15px;
	bottom:15px;
	position:absolute;
	width:auto;
}

.neos-brand-overview-video .yellowBorder {
	left:15px;
	right:15px;
	top:15px;
	bottom:15px;
	position:absolute;
	width:auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

/* mobile */
@media (max-width: 767px) {
	.neos-article-aside__coming-up-card {
		min-height: 200px;
	}

	.neos-article-aside__coming-up-title {
		font-size: 1.5rem;
	}

	.neos-article-aside__coming-up-venues {
		align-items: stretch;
		justify-content: stretch;
		padding: 0.75rem;
	}

	.neos-article-aside__coming-up-venues-panel {
		width: 100%;
		margin-top: auto;
	}
}

.hero-framed__title{
	font-weight:400;
}


/* --------------------------------------------------
	BRUNCH SLIDER
-------------------------------------------------- */
.neos-themed-brunch-gallery {
	display						: flex;

	border-top-left-radius		: 0px;
	border-top-right-radius		: 0px;
	border-bottom-left-radius	: 0px;
	border-bottom-right-radius	: 0px;
	padding-top					: 30px;
	padding-bottom				: 50px;
	min-height					: 500px;
	aspect-ratio				: unset;
	background-image			: url(/wp-content/uploads/2026/03/Bonnie-Body-Wall-Blue.jpg);
	align-items					: center;
	justify-content				: center;
	background-attachment		: fixed;

	& .neos-themed-brunch-gallery__heading {
		font-size				: var(--heading-size-s);
	}
}

.neos-themed-brunch-gallery-inner {
	max-width					: 1240px;
	display						: flex;
	flex-direction				: column;
	margin						: 0 20px;
	width						: 100%;
	padding						: 20px 0;
}

.neos-themed-brunch-gallery__grid {
	display						: flex;
	flex-direction				: column;
	gap							: 20px;
	justify-content				: center;
}
.neos-themed-brunch-gallery__block {
	width						: 100%;
	max-width					: 100%;
	min-width					: 100%;
	border						: 2px solid var(--brand-light);
	border-radius				: 15px;
	padding						: 15px 15px 20px 15px;
	position					: relative;
	overflow					: hidden;
}
@media all and (min-width:600px){
	.neos-themed-brunch-gallery__grid {
		flex-direction			: row;
		flex-wrap				: wrap;
	}
	.neos-themed-brunch-gallery__block {
		width					: calc( 100% / 2 );
		max-width				: calc( 100% / 2 );
		min-width				: calc( 100% / 2 );
	}
}
@media all and (min-width:900px){
	.neos-themed-brunch-gallery__block {
		width					: calc( 100% / 3 );
		max-width				: calc( 100% / 3 );
		min-width				: calc( 100% / 3 );
	}
}
@media all and (min-width:1200px){
	.neos-themed-brunch-gallery__block {
		width					: calc( 100% / 4 );
		max-width				: calc( 100% / 4 );
		min-width				: calc( 100% / 4 );
	}
}

/* Hide slide when not active */
.neos-themed-brunch-gallery__slide {
	display: none;
}

.neos-themed-brunch-gallery h3{
	color:var(--wp--preset--color--brand-light) !important;
}
.neos-themed-brunch-gallery h3,
.neos-themed-brunch-gallery h4,
.neos-themed-brunch-gallery p {
	margin: 10px auto;
}
.neos-themed-brunch-gallery__promotion-headline {
	font-size:30px !important;
}
.neos-themed-brunch-gallery__body p {
	max-width:960px;
	font-weight:600;
	margin:0 auto;
	font-size:var(--paragraph-font-size);
	padding:20px 0;
}

.neos-themed-brunch-gallery__slide.is-active {
	display: grid;
	border: solid 2px #f49b2d;
	border-radius: var(--border-border-radius);
	padding: 2rem;
	width: 50%;
	margin: auto;
}

figure.neos-themed-brunch-gallery__image{
    display: inherit !important;
    aspect-ratio: 16/9;
    width: 100%;
    margin: auto;
	margin-bottom: 20px;

         & img {
			width: 100% !important;
			height: 100% !important;
			object-fit: cover;
		}
}

p.neos-themed-brunch-gallery-dates {
    display: none;
}

p.neos-themed-brunch-gallery-text {
    text-align: center;
    align-content: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-hero);
    line-height: 20px;
    color:var(--wp--preset--color--cream) !important;
}
.neos-themed-brunch-gallery-text > span {
	display:block;
}
.neos-themed-brunch-gallery-text .highlighted {
	color:var(--brand-light);
}

.neos-themed-brunch-gallery__grid.is-limited .neos-themed-brunch-gallery__block:nth-child(n+7) {
	display:none;
}

.neos-themed-brunch-gallery__grid:not(.is-limited) + .neos-themed-brunch-gallery__more-wrap {
	display:none;
}

.neos-themed-brunch-gallery__more-wrap {
	padding-top:40px;
	margin:0 auto;
	text-align:center;
}

/* Brunch Slider - navigation icons */

.neos-themed-brunch-gallery__nav {
	position: absolute;
    top: 40%;
    z-index: 10;
    cursor: pointer;
    width: 100%;
}


.neos-themed-brunch-gallery__promotion-description {
	opacity:0;
	position:absolute;
	top:-100%;
	width:100%;
	height:calc(100%);
	pointer-events:none;
	transform:scale(1.05);
	transform-origin: center;
	display:flex;
	align-items: top;
	justify-content: center;
	left:0;
	overflow:hidden;
	padding:20px 15px;

	transition: opacity 0.3s ease, transform 0.4s ease, top 0.2s ease-in-out;
	will-change: opacity, transform;
}

.neos-themed-brunch-gallery__promotion-description > div{
	z-index: 2;
	position:relative;
}

.neos-themed-brunch-gallery__promotion-description::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.8;
	background: var(--brand-dark);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1;
}
.neos-themed-brunch-gallery__block:hover .neos-themed-brunch-gallery__promotion-description {
	opacity:1;
	pointer-events:auto;
	transform:scale(1);
	top:0;
	border-radius:15px;
}

.neos-themed-brunch-gallery .neos-themed-brunch-gallery__next {
	background: url(/wp-content/uploads/2026/03/Carousel-right-light.svg) !important;
	position: absolute;
	left: 70%;
}
.neos-themed-brunch-gallery .neos-themed-brunch-gallery__prev {
	background: url(/wp-content/uploads/2026/03/Carousel-left-light.svg) !important;
	position: absolute;
	left: 21%;
}

/*.neos-themed-brunch-gallery .neos-themed-brunch-gallery__next,
.neos-themed-brunch-gallery .neos-themed-brunch-gallery__prev {
	background-size: contain !important;
	background-repeat: no-repeat !important;
	width: 65px;
	height: 65px;
	border: none;
	color: #132439;
}*/

.neos-themed-brunch-gallery__block .book-line {
	position:relative;
	z-index:2;
}
.neos-themed-brunch-gallery__block .book-line a {
	display:block;
	margin:0 auto;
	width:180px;
	text-align:center;
}

.neos-venue-locations a {
	text-decoration:none;
}
.neos-venue-locations .wp-block-cover {
	cursor:pointer;

}
.neos-venue-locations .wp-block-cover__inner-container {
	height: auto;
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	width: auto;
}
.neos-venue-locations .yellowBorder {
	width:100%;
}
.list-slot__inner .list-slot__title,
#dmn-partner-widget #dmn-widget-inner .number-people.number-people-dropdown span,
#dmn-partner-widget #dmn-widget-inner .number-people-dropdown.number-people-dropdown span {
	color:#f2f4e2 !important;
	font-size:20px !important;
	font-family:var(--font-hero) !important;
}
#dmn-partner-widget #dmn-widget-inner .number-people-dropdown.number-people-dropdown .number-people-dropdown--caret:after {
	border-top:8px solid #021c24;
}

/* --------------------------------------------------
	BLOG POST ASIDE - VENUE SELECTOR
-------------------------------------------------- */
.neos-article-aside__section--book-table {
    background: #021c24;
    border-radius: var(--border-border-radius);
    padding: 20px;
    color: #f2f4e2;
    margin-top: 20px;

	& .neos-card--book-table h3.neos-article-aside__heading { margin: 10px 0; }
	& .neos-article-aside__section--book-table p.neos-article-aside__text,
	p.neos-article-aside__text { margin: 0; }
}

.neos-article-aside__section--book-table ul.neos-article-aside__venue-list {
    line-height: 40px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;

	& li.neos-article-aside__venue-item a {text-decoration: none; }
}

.hidden-shell {
	display:none;
}