/**
 * SB Restaurant One Child Theme Custom Styles
 */

/* ==========================================================================
   Global page background (all pages)
   ========================================================================== */

body {
	/* Site background color from Theme Colors settings */
	background: var(--sb-color-background, rgba(34, 113, 177, 0.06));
	background: var(--sb-color-background, color-mix(in srgb, var(--sb-color-primary, #2271b1) 7%, #fff));
	color: var(--sb-color-dark, #1d2327);
}

/* ==========================================================================
   Typography scale (frontend)
   ========================================================================== */

:root{
	/* Titles */
	--sb-fs-h1: clamp(28px, 4vw, 38px);
	--sb-fs-h2: clamp(22px, 3.1vw, 30px);
	--sb-fs-h3: clamp(18px, 2.4vw, 22px);

	/* Supporting text */
	--sb-fs-subtitle: 15px;
	--sb-fs-text: 15px;
	--sb-fs-small: 13px;

	--sb-lh-heading: 1.12;
	--sb-lh-text: 1.7;
}

/* ==========================================================================
   Menu pages (Speisen)
   ========================================================================== */

/* Hide the "Speisen" title on the menu page (theme title + shortcode category title) */
.sb-is-menu-page .entry-header {
	display: none;
}
.sb-is-menu-page .sb-menu-page__header {
	display: none;
}

.sb-menu-taxonomy .site-content-container {
	padding-top: 26px;
	padding-bottom: 26px;
}

/* Keep menu page typography consistent with site scale */
.sb-menu-page__title,
.sb-menu-page .sb-menu-page__title{
	font-size: var(--sb-fs-h1);
	line-height: var(--sb-lh-heading);
}
.sb-menu-page__subtitle,
.sb-menu-page .sb-menu-page__subtitle{
	font-size: var(--sb-fs-text);
	line-height: var(--sb-lh-text);
}
.sb-menu-page__section-title,
.sb-menu-page .sb-menu-page__section-title{
	font-size: var(--sb-fs-h3);
	line-height: 1.25;
}

.sb-menu-page__categories {
	gap: 10px;
}

/* Category nav: default light bg + dark text; hover primary-light bg + primary text */
.sb-menu-page__category {
	background: var(--sb-color-light);
	color: var(--sb-color-dark);
	backdrop-filter: blur(10px);
}

.sb-menu-page__category:hover {
	background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
	color: var(--sb-color-primary);
}

.sb-menu-page__category.is-active {
	background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
	color: var(--sb-color-primary);
}

.sb-menu-page__category.is-active:hover {
	background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
	color: var(--sb-color-primary);
}

.sb-menu-page__section-title {
	letter-spacing: -0.01em;
}

/* Speisen / category page: consistent section spacing */
.sb-menu-page .sb-menu-page__categories-wrap {
	margin-bottom: 28px;
}
.sb-menu-page .sb-menu-page__content {
	padding-top: 24px;
	padding-bottom: 24px;
}
.sb-menu-page .sb-menu-page__header {
	margin-bottom: 28px;
}
.sb-menu-page .sb-menu-page__section {
	margin-top: 32px;
}
.sb-menu-page .sb-menu-page__section:first-of-type {
	margin-top: 0;
}
.sb-menu-page .sb-menu-page__section-title {
	margin-bottom: 14px;
}
.sb-menu-page .sb-menu-reference,
.sb-menu-page .sb-menu-legend {
	margin-top: 48px;
}

.sb-menu-dish {
	background: rgba(255,255,255,0.32);
	backdrop-filter: blur(10px);
}

.sb-menu-dish__price {
	color: var(--sb-color-primary, #2271b1);
}

@media (max-width: 768px) {
	.sb-menu-taxonomy .site-content-container {
		padding-top: 18px;
		padding-bottom: 18px;
	}
}

/* ==========================================================================
   Home custom sections (below categories)
   ========================================================================== */

.sb-home-section {
	padding: 26px 0;
}

/* No background: same horizontal margin from screen as sections with background */
.sb-home .site-content-section.sb-home-section:not([class*="--bg-"]) {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	box-sizing: border-box;
}
.sb-home .site-content-section.sb-home-section:not([class*="--bg-"]) .site-content-container {
	padding: 0 24px;
	box-sizing: border-box;
}
@media (max-width: 1200px) {
	.sb-home .site-content-section.sb-home-section:not([class*="--bg-"]) {
		width: calc(100% - 40px);
		max-width: none;
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media (max-width: 768px) {
	.sb-home .site-content-section.sb-home-section:not([class*="--bg-"]) {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}
}


.sb-home-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: center;
}

.sb-home-section--left .sb-home-section__inner,
.sb-home-section--right .sb-home-section__inner {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.sb-home-section--left .sb-home-section__media {
	order: 0;
}
.sb-home-section--left .sb-home-section__content {
	order: 1;
}
.sb-home-section--right .sb-home-section__media {
	order: 1;
}
.sb-home-section--right .sb-home-section__content {
	order: 0;
}

.sb-home-section__media {
	min-width: 0;
}

.sb-home-section__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 18px;
	background-size: cover;
	background-position: center;
	background-color: rgba(255,255,255,0.55);
	box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.sb-home-section__content {
	min-width: 0;
}

.sb-home-section__subtitle {
	color: var(--sb-color-primary, #2271b1);
	font-weight: 600;
	font-size: var(--sb-fs-subtitle);
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: 6px;
}

.sb-home-section__title {
	margin: 0 0 8px 0;
	font-weight: 900;
	font-size: var(--sb-fs-h2);
	line-height: var(--sb-lh-heading);
	letter-spacing: -0.02em;
}

.sb-home-section__desc {
	color: rgba(0,0,0,0.65);
	font-size: var(--sb-fs-text);
	line-height: var(--sb-lh-text);
}

.sb-home-section__desc p {
	margin: 0 0 10px 0;
}
.sb-home-section__desc p:last-child {
	margin-bottom: 0;
}

.sb-home-section__buttons{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	margin-top:16px;
}

.sb-home-section--noimage .sb-home-section__inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
/* Reviews section: full width like categories; heading is section-level; content + buttons centered */
.sb-home-reviews-section .sb-home-section__inner {
	text-align: center;
	width: 100%;
	max-width: none;
}
.sb-home-reviews-section .sb-home-section__content {
	text-align: center;
}
.sb-home-reviews-section .sb-home-section__buttons {
	justify-content: center;
}
/* Less space between reviews section title/desc and the slider */
.sb-home-reviews-section__slider {
	margin-top: 1rem;
}
.sb-home-reviews-section__slider .sb-reviews-slider {
	margin-top: 0;
}

.sb-home-section--behind {
	position: relative;
}

.sb-home-section--behind::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--sb-home-section-bg);
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	filter: blur(2px);
}

.sb-home-section--behind .site-content-container {
	position: relative;
}

.sb-home-section--behind .sb-home-section__inner {
	background: rgba(255,255,255,0.60);
	backdrop-filter: blur(12px);
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
	.sb-home-section {
		padding: 18px 0;
	}
	.sb-home-section--left .sb-home-section__inner,
	.sb-home-section--right .sb-home-section__inner {
		grid-template-columns: 1fr;
	}
	.sb-home-section__title {
		font-size: var(--sb-fs-h2);
	}
}

/* Mobile fixed nav spacing */
@media (max-width: 768px) {
	body.sb-has-mobile-nav {
		--sb-mobile-nav-space: 78px;
		padding-bottom: var(--sb-mobile-nav-space);
		transition: padding-bottom 200ms ease;
	}
	body.sb-has-mobile-nav.sb-ui--chrome-hidden{
		--sb-mobile-nav-space: 16px; /* reclaim space when nav is hidden */
	}
}

.sb-mobile-nav {
	display: none;
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 10px;
	z-index: 9999;
	padding: 8px 6px;
	border-radius: 18px;
	background: rgba(255,255,255,0.65);
	backdrop-filter: blur(14px);
	box-shadow: 0 14px 40px rgba(0,0,0,0.10);
	gap: 6px;
	align-items: stretch;
	justify-content: space-between;
	transition: transform 220ms ease, opacity 220ms ease;
	will-change: transform, opacity;
}

@media (max-width: 768px) {
	.sb-mobile-nav {
		display: flex !important;
	}
	body.sb-ui--chrome-hidden .sb-mobile-nav{
		transform: translateY(120%);
		opacity: 0;
		pointer-events: none;
	}
}

.sb-mobile-nav__item {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 7px 6px;
	border-radius: 14px;
	text-decoration: none;
	color: var(--sb-color-dark, #1d2327);
	border: none;
	background: transparent;
	cursor: pointer;
}

.sb-mobile-nav__item:focus-visible {
	outline: 2px solid color-mix(in srgb, var(--sb-color-primary, #2271b1) 45%, transparent);
	outline-offset: 2px;
}

.sb-mobile-nav__icon {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(0,0,0,0.46);
}

.sb-mobile-nav__label {
	font-size: 11px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	color: rgba(0,0,0,0.58);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.sb-mobile-nav__item.is-active .sb-mobile-nav__icon{
	color: var(--sb-color-primary, #2271b1);
}
.sb-mobile-nav__item.is-active .sb-mobile-nav__label{
	color: var(--sb-color-primary, #2271b1);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
	/* Glass header (blur without looking like a solid bar) */
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: none;
	transition: transform 220ms ease;
}

.site-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: padding 220ms ease;
	min-height: 72px;
	box-sizing: border-box;
}

/* Site Branding – vertically centered with nav */
.site-branding {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	align-self: center;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.site-branding .custom-logo {
	max-height: 60px;
	width: auto;
	height: auto;
	vertical-align: middle;
	object-fit: contain;
	transition: max-height 220ms ease;
}

/* Compact mobile header while scrolling down */
@media (max-width: 768px){
	body.sb-ui--compact-header .site-header-container{
		padding: 8px 14px;
	}
	body.sb-ui--compact-header .site-branding .custom-logo{
		max-height: 44px;
	}
}

.site-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.site-title a {
	text-decoration: none;
	color: #1a1a2e;
	transition: color 0.3s ease;
}

.site-title a:hover {
	color: #667eea;
}

.site-description {
	margin: 5px 0 0 0;
	font-size: 14px;
	color: #666;
	font-weight: 400;
}

/* Navigation – vertically centered with logo */
.main-navigation {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	align-self: center;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	border-radius: 4px;
	padding: 8px 12px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: 44px;
	height: 44px;
	position: relative;
}

.menu-toggle-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 24px;
	height: 18px;
	position: relative;
}

.menu-toggle-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: #1a1a2e;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
	position: absolute;
	top: 8px;
	left: 0;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
	position: absolute;
	top: 8px;
	left: 0;
	transform: rotate(-45deg);
}

.primary-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
	align-items: center;
}

.primary-menu li {
	margin: 0;
	padding: 0;
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 10px 0;
	color: var(--sb-color-dark, #1a1a2e);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
	z-index: 0;
	isolation: isolate;
}

/* Normal (non-highlight) items: never bold */
.primary-menu > li:not(.sb-menu-item-highlight) > a:not(.sb-menu-highlight) {
	font-weight: 500;
}

/* Non-highlight items: hover/active = primary-light bg + primary text (same as other buttons) */
.primary-menu > li:not(.sb-menu-item-highlight) > a:not(.sb-menu-highlight):hover,
.primary-menu > li:not(.sb-menu-item-highlight).current-menu-item > a:not(.sb-menu-highlight),
.primary-menu > li:not(.sb-menu-item-highlight).current_page_item > a:not(.sb-menu-highlight),
.primary-menu > li:not(.sb-menu-item-highlight).current-menu-ancestor > a:not(.sb-menu-highlight),
.primary-menu > li:not(.sb-menu-item-highlight).current_page_ancestor > a:not(.sb-menu-highlight) {
	color: var(--sb-color-primary, #2271b1);
	font-weight: 500;
}

.primary-menu > li:not(.sb-menu-item-highlight) > a:not(.sb-menu-highlight):hover::after,
.primary-menu > li:not(.sb-menu-item-highlight).current-menu-item > a:not(.sb-menu-highlight)::after,
.primary-menu > li:not(.sb-menu-item-highlight).current_page_item > a:not(.sb-menu-highlight)::after,
.primary-menu > li:not(.sb-menu-item-highlight).current-menu-ancestor > a:not(.sb-menu-highlight)::after,
.primary-menu > li:not(.sb-menu-item-highlight).current_page_ancestor > a:not(.sb-menu-highlight)::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -10px;
	right: -10px;
	height: 34px;
	transform: translateY(-50%);
	border-radius: 999px;
	background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
	z-index: -1;
}

/* Highlighted header nav item (Speisen): default = primary pill + white text */
.primary-menu > li.sb-menu-item-highlight > a,
.primary-menu > li > a.sb-menu-highlight {
	color: #ffffff;
	font-weight: 700;
}

.primary-menu > li.sb-menu-item-highlight > a::before,
.primary-menu > li > a.sb-menu-highlight::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -10px;
	right: -10px;
	height: 34px;
	transform: translateY(-50%);
	border-radius: 999px;
	background: var(--sb-color-primary, #2271b1);
	z-index: -1;
	transition: background 0.3s ease;
}

/* Highlighted item when NOT active/hover: keep primary pill + white text (as in image) */
/* Highlighted item on hover/active: same as other nav – primary-light bg + primary text (ref: Startseite); font-weight unchanged */
.primary-menu > li.sb-menu-item-highlight > a:hover,
.primary-menu > li.sb-menu-item-highlight.current-menu-item > a,
.primary-menu > li.sb-menu-item-highlight.current_page_item > a,
.primary-menu > li.sb-menu-item-highlight.current-menu-ancestor > a,
.primary-menu > li.sb-menu-item-highlight.current_page_ancestor > a,
.primary-menu > li > a.sb-menu-highlight:hover,
.primary-menu > li.current-menu-item > a.sb-menu-highlight,
.primary-menu > li.current_page_item > a.sb-menu-highlight,
.primary-menu > li.current-menu-ancestor > a.sb-menu-highlight,
.primary-menu > li.current_page_ancestor > a.sb-menu-highlight {
	color: var(--sb-color-primary, #2271b1);
}

.primary-menu > li.sb-menu-item-highlight > a:hover::before,
.primary-menu > li.sb-menu-item-highlight.current-menu-item > a::before,
.primary-menu > li.sb-menu-item-highlight.current_page_item > a::before,
.primary-menu > li.sb-menu-item-highlight.current-menu-ancestor > a::before,
.primary-menu > li.sb-menu-item-highlight.current_page_ancestor > a::before,
.primary-menu > li > a.sb-menu-highlight:hover::before,
.primary-menu > li.current-menu-item > a.sb-menu-highlight::before,
.primary-menu > li.current_page_item > a.sb-menu-highlight::before,
.primary-menu > li.current-menu-ancestor > a.sb-menu-highlight::before,
.primary-menu > li.current_page_ancestor > a.sb-menu-highlight::before {
	background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	min-width: 200px;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu li {
	margin: 0;
	padding: 0;
}

.primary-menu .sub-menu a {
	padding: 10px 20px;
	display: block;
	font-size: 14px;
}

.primary-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 5px;
}

/* Mobile drawer (structure exists but only active on mobile) */
.sb-mobile-drawer-backdrop{
	display:none;
}
.sb-mobile-drawer{
	display:none;
}
.sb-mobile-drawer__header,
.sb-mobile-drawer__footer{
	display:none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	/* Off-canvas drawer */
	.sb-mobile-drawer{
		display: flex;
		position: fixed;
		inset: 0 auto 0 0;
		width: min(88vw, 360px);
		height: 100dvh;
		max-height: 100dvh;
		background: rgba(255,255,255,0.88);
		backdrop-filter: blur(22px) saturate(160%);
		-webkit-backdrop-filter: blur(22px) saturate(160%);
		box-shadow: 18px 0 60px rgba(0,0,0,0.14);
		border-right: 1px solid rgba(0,0,0,0.06);
		transform: translateX(-105%);
		transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
		z-index: 10000;
		flex-direction: column;
		padding-top: env(safe-area-inset-top);
		padding-bottom: env(safe-area-inset-bottom);
	}
	body.sb-mobile-menu-open .sb-mobile-drawer{
		transform: translateX(0);
	}

	.sb-mobile-drawer-backdrop{
		display:block;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,0.22);
		opacity: 0;
		pointer-events: none;
		transition: opacity 220ms ease;
		z-index: 9999;
	}
	body.sb-mobile-menu-open .sb-mobile-drawer-backdrop{
		opacity: 1;
		pointer-events: auto;
	}

	.sb-mobile-drawer__header{
		display:flex;
		align-items:center;
		justify-content:space-between;
		gap: 12px;
		padding: 18px 16px 12px;
	}
	.sb-mobile-drawer__logo{
		display:flex;
		align-items:center;
		gap: 10px;
		color: var(--sb-color-dark, #1d2327);
	}
	.sb-mobile-drawer__logo .custom-logo-link,
	.sb-mobile-drawer__logo-text{
		display:flex;
		align-items:center;
		gap: 10px;
		text-decoration:none;
		color: var(--sb-color-dark, #1d2327);
		font-weight: 900;
		font-size: 16px;
		line-height: 1;
	}
	.sb-mobile-drawer__logo img{
		max-height: 42px;
		width: auto;
		height: auto;
	}
	.sb-mobile-drawer__close{
		width: 44px;
		height: 44px;
		border-radius: 999px;
		border: none;
		background: transparent;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		cursor:pointer;
		position: relative;
	}
	.sb-mobile-drawer__close::before,
	.sb-mobile-drawer__close::after{
		content:'';
		position:absolute;
		width: 18px;
		height: 2px;
		background: rgba(0,0,0,0.72);
		border-radius: 2px;
	}
	.sb-mobile-drawer__close::before{ transform: rotate(45deg); }
	.sb-mobile-drawer__close::after{ transform: rotate(-45deg); }

	.sb-mobile-drawer__content{
		flex: 1 1 auto;
		min-height: 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		padding: 6px 16px 12px; /* top/bottom padding for scroll area */
	}

	.sb-mobile-drawer__footer{
		display:flex;
		flex-direction: column;
		gap: 2px;
		padding: 8px 16px 10px;
		border-top: 1px solid rgba(0,0,0,0.06);
	}
	.sb-mobile-drawer__address{
		font-size: 13px;
		line-height: 1.35;
		color: rgba(0,0,0,0.78);
		margin: 0 0 2px 0;
		padding: 0;
	}
	.sb-mobile-drawer__anfahrt{
		display: flex;
		align-items: center;
		gap: 8px;
		text-decoration: none;
		color: var(--sb-color-primary, #2271b1);
		font-weight: 700;
		font-size: 14px;
		padding: 2px 0;
		margin: 0 0 2px 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}
	.sb-mobile-drawer__anfahrt-icon{
		width: 20px;
		height: 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: inherit;
		flex-shrink: 0;
	}
	/* Pin icon: darker outer, lighter inner (drawer + mobile nav) */
	.sb-pin-outer{
		fill: currentColor;
		opacity: 1;
	}
	.sb-pin-inner{
		fill: rgba(255, 255, 255, 0.95);
	}
	.sb-mobile-drawer__anfahrt-text{
		min-width: 0;
	}
	.sb-mobile-drawer__contact{
		display:flex;
		align-items:center;
		gap: 10px;
		text-decoration:none;
		color: rgba(0,0,0,0.82);
		font-weight: 800;
		font-size: 14px;
		padding: 2px 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}
	.sb-mobile-drawer__contact-icon{
		width: 22px;
		height: 22px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		color: var(--sb-color-primary, #2271b1);
	}
	.sb-mobile-drawer__contact-text{
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	/* Menu list inside drawer */
	.sb-mobile-drawer .primary-menu{
		position: static;
		background: transparent;
		box-shadow: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		max-height: none;
		opacity: 1;
		visibility: visible;
		overflow: visible;
	}
	body:not(.sb-mobile-menu-open) .sb-mobile-drawer .primary-menu{
		pointer-events:none;
	}
	body.sb-mobile-menu-open .sb-mobile-drawer .primary-menu{
		pointer-events:auto;
	}

	.sb-mobile-drawer .primary-menu li {
		width: 100%;
		border-bottom: 1px solid rgba(0,0,0,0.06);
	}

	.sb-mobile-drawer .primary-menu li:last-child {
		border-bottom: none;
	}

	.sb-mobile-drawer .primary-menu > li > a {
		display: block;
		position: relative;
		padding: 14px 20px;
		border-radius: 999px;
		font-size: 16px;
		font-weight: 500;
		text-decoration: none;
	}

	.sb-mobile-drawer .primary-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		margin-top: 6px;
		padding-left: 14px;
		display: none;
	}

	.sb-mobile-drawer .primary-menu .sub-menu.active {
		display: block;
	}

	.sb-mobile-drawer .primary-menu .sub-menu a {
		padding: 12px 20px;
		border-radius: 999px;
		font-size: 14px;
		font-weight: 700;
	}

	.sb-mobile-drawer .primary-menu .sub-menu .sub-menu {
		position: static;
		margin-left: 0;
		padding-left: 14px;
	}

	/* Safety: if any old CSS targets `.primary-menu.active`, ignore it on mobile */
	.primary-menu.active{
		max-height: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		overflow: visible !important;
	}

	/* Hide the desktop header menu on mobile */
	.primary-menu--desktop{
		display:none !important;
	}

	/* Drawer: all active/highlight states use same padding and pill – background on link, no pseudo */
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight > a,
	.sb-mobile-drawer .primary-menu > li > a.sb-menu-highlight{
		color: #fff;
		font-weight: 700;
		background: var(--sb-color-primary, #2271b1);
	}
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight > a::before,
	.sb-mobile-drawer .primary-menu > li > a.sb-menu-highlight::before{
		content:none !important;
		display:none !important;
	}
	/* Highlighted item on hover/current: same pill size, primary-light bg + primary text */
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight > a:hover,
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight.current-menu-item > a,
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight.current_page_item > a,
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight.current-menu-ancestor > a,
	.sb-mobile-drawer .primary-menu > li.sb-menu-item-highlight.current_page_ancestor > a,
	.sb-mobile-drawer .primary-menu > li > a.sb-menu-highlight:hover,
	.sb-mobile-drawer .primary-menu > li.current-menu-item > a.sb-menu-highlight,
	.sb-mobile-drawer .primary-menu > li.current_page_item > a.sb-menu-highlight,
	.sb-mobile-drawer .primary-menu > li.current-menu-ancestor > a.sb-menu-highlight,
	.sb-mobile-drawer .primary-menu > li.current_page_ancestor > a.sb-menu-highlight{
		background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
		color: var(--sb-color-primary, #2271b1);
	}
	/* Non-highlight in drawer: hover/current = same pill, primary-light bg + primary text; keep normal weight */
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight) > a:not(.sb-menu-highlight):hover,
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current-menu-item > a:not(.sb-menu-highlight),
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current_page_item > a:not(.sb-menu-highlight),
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current-menu-ancestor > a:not(.sb-menu-highlight),
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current_page_ancestor > a:not(.sb-menu-highlight){
		background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
		color: var(--sb-color-primary, #2271b1);
		font-weight: 500;
	}
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight) > a:not(.sb-menu-highlight):hover::after,
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current-menu-item > a:not(.sb-menu-highlight)::after,
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current_page_item > a:not(.sb-menu-highlight)::after,
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current-menu-ancestor > a:not(.sb-menu-highlight)::after,
	.sb-mobile-drawer .primary-menu > li:not(.sb-menu-item-highlight).current_page_ancestor > a:not(.sb-menu-highlight)::after{
		content: none !important;
		display: none !important;
	}
}

@media (max-width: 420px) {
	.sb-home-categories__grid {
		grid-template-columns: 1fr;
	}
	.sb-home-popular-items__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Footer – three columns: brand+contact | nav | opening hours (symmetric, professional)
   ========================================================================== */

.site-footer {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
	color: var(--sb-color-dark, #1d2327);
	margin-top: 60px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 44px 24px 0;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: start;
	gap: 40px 48px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Column 1: Logo + Address & contact (no extra space between address lines) */
.site-footer__col--brand {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.site-footer__logo {
	line-height: 1;
}

.site-footer__logo .custom-logo-link {
	display: inline-block;
}

.site-footer__logo img {
	display: block;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Larger logo on bigger screens */
@media (min-width: 1024px) {
	.site-footer__logo img {
		max-height: 72px;
	}
}

@media (min-width: 1200px) {
	.site-footer__logo img {
		max-height: 80px;
	}
}

.site-footer__site-name {
	font-size: 20px;
	font-weight: 800;
	color: var(--sb-color-dark, #1d2327);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.site-footer__site-name:hover {
	color: var(--sb-color-primary, #2271b1);
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Tight line spacing so address and city sit close (no gap) */
.site-footer__address {
	font-size: 14px;
	line-height: 1.35;
	margin: 0;
	color: rgba(0, 0, 0, 0.78);
	white-space: pre-line;
}

.site-footer__address br {
	line-height: 1.35;
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--sb-color-primary, #2271b1);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__link:hover {
	color: var(--sb-color-secondary, #135e96);
}

.site-footer__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--sb-color-primary, #2271b1);
}

.site-footer__link-icon svg {
	display: block;
}

/* Section titles (Links, Opening Hours) – bold heading for both styles */
.site-footer__col-title {
	margin: 0 0 14px 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--sb-color-dark, #1d2327);
	line-height: 1.25;
}

.site-footer__hours-title {
	margin-bottom: 12px;
}

/* Hide shortcode title in footer when we show our own */
.site-footer__hours .sb-home-hours .sb-home-section-heading__title {
	display: none;
}

.site-footer__hours .sb-home-hours .sb-home-section-heading__subtitle {
	margin-top: 0;
}

/* Column 2: Footer nav – centered in column for symmetry */
.site-footer__col--nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.site-footer__nav {
	width: 100%;
	max-width: 220px;
}

.footer-menu {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 6px;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

/* Footer links: normal – dark by default, primary on hover */
.site-footer .footer-menu a {
	display: inline-block;
	color: var(--sb-color-dark, #1d2327);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color 0.2s ease, background 0.2s ease;
	padding: 6px 0;
}

.site-footer .footer-menu a:hover {
	color: var(--sb-color-primary, #2271b1);
}

/* Footer links: active/selected (current page, not highlighted) – no background, primary color */
.site-footer .footer-menu li.current-menu-item:not(.sb-menu-item-highlight) a,
.site-footer .footer-menu li.current_page_item:not(.sb-menu-item-highlight) a {
	background: none;
	color: var(--sb-color-primary, #2271b1);
	font-weight: 600;
}

.site-footer .footer-menu li.current-menu-item:not(.sb-menu-item-highlight) a:hover,
.site-footer .footer-menu li.current_page_item:not(.sb-menu-item-highlight) a:hover {
	color: var(--sb-color-primary, #2271b1);
}

/* Footer links: highlighted nav (e.g. Reservierung) – primary bg, white text */
.site-footer .footer-menu li.sb-menu-item-highlight a,
.site-footer .footer-menu a.sb-menu-highlight {
	background: var(--sb-color-primary, #2271b1);
	color: #fff;
	font-weight: 600;
	padding: 6px 12px;
	margin: 0 -12px 0 0;
	border-radius: 999px;
}

/* Footer highlighted nav: when hover or active – primary text, no fill */
.site-footer .footer-menu li.sb-menu-item-highlight a:hover,
.site-footer .footer-menu li.sb-menu-item-highlight.current-menu-item a,
.site-footer .footer-menu li.sb-menu-item-highlight.current_page_item a,
.site-footer .footer-menu a.sb-menu-highlight:hover,
.site-footer .footer-menu li.current-menu-item a.sb-menu-highlight,
.site-footer .footer-menu li.current_page_item a.sb-menu-highlight {
	background: transparent;
	color: var(--sb-color-primary, #2271b1);
}

/* Column 3: Opening hours – aligned right, same visual weight */
.site-footer__col--hours {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.site-footer__hours {
	width: 100%;
	max-width: 300px;
}

.site-footer__hours .sb-home-hours {
	margin: 0;
	padding: 0;
}

/* Footer opening hours: no card background – plain list */
.site-footer__hours .sb-home-hours__card {
	background: transparent;
	border-radius: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}

.site-footer__hours .sb-home-section-heading__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: var(--sb-color-dark, #1d2327);
}

.site-footer__hours .sb-home-section-heading__subtitle {
	margin: 0 0 12px 0;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.65);
}

/* Tighter vertical spacing between day rows */
.site-footer__hours .sb-home-hours__grid {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-footer__hours .sb-home-hours__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

/* Current day row: primary light background */
.site-footer__hours .sb-home-hours__row--today {
	background: var(--sb-color-primary-light, color-mix(in srgb, var(--sb-color-primary) 12%, #fff));
	margin: 0 -8px;
	padding: 6px 8px;
	border-radius: 6px;
}

.site-footer__hours .sb-home-hours__day {
	font-size: 14px;
	font-weight: 600;
}

.site-footer__hours .sb-home-hours__time-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.site-footer__hours .sb-home-hours__time,
.site-footer__hours .sb-home-hours__closed {
	font-size: 14px;
}

.site-footer__hours .sb-home-hours__day-note {
	margin-top: 2px;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.6);
	line-height: 1.35;
}

.site-footer__hours .sb-home-hours__closed {
	color: rgba(0, 0, 0, 0.5);
	font-style: italic;
}

.site-footer__hours .sb-home-hours__note {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(0, 0, 0, 0.7);
}

.site-footer__hours .sb-home-hours__warnings {
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	background: rgba(238, 166, 43, 0.12);
	font-size: 13px;
}

/* Copyright: less spacing, centered */
.site-footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 14px;
	padding-bottom: 20px;
}

.site-info {
	text-align: center;
	max-width: 100%;
}

.site-info p {
	margin: 0;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.55);
	line-height: 1.4;
}

.site-info a {
	color: var(--sb-color-dark, #1d2327);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-info a:hover {
	color: var(--sb-color-primary, #2271b1);
}

/* Footer responsive: stack columns on small screens */
@media (max-width: 768px) {
	.site-footer-container {
		padding: 36px 20px 0;
	}

	.site-footer__columns {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 24px;
		padding-bottom: 24px;
	}

	.site-footer__logo img {
		max-height: 56px;
	}

	.site-footer__col--nav {
		justify-content: flex-start;
	}

	.site-footer__nav {
		max-width: none;
	}

	.site-footer__col--hours {
		justify-content: flex-start;
	}

	.site-footer__hours {
		max-width: none;
	}

	.site-footer-bottom {
		padding-top: 12px;
		padding-bottom: 18px;
	}
}

@media (max-width: 480px) {
	.site-footer__columns {
		gap: 28px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.site-footer-bottom {
		padding-top: 10px;
		padding-bottom: 16px;
	}
}

/* ==========================================================================
   Footer style: With map – first row full-width map, then same 3 columns
   ========================================================================== */

.site-footer__map-row {
	width: 100%;
	margin-bottom: 32px;
}

.site-footer__map-wrap {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-footer__map-wrap .sb-map-container,
.site-footer__map-wrap iframe {
	display: block;
	width: 100%;
	border: none;
	vertical-align: top;
}

.site-footer--alt .site-footer-container {
	padding-top: 40px;
}

/* With-map responsive */
@media (max-width: 768px) {
	.site-footer__map-row {
		margin-bottom: 28px;
	}

	.site-footer__map-wrap {
		border-radius: 12px;
		min-height: 220px;
	}
}

@media (max-width: 480px) {
	.site-footer__map-row {
		margin-bottom: 24px;
	}

	.site-footer__map-wrap {
		border-radius: 10px;
		min-height: 200px;
	}
}

/* ==========================================================================
   General Styles
   ========================================================================== */

.site-content {
	min-height: calc(100vh - 200px);
}

/* Content Container - Consistent width across all pages */
.site-content-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	width: 100%;
	box-sizing: border-box;
}

/* Full-width sections (for backgrounds, hero sections, etc.) */
.site-content-section {
	width: 100%;
}

.site-content-section .site-content-container {
	position: relative;
	z-index: 1;
}

/* SB custom page templates: same as home – background, colors, header, footer from theme settings.
   Only layout/spacing below; no fixed colors or backgrounds. */
.sb-page-template.sb-page-template--no-title .site-content-container,
.sb-page-template.sb-page-template--hero .site-content-container,
.sb-page-template.sb-page-template--reservation .site-content-container,
.sb-page-template.sb-page-template--sb-page .site-content-container,
.sb-page-template.sb-page-template--sb-page-contact .site-content-container,
.sb-page-template.sb-page-template--sb-page-reviews .site-content-container,
.sb-page-template.sb-page-template--sb-page-gallery .site-content-container {
	padding-top: 34px;
	padding-bottom: 34px;
}

/* When form section is the first section (no content before it): reduce space between header and form – all screen sizes */
.sb-page-template--sb-page-contact .site-content-container:has(.entry-content > .sb-contact-page-form:first-child),
.sb-page-template--sb-page-reviews .site-content-container:has(.entry-content > .sb-reviews-page-form:first-child),
.sb-page-template--reservation .site-content-container:has(.entry-content > .sb-reservation-page-form:first-child) {
	padding-top: 1em;
}
.sb-page-template--sb-page-contact .entry-content > .sb-contact-page-form:first-child .sb-reservation-form-wrap,
.sb-page-template--sb-page-reviews .entry-content > .sb-reviews-page-form:first-child .sb-reservation-form-wrap,
.sb-page-template--reservation .entry-content > .sb-reservation-page-form:first-child .sb-reservation-form-wrap {
	padding-top: 1em;
}
/* Image left/right: no top padding on wrap so image fills cell from top to bottom */
.sb-page-template--sb-page-contact .entry-content > .sb-contact-page-form:first-child .sb-reservation-form-wrap--image-left,
.sb-page-template--sb-page-contact .entry-content > .sb-contact-page-form:first-child .sb-reservation-form-wrap--image-right,
.sb-page-template--sb-page-reviews .entry-content > .sb-reviews-page-form:first-child .sb-reservation-form-wrap--image-left,
.sb-page-template--sb-page-reviews .entry-content > .sb-reviews-page-form:first-child .sb-reservation-form-wrap--image-right,
.sb-page-template--reservation .entry-content > .sb-reservation-page-form:first-child .sb-reservation-form-wrap--image-left,
.sb-page-template--reservation .entry-content > .sb-reservation-page-form:first-child .sb-reservation-form-wrap--image-right {
	padding-top: 0;
}
.sb-page-template--sb-page-contact .entry-content > .sb-contact-page-form:first-child .sb-reservation-form-wrap--image-left .sb-reservation-form-wrap__form,
.sb-page-template--sb-page-contact .entry-content > .sb-contact-page-form:first-child .sb-reservation-form-wrap--image-right .sb-reservation-form-wrap__form,
.sb-page-template--sb-page-reviews .entry-content > .sb-reviews-page-form:first-child .sb-reservation-form-wrap--image-left .sb-reservation-form-wrap__form,
.sb-page-template--sb-page-reviews .entry-content > .sb-reviews-page-form:first-child .sb-reservation-form-wrap--image-right .sb-reservation-form-wrap__form,
.sb-page-template--reservation .entry-content > .sb-reservation-page-form:first-child .sb-reservation-form-wrap--image-left .sb-reservation-form-wrap__form,
.sb-page-template--reservation .entry-content > .sb-reservation-page-form:first-child .sb-reservation-form-wrap--image-right .sb-reservation-form-wrap__form {
	padding-top: 1em;
}

@media (max-width: 768px) {
	body.sb-page-template .site-main {
		padding-top: 0;
	}
	.sb-page-template .site-content-container {
		padding-left: 16px;
		padding-right: 16px;
		padding-top: 24px;
		padding-bottom: 24px;
	}
	/* Form pages (contact, reviews, reservation): only 1em spacing on all corners for maximum form width */
	.sb-page-template--sb-page-contact .site-content-container,
	.sb-page-template--sb-page-reviews .site-content-container,
	.sb-page-template--reservation .site-content-container {
		padding: 1em;
	}
	/* When form is first section on mobile: minimal top spacing between header and form */
	.sb-page-template--sb-page-contact .site-content-container:has(.entry-content > .sb-contact-page-form:first-child),
	.sb-page-template--sb-page-reviews .site-content-container:has(.entry-content > .sb-reviews-page-form:first-child),
	.sb-page-template--reservation .site-content-container:has(.entry-content > .sb-reservation-page-form:first-child) {
		padding-top: 0.75em;
	}
	/* Gallery page: reduce spacing between nav header and post section on smaller screens */
	.sb-page-template--sb-page-gallery .site-content-container {
		padding-top: 1em;
	}
	.sb-page-template--hero .site-hero-sidebar,
	.sb-page-template--reservation .site-hero-sidebar {
		margin-top: 0;
	}
}

/* Contact, reservation, reviews: form section wrapper – same layout for all (no background image/color,
   with background image or color, or image left/right/background – all handled by shortcode output). */
.sb-contact-page-form,
.sb-reservation-page-form,
.sb-reviews-page-form,
.sb-business-lunch-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Business lunch: title block full width (heading + date + description) */
.sb-business-lunch .sb-business-lunch__heading-wrap {
	width: 100%;
	box-sizing: border-box;
}
.sb-business-lunch .sb-business-lunch__heading-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 20px 20px;
	box-sizing: border-box;
}
@media (max-width: 768px) {
	.sb-business-lunch .sb-business-lunch__heading-inner {
		padding-left: 16px;
		padding-right: 16px;
		padding-top: 16px;
		padding-bottom: 18px;
	}
}
/* Mittagskarte title: same as home page section titles */
.sb-business-lunch .sb-home-section-heading__title {
	margin: 0 0 4px 0;
	font-weight: 900;
}
.sb-business-lunch__title-date {
	font-weight: normal;
	font-size: var(--sb-fs-h2);
	line-height: var(--sb-lh-heading);
	letter-spacing: -0.02em;
	color: var(--sb-home-dark, #1d2327);
}
.sb-business-lunch .sb-home-section-heading__subtitle {
	margin: 0 0 2px 0;
}
.sb-business-lunch__description {
	margin-top: 0.25em;
	margin-bottom: 0.75em;
}

/* Business lunch: valid-for / valid-from / as-of date line */
.sb-business-lunch__date-line {
	margin: 0 0 0.5em;
	font-size: 0.95em;
	color: rgba(0, 0, 0, 0.7);
}

/* Business lunch: groups and item list – same section/heading as other SB pages */
.sb-business-lunch__group {
	margin-top: 1em;
}
.sb-business-lunch__group:first-of-type {
	margin-top: 0;
}
.sb-business-lunch__group-heading-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 0.2em;
}
.sb-business-lunch__group-title {
	margin: 0;
	font-size: 1.125em;
	font-weight: 700;
}
.sb-business-lunch__group-heading-row .sb-business-lunch__group-subtitle {
	margin: 0;
	font-size: 0.95em;
	color: var(--sb-color-secondary, #135e96);
	font-weight: 600;
}
.sb-business-lunch__group-description {
	margin: 0 0 0.35em;
	font-size: 0.95em;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.8);
}
.sb-business-lunch__group-note {
	margin: 0 0 0.5em;
	padding: 10px 14px;
	border-radius: 8px;
	border: none;
	font-size: 0.9em;
	line-height: 1.5;
	background: var(--sb-color-warning-light, #faf3e6);
	color: var(--sb-color-warning, #dba617);
}
/* Dietary/spice/allergies reference section after content */
.sb-business-lunch__reference-wrap {
	margin-top: 1.5em;
	padding-top: 1em;
}
/* Mittagskarte items: same grid and typography as menucard/speisen */
.sb-business-lunch__cards {
	margin-top: 0.5em;
}
.sb-business-lunch--empty .sb-business-lunch__empty {
	margin: 0;
}
/* Match menu page card variables (font sizes, so titles/prices/badges match exactly) */
.sb-business-lunch {
	--sb-menu-fs-card: 16px;
	--sb-menu-fs-dish: 14px;
	--sb-menu-fs-meta: 12px;
}
/* First row: align item name and price on same row (no uneven spacing) */
.sb-business-lunch .sb-menu-card__top {
	align-items: center;
}
.sb-business-lunch .sb-menu-card__title {
	margin: 0;
	padding: 0;
	font-size: var(--sb-menu-fs-card);
	line-height: 1.2;
}
.sb-business-lunch .sb-menu-card__price {
	font-size: var(--sb-menu-fs-dish);
}
/* Second row: reduce gap between title and description */
.sb-business-lunch .sb-menu-card__excerpt {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.6);
}
/* Third row: badges (dietary/spice icons) visible */
.sb-business-lunch .sb-menu-card__meta {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.sb-business-lunch .sb-menu-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sb-business-lunch .sb-menu-badge i {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	/* Font Awesome icons (same as menu card page) */
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}
.sb-business-lunch .sb-menu-badge .sb-menu-badge__img {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}
/* Allergy chip: same style as menu card (primary color) */
.sb-business-lunch .sb-menu-chip--all {
	color: var(--sb-color-primary, #2271b1);
	background: rgba(255, 255, 255, 0.8);
}
/* Menu card without image (Mittagskarte items use same component) */
.sb-menu-card--no-image .sb-menu-card__header {
	padding-left: 14px;
}

.sb-business-lunch__footer-note {
	margin-top: 1.25em;
	padding: 12px 16px;
	border-radius: 8px;
	border: none;
	font-size: 0.95em;
	line-height: 1.5;
	background: var(--sb-color-warning-light, #faf3e6);
	color: var(--sb-color-warning, #dba617);
}
/* Less space between heading block and groups content */
.sb-business-lunch > .site-content-container {
	padding-top: 8px;
	padding-bottom: 28px;
}

/* Form section with image left/right: image must fill entire cell (top to bottom, no white gap) */
@media (min-width: 769px) {
	.sb-contact-page-form .sb-reservation-form-wrap--image-left .sb-reservation-form-wrap__image,
	.sb-contact-page-form .sb-reservation-form-wrap--image-right .sb-reservation-form-wrap__image,
	.sb-reviews-page-form .sb-reservation-form-wrap--image-left .sb-reservation-form-wrap__image,
	.sb-reviews-page-form .sb-reservation-form-wrap--image-right .sb-reservation-form-wrap__image,
	.sb-reservation-page-form .sb-reservation-form-wrap--image-left .sb-reservation-form-wrap__image,
	.sb-reservation-page-form .sb-reservation-form-wrap--image-right .sb-reservation-form-wrap__image {
		align-self: stretch;
		min-height: 0;
	}
	.sb-contact-page-form .sb-reservation-form-wrap__image-inner,
	.sb-reviews-page-form .sb-reservation-form-wrap__image-inner,
	.sb-reservation-page-form .sb-reservation-form-wrap__image-inner {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 100% !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
	}
}

/* ==========================================================================
   SB block templates: header/footer same styling as home, content same width
   (when header/footer are used via shortcode in block templates)
   ========================================================================== */

/* Header/footer design parts: no extra spacing from block or shortcode wrapper */
.sb-template-part-header-wrap,
.sb-template-part-footer-wrap,
.sb-design-part,
.wp-block-shortcode:has(> .sb-template-part-header-wrap),
.wp-block-shortcode:has(> .sb-template-part-footer-wrap) {
	margin: 0;
	padding: 0;
	max-width: none;
}

/* Less space between header and hero (reservation / hero pages) */
.sb-template-part-header-wrap {
	margin-bottom: 10px;
}

/* Footer top spacing: match home page (60px) when footer is a design part */
.sb-template-part-footer-wrap {
	margin-top: 60px;
}
.sb-template-part-footer-wrap .site-footer {
	margin-top: 0;
}

/* Content area in SB block templates: same width as home (.site-content-container) */
.sb-page-template-content {
	margin: 0;
	padding: 0;
	max-width: none;
	width: 100%;
}

.sb-page-template-content .wp-block-group {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	padding: 40px 20px;
	width: 100%;
	box-sizing: border-box;
}

/* More space between hero and reservation form (group that contains hero + form) */
.wp-block-group:has(.site-hero-sidebar) > .wp-block-group {
	padding-top: 56px;
}

.sb-page-template-content .wp-block-post-content {
	max-width: none;
	width: 100%;
}

@media (max-width: 1200px) {
	.sb-page-template-content .wp-block-group {
		max-width: 100%;
		padding: 30px 20px;
	}
	.wp-block-group:has(.site-hero-sidebar) > .wp-block-group {
		padding-top: 48px;
	}
}

@media (max-width: 768px) {
	.sb-page-template-content .wp-block-group {
		padding: 24px 16px;
	}
	.wp-block-group:has(.site-hero-sidebar) > .wp-block-group {
		padding-top: 32px;
	}
	.sb-template-part-footer-wrap .site-footer,
	.sb-template-part-footer-wrap {
		margin-top: 40px;
	}
}

/* Entry Content Styles */
.entry-content {
	line-height: 1.8;
	color: #333;
	font-size: var(--sb-fs-text);
}

.entry-content p {
	margin-bottom: 1.5em;
}

/* Hide default-style paragraph above hero and remove its margin (block editor often adds an empty p) */
.entry-content > p.is-style-default:first-child {
	margin: 0 !important;
	display: none !important;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-top: 2em;
	margin-bottom: 1em;
	font-weight: 600;
	line-height: 1.3;
}

.entry-content h1 {
	font-size: var(--sb-fs-h1);
	line-height: var(--sb-lh-heading);
}

.entry-content h2 {
	font-size: var(--sb-fs-h2);
	line-height: var(--sb-lh-heading);
}

.entry-content h3 {
	font-size: var(--sb-fs-h3);
	line-height: 1.2;
}

.entry-content h4 {
	font-size: 18px;
}

.entry-content h5 {
	font-size: 16px;
}

.entry-content h6 {
	font-size: 15px;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.5em;
	padding-left: 2em;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 1em 2em;
	border-left: 4px solid #667eea;
	background: #f9f9f9;
	font-style: italic;
}

.entry-content a {
	color: #667eea;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-content a:hover {
	color: #2271b1;
	text-decoration: underline;
}

/* Impressum & Datenschutz custom HTML content – typography scoped to added HTML only, compact spacing */
.sb-impressum__custom-html,
.sb-datenschutz__custom-html {
	color: var(--sb-color-dark, #333);
	font-size: var(--sb-fs-text);
	line-height: var(--sb-lh-text, 1.7);
}

.sb-impressum__custom-html p,
.sb-datenschutz__custom-html p {
	margin-top: 0;
	margin-bottom: 0.5em;
}

.sb-impressum__custom-html p:first-child,
.sb-datenschutz__custom-html p:first-child {
	margin-top: 0;
}

.sb-impressum__custom-html p:last-child,
.sb-datenschutz__custom-html p:last-child {
	margin-bottom: 0;
}

.sb-impressum__custom-html h1,
.sb-impressum__custom-html h2,
.sb-impressum__custom-html h3,
.sb-impressum__custom-html h4,
.sb-datenschutz__custom-html h1,
.sb-datenschutz__custom-html h2,
.sb-datenschutz__custom-html h3,
.sb-datenschutz__custom-html h4 {
	margin-top: 1em;
	margin-bottom: 0.4em;
	font-weight: 600;
	line-height: var(--sb-lh-heading, 1.2);
	color: var(--sb-color-dark, #1d2327);
}

.sb-impressum__custom-html h1:first-child,
.sb-impressum__custom-html h2:first-child,
.sb-impressum__custom-html h3:first-child,
.sb-impressum__custom-html h4:first-child,
.sb-datenschutz__custom-html h1:first-child,
.sb-datenschutz__custom-html h2:first-child,
.sb-datenschutz__custom-html h3:first-child,
.sb-datenschutz__custom-html h4:first-child {
	margin-top: 0;
}

.sb-impressum__custom-html ul,
.sb-impressum__custom-html ol,
.sb-datenschutz__custom-html ul,
.sb-datenschutz__custom-html ol {
	margin-top: 0.4em;
	margin-bottom: 0.5em;
	padding-left: 1.5em;
}

.sb-impressum__custom-html li,
.sb-datenschutz__custom-html li {
	margin-bottom: 0.25em;
}

.sb-impressum__custom-html h1,
.sb-datenschutz__custom-html h1 {
	font-size: var(--sb-fs-h1);
}

.sb-impressum__custom-html h2,
.sb-datenschutz__custom-html h2 {
	font-size: var(--sb-fs-h2);
}

.sb-impressum__custom-html h3,
.sb-datenschutz__custom-html h3 {
	font-size: var(--sb-fs-h3);
}

.sb-impressum__custom-html h4,
.sb-datenschutz__custom-html h4 {
	font-size: 18px;
}

.sb-impressum__custom-html a,
.sb-datenschutz__custom-html a {
	color: var(--sb-color-primary, #2271b1);
	text-decoration: none;
}

.sb-impressum__custom-html a:hover,
.sb-datenschutz__custom-html a:hover {
	text-decoration: underline;
}

/* Entry Header */
.entry-header {
	margin-bottom: 2em;
}

.entry-title {
	font-size: var(--sb-fs-h1);
	font-weight: 700;
	line-height: var(--sb-lh-heading);
	margin-bottom: 0.5em;
	color: #1a1a2e;
}

.entry-title a {
	color: #1a1a2e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-title a:hover {
	color: #667eea;
}

.entry-meta {
	font-size: 0.9em;
	color: #666;
	margin-top: 0.5em;
}

/* Page Header (for archives) */
.page-header {
	margin-bottom: 3em;
	padding-bottom: 1em;
	border-bottom: 2px solid #e0e0e0;
}

.page-title {
	font-size: var(--sb-fs-h1);
	font-weight: 700;
	line-height: var(--sb-lh-heading);
	margin-bottom: 0.5em;
	color: #1a1a2e;
}

.archive-description {
	font-size: var(--sb-fs-text);
	color: #666;
	line-height: 1.6;
	margin-top: 1em;
}

/* Responsive Content Width */
@media (max-width: 1200px) {
	.site-content-container {
		max-width: 100%;
		padding: 30px 20px;
	}
}

@media (max-width: 768px) {
	.site-content-container {
		padding: 20px 15px;
	}

	.entry-title,
	.page-title {
		font-size: var(--sb-fs-h1);
	}

	.entry-content h1 {
		font-size: var(--sb-fs-h1);
	}

	.entry-content h2 {
		font-size: var(--sb-fs-h2);
	}

	.entry-content h3 {
		font-size: var(--sb-fs-h3);
	}
}

/* Skip Link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 2.5em;
	z-index: 999999;
}

.skip-link:focus {
	left: 6px;
	display: block;
	text-decoration: none;
}

/* ==========================================================================
   Home Page (SB Home) Styles
   ========================================================================== */

.sb-home {
	--sb-home-primary: var(--sb-color-primary, #2271b1);
	--sb-home-secondary: var(--sb-color-secondary, #135e96);
	--sb-home-dark: var(--sb-color-dark, #1d2327);
	--sb-home-light: var(--sb-color-light, #f0f0f1);
	--sb-home-surface: #ffffff;
	--sb-home-border: rgba(0, 0, 0, 0.08);
	--sb-home-muted: rgba(0, 0, 0, 0.6);

	background: transparent;
}

.sb-home .site-content-section {
	background: transparent;
}

/* Consistent spacing between all home sections (hero, categories, popular, reviews, custom) */
.sb-home {
	--sb-home-section-gap: 2.5rem;
}
.sb-home .site-content-section + .site-content-section {
	margin-top: var(--sb-home-section-gap);
}

.sb-home-section-heading {
	text-align: center;
	margin-bottom: 22px;
}

.sb-home-section-heading--left {
	text-align: left;
	margin-bottom: 18px;
}

/* Match .sb-home-section__title (same as other home page sections) */
.sb-home-section-heading__title {
	margin: 0 0 8px 0;
	font-weight: 900;
	font-size: var(--sb-fs-h2);
	line-height: var(--sb-lh-heading);
	letter-spacing: -0.02em;
	color: var(--sb-home-dark);
}

/* Match .sb-home-section__subtitle */
.sb-home-section-heading__subtitle {
	margin: 0 0 6px 0;
	color: var(--sb-color-primary, #2271b1);
	font-weight: 600;
	font-size: var(--sb-fs-subtitle);
	letter-spacing: 0;
	text-transform: none;
	line-height: 1.6;
}

/* Match .sb-home-section__desc */
.sb-home-section-heading__description {
	margin: 10px 0 0 0;
	color: var(--sb-home-muted);
	font-size: var(--sb-fs-text);
	line-height: var(--sb-lh-text);
	max-width: 70ch;
}

/* Section background (light theme colors) – applied to categories, popular items, custom sections. Title stays black. */
.sb-home .site-content-section.sb-home-section--bg-primary {
	background: var(--sb-color-primary-light, #e8f0f7);
}
.sb-home .site-content-section.sb-home-section--bg-primary .sb-home-section-heading__subtitle {
	color: var(--sb-color-primary);
}
.sb-home .site-content-section.sb-home-section--bg-primary .sb-home-section-heading__description {
	color: var(--sb-color-dark);
	opacity: 0.85;
}
.sb-home .site-content-section.sb-home-section--bg-primary .sb-home-section__subtitle {
	color: var(--sb-color-primary);
}
.sb-home .site-content-section.sb-home-section--bg-primary .sb-home-section__desc {
	color: var(--sb-color-dark);
	opacity: 0.85;
}

.sb-home .site-content-section.sb-home-section--bg-secondary {
	background: var(--sb-color-secondary-light, #e5eef5);
}
.sb-home .site-content-section.sb-home-section--bg-secondary .sb-home-section-heading__subtitle {
	color: var(--sb-color-secondary);
}
.sb-home .site-content-section.sb-home-section--bg-secondary .sb-home-section-heading__description {
	color: var(--sb-color-dark);
	opacity: 0.85;
}
.sb-home .site-content-section.sb-home-section--bg-secondary .sb-home-section__subtitle {
	color: var(--sb-color-secondary);
}
.sb-home .site-content-section.sb-home-section--bg-secondary .sb-home-section__desc {
	color: var(--sb-color-dark);
	opacity: 0.85;
}

.sb-home .site-content-section.sb-home-section--bg-dark {
	background: var(--sb-color-dark-light, #e8e9ea);
}
.sb-home .site-content-section.sb-home-section--bg-dark .sb-home-section-heading__description {
	color: var(--sb-color-dark);
	opacity: 0.75;
}
.sb-home .site-content-section.sb-home-section--bg-dark .sb-home-section__desc {
	color: var(--sb-color-dark);
	opacity: 0.75;
}

.sb-home .site-content-section.sb-home-section--bg-success {
	background: var(--sb-color-success-light, #e6f4ea);
}
.sb-home .site-content-section.sb-home-section--bg-success .sb-home-section-heading__subtitle {
	color: var(--sb-color-success);
}
.sb-home .site-content-section.sb-home-section--bg-success .sb-home-section-heading__description {
	color: var(--sb-color-dark);
	opacity: 0.85;
}
.sb-home .site-content-section.sb-home-section--bg-success .sb-home-section__subtitle {
	color: var(--sb-color-success);
}
.sb-home .site-content-section.sb-home-section--bg-success .sb-home-section__desc {
	color: var(--sb-color-dark);
	opacity: 0.85;
}

.sb-home .site-content-section.sb-home-section--bg-warning {
	background: var(--sb-color-warning-light, #faf3e6);
}
.sb-home .site-content-section.sb-home-section--bg-warning .sb-home-section-heading__subtitle {
	color: var(--sb-color-warning);
}
.sb-home .site-content-section.sb-home-section--bg-warning .sb-home-section-heading__description {
	color: var(--sb-color-dark);
	opacity: 0.85;
}
.sb-home .site-content-section.sb-home-section--bg-warning .sb-home-section__subtitle {
	color: var(--sb-color-warning);
}
.sb-home .site-content-section.sb-home-section--bg-warning .sb-home-section__desc {
	color: var(--sb-color-dark);
	opacity: 0.85;
}

.sb-home .site-content-section.sb-home-section--bg-error {
	background: var(--sb-color-error-light, #fce8e8);
}
.sb-home .site-content-section.sb-home-section--bg-error .sb-home-section-heading__subtitle {
	color: var(--sb-color-error);
}
.sb-home .site-content-section.sb-home-section--bg-error .sb-home-section-heading__description {
	color: var(--sb-color-dark);
	opacity: 0.85;
}
.sb-home .site-content-section.sb-home-section--bg-error .sb-home-section__subtitle {
	color: var(--sb-color-error);
}
.sb-home .site-content-section.sb-home-section--bg-error .sb-home-section__desc {
	color: var(--sb-color-dark);
	opacity: 0.85;
}

/* Add padding when section has background so content doesn’t touch edges */
/* When section has background: inset (not full width), rounded corners */
/* Home page sections with background: original spacing (categories, popular, custom sections) */
.sb-home .site-content-section[class*="sb-home-section--bg-"] {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	border-radius: 16px;
	overflow: hidden;
	box-sizing: border-box;
}
.sb-home .site-content-section[class*="sb-home-section--bg-"] .site-content-container {
	padding: 0 24px;
	box-sizing: border-box;
}
@media (max-width: 1200px) {
	.sb-home .site-content-section[class*="sb-home-section--bg-"] {
		width: calc(100% - 40px);
		max-width: none;
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media (max-width: 768px) {
	.sb-home .site-content-section[class*="sb-home-section--bg-"] {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}
	.sb-home {
		--sb-home-section-gap: 2rem;
	}
}

/* Hero section BLOCK on pages only – no background: no padding, content starts at edges */
.entry-content .site-content-section.sb-home-section:not([class*="--bg-"]),
.wp-block-post-content .site-content-section.sb-home-section:not([class*="--bg-"]) {
	padding: 0;
}
.entry-content .site-content-section.sb-home-section:not([class*="--bg-"]) .site-content-container,
.wp-block-post-content .site-content-section.sb-home-section:not([class*="--bg-"]) .site-content-container {
	padding: 0;
}

/* Hero section BLOCK on pages only – with background: container has padding, rounded corners */
.entry-content .site-content-section[class*="sb-home-section--bg-"],
.wp-block-post-content .site-content-section[class*="sb-home-section--bg-"] {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
	box-sizing: border-box;
}
.entry-content .site-content-section[class*="sb-home-section--bg-"] .site-content-container,
.wp-block-post-content .site-content-section[class*="sb-home-section--bg-"] .site-content-container {
	padding: 1em;
}
@media (max-width: 1200px) {
	.entry-content .site-content-section[class*="sb-home-section--bg-"],
	.wp-block-post-content .site-content-section[class*="sb-home-section--bg-"] {
		width: calc(100% - 40px);
		max-width: none;
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media (max-width: 768px) {
	.entry-content .site-content-section[class*="sb-home-section--bg-"],
	.wp-block-post-content .site-content-section[class*="sb-home-section--bg-"] {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}
}

/* Hero */
.sb-home-hero {
	position: relative;
	background: transparent;
}

.sb-home-hero__viewport {
	position: relative;
	overflow: hidden;
	touch-action: pan-y; /* allow vertical scroll; JS handles horizontal swipes */
}

.sb-home-hero__track {
	display: flex;
	align-items: flex-start; /* per-slide natural height for dynamic viewport */
	transform: translate3d(0,0,0);
	transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.sb-home-hero__slide {
	flex: 0 0 100%;
	min-width: 100%;
	padding: 28px 0;
}

.sb-home-hero__container {
	padding-top: 34px;
	padding-bottom: 34px;
}

/* Keep hero arrows from covering text on desktop */
@media (min-width: 769px) {
	.sb-home-hero__container {
		padding-left: 74px;
		padding-right: 74px;
	}
}

.sb-home-hero__grid {
	display: flex;
	gap: 28px;
	align-items: center;
}

/* Desktop: image right = content left, media right (nav-between hidden) */
.sb-home-hero__content {
	order: 1;
	flex: 1 1 55%;
}
.sb-home-hero__media {
	order: 2;
}

.sb-home-hero__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sb-color-primary, #2271b1);
	font-weight: 600;
	font-size: var(--sb-fs-subtitle);
	margin-bottom: 14px;
}

.sb-home-hero__title {
	margin: 0 0 12px 0;
	font-size: var(--sb-fs-h1);
	line-height: var(--sb-lh-heading);
	letter-spacing: -0.03em;
	color: var(--sb-home-dark);
	font-weight: 900;
}

.sb-home-hero__text {
	margin: 0;
	font-size: var(--sb-fs-text);
	line-height: var(--sb-lh-text);
	color: var(--sb-home-muted);
	max-width: 60ch;
}

.sb-home-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

/* Use common SB button component styling for CTAs */
.sb-home .sb-home-cta-btn.sb-button{
	border-radius: 12px;
	font-weight: 700;
}

.sb-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 0 16px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sb-home-btn--primary {
	background: var(--sb-color-primary, #2271b1);
	color: #fff;
	box-shadow: 0 12px 30px rgba(34, 113, 177, 0.22);
}

.sb-home-btn--secondary {
	background: rgba(255, 255, 255, 0.25);
	color: var(--sb-home-dark);
	border: none;
	backdrop-filter: blur(6px);
}

.sb-home-btn:hover {
	transform: translateY(-1px);
}

.sb-home-hero__media {
	flex: 1 1 45%;
}

.sb-home-hero__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: none;
	border: none;
}

.sb-home-hero__image--placeholder {
	background:
		linear-gradient(135deg, rgba(34,113,177,0.12), rgba(19,94,150,0.10)),
		repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 10px, rgba(0,0,0,0.02) 10px 20px);
}

.sb-home-hero[data-image-pos="left"] .sb-home-hero__content {
	order: 2;
}

.sb-home-hero[data-image-pos="left"] .sb-home-hero__media {
	order: 1;
}

.sb-home-hero[data-layout="overlay"] .sb-home-hero__grid {
	position: relative;
	min-height: 420px;
}

.sb-home-hero[data-layout="overlay"] .sb-home-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.sb-home-hero[data-layout="overlay"] .sb-home-hero__image {
	aspect-ratio: auto;
	height: 100%;
	border-radius: 24px;
	filter: saturate(1.05);
}

.sb-home-hero[data-layout="overlay"] .sb-home-hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	padding: 22px;
	border-radius: 18px;
	border: none;
}

/* In-slide arrows (between image and text) – only used on small screens */
.sb-home-hero__nav-between {
	display: none;
}

/* Controls wrapper: positioning context for nav + dots; on mobile becomes a row below the image */
.sb-home-hero__controls {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	pointer-events: none;
}

.sb-home-hero__controls .sb-home-hero__nav,
.sb-home-hero__controls .sb-home-hero__dots {
	pointer-events: auto;
}

.sb-home-hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: none; /* no visible outline */
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 26px rgba(0,0,0,0.10);
	color: var(--sb-color-primary, #2271b1);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 0; /* helps keep icon perfectly centered */
}

/* Use same chevron icon as other sliders */
.sb-home-hero__nav::before{
	content:"";
	display:block;
	width:11px;
	height:11px;
	border-right:3px solid currentColor;
	border-bottom:3px solid currentColor;
	box-sizing:border-box;
	/* Slight offset to visually center chevron */
	transform:translateX(-1px) rotate(135deg);
}
.sb-home-hero__nav--next::before{
	transform:translateX(1px) rotate(-45deg);
}

.sb-home-hero__nav--prev {
	left: 14px;
}

.sb-home-hero__nav--next {
	right: 14px;
}

.sb-home-hero__nav span {
	display: none;
}

.sb-home-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 6;
}

.sb-home-hero__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: none;
	background: rgba(0, 0, 0, 0.22);
	cursor: pointer;
	padding: 0;
}

.sb-home-hero__dot.is-active {
	background: var(--sb-home-primary);
	width: 22px;
}

/* ==========================================================================
   Shared slider controls (reusable: home hero + reviews slider)
   Same arrow buttons and dots look; each slider keeps its own layout/positioning.
   ========================================================================== */
.sb-slider-controls__nav {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
	color: var(--sb-home-primary, var(--sb-color-primary, #2271b1));
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 0;
	transition: background 0.2s ease, color 0.2s ease;
}
.sb-slider-controls__nav:hover {
	background: var(--sb-home-primary, var(--sb-color-primary, #2271b1));
	color: #fff;
}
.sb-slider-controls__nav::before {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	border-right: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	box-sizing: border-box;
	transform: translateX(-1px) rotate(135deg);
}
.sb-slider-controls__nav--next::before {
	transform: translateX(1px) rotate(-45deg);
}
.sb-slider-controls__nav span {
	display: none;
}

.sb-slider-controls__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.sb-slider-controls__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: none;
	background: rgba(0, 0, 0, 0.22);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, width 0.2s ease;
}
.sb-slider-controls__dot:hover {
	background: rgba(0, 0, 0, 0.35);
}
.sb-slider-controls__dot.is-active {
	background: var(--sb-home-primary, var(--sb-color-primary, #2271b1));
	width: 22px;
}

/* Dynamic height: viewport height follows active slide (JS sets height) */
.sb-slider__viewport {
	min-height: 200px;
	transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Small screens: image on top, arrows between image and text, text below, dots at bottom */
@media (max-width: 768px) {
	/* Less space between header and slider */
	.sb-home .site-main {
		padding-top: 0;
	}
	.sb-home .site-content-section.sb-home-hero {
		margin-top: 0;
	}
	.sb-home-hero__viewport {
		display: flex;
		flex-direction: column;
	}
	.sb-home-hero__track {
		flex: 1 1 auto;
		min-height: 0;
	}
	.sb-home-hero__slide {
		padding: 0;
		padding-top: 8px;
	}
	.sb-home-hero .sb-home-hero__container {
		padding: 0 16px 0;
		max-width: none;
		width: 100%;
		box-sizing: border-box;
		padding-bottom: 0;
	}
	/* Stack: image on top, then arrows, then text */
	.sb-home-hero__grid {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.sb-home-hero__media {
		order: 1;
		flex: none;
		width: 100%;
		position: relative;
	}
	.sb-home-hero__image {
		width: 100%;
		aspect-ratio: 4 / 3;
		border-radius: 12px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	/* Arrows at bottom of image, slightly up from the edge */
	.sb-home-hero__nav-between {
		display: flex !important;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 12px;
		position: absolute;
		bottom: 14px;
		left: 0;
		right: 0;
		padding: 12px 16px;
		border-radius: 0 0 12px 12px;
	}
	.sb-home-hero__content {
		order: 3;
		padding: 18px 0 20px 0;
		margin-top: 4px;
		background: transparent;
		backdrop-filter: none;
	}
	/* Hide viewport-level arrows on small screens; dots below content with clear gap */
	.sb-home-hero__controls .sb-home-hero__nav {
		display: none;
	}
	.sb-home-hero__controls {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 12px;
		padding: 18px 16px 20px;
		margin-top: 0;
		flex: 0 0 auto;
		pointer-events: auto;
	}
	.sb-home-hero__dots {
		position: static;
		flex-shrink: 0;
	}
}

/* Categories */
.sb-home-categories {
	background: transparent;
	/* Category card image overlap sizing */
	--sb-home-cat-img: 112px;
	--sb-home-cat-img-half: 56px;
	/* How much the image sits outside the card (negative translateY). */
	--sb-home-cat-img-shift-y: -40%;
}

.sb-home-categories--slider .sb-hscroll__viewport{
	overflow-x: auto !important;
	/* allow card/image shadows to render */
	overflow-y: visible !important;
}
.sb-home-categories--slider .sb-hscroll__content{
	flex-wrap: nowrap !important; /* slider should always stay one row */
	align-items: stretch;
}
/* Ensure arrows can appear on desktop too (still auto-hide via .is-hidden) */
@media (min-width: 769px){
	.sb-home-categories--slider .sb-hscroll__btn{
		display:flex !important;
	}
	.sb-home-categories--slider .sb-hscroll__btn.is-hidden{
		display:none !important;
	}
}

.sb-home-categories__cta{
	display:flex;
	justify-content:center;
	margin-top: 18px;
}

.sb-home-categories__cta-btn.sb-button{
	border-radius: 14px;
	font-weight: 800;
}

.sb-home-categories--slider .sb-home-categories__row{
	gap: 14px;
	padding-top: calc(var(--sb-home-cat-img-half) + 10px); /* room for half-out image + shadow */
	padding-bottom: 2em; /* keep bottom shadow from being cut */
}
.sb-home-categories--slider .sb-home-category-card{
	flex: 0 0 240px;
	max-width: 240px;
}

.sb-home-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding-top: calc(var(--sb-home-cat-img-half) + 10px); /* room for half-out image + shadow */
}

.sb-home-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 18px;
	overflow: visible;
	background: transparent;
	/* White card with image overlap */
	background: #fff;
	backdrop-filter: none;
	border: none;
	box-shadow: 0 14px 40px rgba(0,0,0,0.08);
	transition: transform 0.15s ease;
	position: relative;
	padding: calc(var(--sb-home-cat-img-half) + 22px) 14px 16px; /* reserve space under the overlapping image */
	text-align: center;
	text-decoration: none;
	color: inherit;
}

.sb-home-category-card:hover {
	transform: translateY(-2px);
}

.sb-home-category-card__media {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, var(--sb-home-cat-img-shift-y)); /* slightly lower than half-out */
	margin: 0;
	z-index: 1;
}

.sb-home-category-card__image {
	width: var(--sb-home-cat-img);
	height: var(--sb-home-cat-img);
	border-radius: 999px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

.sb-home-category-card__image--placeholder {
	background:
		linear-gradient(135deg, rgba(34,113,177,0.10), rgba(19,94,150,0.08)),
		repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 10px, rgba(0,0,0,0.02) 10px 20px);
}

.sb-home-category-card__content {
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: transparent;
	border-radius: 0;
	padding: 0 6px 4px;
	position: relative;
	z-index: 2;
}

.sb-home-category-card__title {
	font-weight: 800;
	color: var(--sb-home-dark);
	font-size: var(--sb-fs-text);
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sb-home-category-card__text {
	color: var(--sb-home-muted);
	font-size: var(--sb-fs-small);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

/* Popular items (same layout as categories; number + title on top, then description, then price) */
.sb-home-popular-items {
	background: transparent;
	--sb-home-pi-img: 112px;
	--sb-home-pi-img-half: 56px;
	--sb-home-pi-img-shift-y: -40%;
}

.sb-home-popular-items--slider .sb-hscroll__viewport {
	overflow-x: auto !important;
	overflow-y: visible !important;
}
.sb-home-popular-items--slider .sb-hscroll__content {
	flex-wrap: nowrap !important;
	align-items: stretch;
}
@media (min-width: 769px) {
	.sb-home-popular-items--slider .sb-hscroll__btn {
		display: flex !important;
	}
	.sb-home-popular-items--slider .sb-hscroll__btn.is-hidden {
		display: none !important;
	}
}

.sb-home-popular-items__cta {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}
.sb-home-popular-items__cta-btn.sb-button {
	border-radius: 14px;
	font-weight: 800;
}

.sb-home-popular-items--slider .sb-home-popular-items__row {
	gap: 14px;
	padding-top: calc(var(--sb-home-pi-img-half) + 10px);
	padding-bottom: 2em;
}
.sb-home-popular-items--slider .sb-home-popular-item-card {
	flex: 0 0 240px;
	max-width: 240px;
}

.sb-home-popular-items__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding-top: calc(var(--sb-home-pi-img-half) + 10px);
}

.sb-home-popular-item-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 18px;
	overflow: visible;
	background: #fff;
	border: none;
	box-shadow: 0 14px 40px rgba(0,0,0,0.08);
	transition: transform 0.15s ease;
	position: relative;
	padding: calc(var(--sb-home-pi-img-half) + 22px) 14px 16px;
	text-align: center;
	text-decoration: none;
	color: inherit;
}
.sb-home-popular-item-card:hover {
	transform: translateY(-2px);
}

.sb-home-popular-item-card__media {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, var(--sb-home-pi-img-shift-y));
	margin: 0;
	z-index: 1;
}
.sb-home-popular-item-card__image {
	width: var(--sb-home-pi-img);
	height: var(--sb-home-pi-img);
	border-radius: 999px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}
.sb-home-popular-item-card__image--placeholder {
	background:
		linear-gradient(135deg, rgba(34,113,177,0.10), rgba(19,94,150,0.08)),
		repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 10px, rgba(0,0,0,0.02) 10px 20px);
}

.sb-home-popular-item-card__content {
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 0 6px 4px;
	position: relative;
	z-index: 2;
}
.sb-home-popular-item-card__number-title {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
}
.sb-home-popular-item-card__number {
	font-weight: 800;
	color: var(--sb-home-primary);
	font-size: var(--sb-fs-small);
}
.sb-home-popular-item-card__title {
	font-weight: 800;
	color: var(--sb-home-dark);
	font-size: var(--sb-fs-text);
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sb-home-popular-item-card__text {
	color: var(--sb-home-muted);
	font-size: var(--sb-fs-small);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}
.sb-home-popular-item-card__price {
	font-weight: 800;
	color: var(--sb-home-dark);
	font-size: var(--sb-fs-text);
	margin: 0;
}

/* Opening hours */
.sb-home-hours {
	background: transparent;
}

.sb-home-hours__card {
	border-radius: 22px;
	background: rgba(255,255,255,0.18);
	border: none;
	box-shadow: none;
	padding: 22px;
}

.sb-home-hours__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 10px;
}

.sb-home-hours__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(255,255,255,0.18);
}

.sb-home-hours__day {
	font-weight: 700;
	color: var(--sb-home-dark);
}

.sb-home-hours__time-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.sb-home-hours__time {
	color: rgba(0,0,0,0.75);
	font-weight: 600;
}

.sb-home-hours__day-note {
	margin-top: 4px;
	font-size: 12px;
	color: var(--sb-home-muted, rgba(0,0,0,0.6));
	line-height: 1.4;
}

.sb-home-hours__closed {
	color: rgba(0,0,0,0.45);
	font-weight: 700;
}

.sb-home-hours__note {
	margin-top: 14px;
	color: var(--sb-home-muted);
	font-size: 13px;
	line-height: 1.5;
}

.sb-home-hours__warnings{
	margin-top: 14px;
	padding: 12px 12px;
	border-radius: 14px;
	background: rgba(238, 166, 43, 0.14);
	color: rgba(0,0,0,0.78);
}
.sb-home-hours__warnings-title{
	font-weight: 900;
	font-size: 13px;
	margin-bottom: 6px;
}
.sb-home-hours__warnings-list{
	margin: 0;
	padding-left: 18px;
	font-size: 13px;
	line-height: 1.5;
}
.sb-home-hours__warnings-item strong{
	color: rgba(0,0,0,0.88);
}

@media (max-width: 1024px) {
	.sb-home-hero__title {
		font-size: var(--sb-fs-h1);
	}
	.sb-home-categories__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.sb-home-popular-items__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.sb-home-categories{
		--sb-home-cat-img: 92px;
		--sb-home-cat-img-half: 46px;
	}
	.sb-home-popular-items {
		--sb-home-pi-img: 92px;
		--sb-home-pi-img-half: 46px;
	}
	.sb-home-hero__grid {
		flex-direction: column;
		align-items: stretch;
	}
	.sb-home-hero__title {
		font-size: var(--sb-fs-h1);
	}
	.sb-home-hero__nav {
		display: flex;
		width: 44px;
		height: 44px;
	}
	.sb-home-hero__nav--prev { left: 10px; }
	.sb-home-hero__nav--next { right: 10px; }
	.sb-home-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sb-home-popular-items__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sb-home-categories--slider .sb-home-category-card{
		flex-basis: 220px;
		max-width: 220px;
	}
	.sb-home-popular-items--slider .sb-home-popular-item-card {
		flex-basis: 220px;
		max-width: 220px;
	}
	.sb-home-category-card {
		padding: calc(var(--sb-home-cat-img-half) + 18px) 12px 12px;
		border-radius: 16px;
	}
	.sb-home-popular-item-card {
		padding: calc(var(--sb-home-pi-img-half) + 18px) 12px 12px;
		border-radius: 16px;
	}
	.sb-home-category-card__media {
		/* keep the same overlap behavior on mobile */
		top: 0;
	}
	.sb-home-category-card__image {
		width: var(--sb-home-cat-img);
		height: var(--sb-home-cat-img);
	}
	.sb-home-category-card__title {
		font-size: var(--sb-fs-text);
	}
	.sb-home-category-card__text {
		font-size: var(--sb-fs-small);
		margin-bottom: 10px;
	}
}

/* Screen Reader Text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ==========================================================================
   Hero Section block (used on any page, same styles as home hero)
   ========================================================================== */

/* Full-width and spacing when hero block is inside post/page content */
.entry-content .sb-hero-section-widget.sb-home-hero,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero {
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

/* Hero section BLOCK only (not home): container padding by background */
.entry-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--no-bg .sb-home-hero__container,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--no-bg .sb-home-hero__container {
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 0;
}
/* Colored background: same border-radius as home page sections (16px) */
.entry-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--has-bg,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--has-bg {
	border-radius: 16px;
	overflow: hidden;
}
.entry-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--has-bg .sb-home-hero__container,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--has-bg .sb-home-hero__container {
	padding: 1em;
}

/* Subtitle / title spacing and font sizes (match home hero) */
.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__subtitle,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--sb-color-primary, #2271b1);
	font-weight: 600;
	font-size: var(--sb-fs-subtitle);
}

.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__title,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__title {
	margin: 0 0 12px 0;
	font-size: var(--sb-fs-h1);
	line-height: var(--sb-lh-heading);
	letter-spacing: -0.03em;
	color: var(--sb-home-dark);
	font-weight: 900;
}

.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__text,
.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__text {
	margin: 0;
	font-size: var(--sb-fs-text);
	line-height: var(--sb-lh-text);
	color: var(--sb-home-muted);
	max-width: 60ch;
}

/* Small screens: stack image and content like home hero */
@media (max-width: 768px) {
	.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__container,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__container {
		max-width: none;
		width: 100%;
		box-sizing: border-box;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--no-bg .sb-home-hero__container,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--no-bg .sb-home-hero__container {
		padding: 0;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--has-bg .sb-home-hero__container,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero.sb-hero-section-widget--has-bg .sb-home-hero__container {
		padding: 1em;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__grid,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__grid {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__media,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__media {
		order: 1;
		flex: none;
		width: 100%;
		position: relative;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__image,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__image {
		width: 100%;
		aspect-ratio: 4 / 3;
		border-radius: 12px;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__content,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__content {
		order: 2;
		padding: 18px 0 16px 0;
		margin-top: 4px;
		background: transparent;
		backdrop-filter: none;
	}
	.entry-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__title,
	.wp-block-post-content .sb-hero-section-widget.sb-home-hero .sb-home-hero__title {
		font-size: var(--sb-fs-h1);
	}
}

