/* ==========================================================================
   Reset (from the parent theme bethree/style.css, inlined here so the browser
   downloads one stylesheet less before the first paint; inc/performance.php
   dequeues the parent file). Keep in sync if the parent reset ever changes.
   ========================================================================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

/* ==========================================================================
   BeThree Child – main.css
   Global stylesheet, loaded on every page (after the parent reset).
   Per-page styles live in assets/css/pages/{key}.css and load only there
   (see inc/enqueue.php for the key → file mapping).

   1. Fonts
   2. Tokens
   3. Base
   4. Layout (.be_row)
   5. Components (.be_btn)
   6. Header
   7. Footer
   ========================================================================== */


/* 1. Fonts ----------------------------------------------------------------
   Century Gothic, self-hosted, subset to Latin + Greek (assets/fonts).
   local() lets machines that already have the font skip the download.
   -------------------------------------------------------------------------- */
@font-face {
	font-family: "Century Gothic";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local("Century Gothic"), local("CenturyGothic"),
		url("../fonts/century-gothic-regular.woff2") format("woff2");
}

@font-face {
	font-family: "Century Gothic";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local("Century Gothic Bold"), local("CenturyGothic-Bold"),
		url("../fonts/century-gothic-bold.woff2") format("woff2");
}


/* 2. Tokens ---------------------------------------------------------------
   Values come from the Figma file (soulantikas.gr, 1920px desktop frame).
   -------------------------------------------------------------------------- */
:root {
	/* Colours */
	--be-color-dark: #2b2b2b;
	--be-color-cream: #f1efe9;
	--be-color-orange: #f26822;
	--be-color-white: #ffffff;
	--be-color-navy: #00102d;
	--be-color-text: var(--be-color-dark);

	/* Typography */
	--be-font-primary: "Century Gothic", "URW Gothic", "TeX Gyre Adventor", "Apple Gothic", sans-serif;
	--be-h1: 700 60px/72px var(--be-font-primary); /* Figma note: H1 desktop 60/72 */
	--be-h2: 700 40px/50px var(--be-font-primary);
	--be-h3: 700 26px/32px var(--be-font-primary);
	--be-subtext: 400 32px/40px var(--be-font-primary);
	--be-body: 400 18px/24px var(--be-font-primary);
	--be-menu: 400 18px/1 var(--be-font-primary);

	/* Section padding: every section gets .be_row; header/footer set their own.
	   Desktop (Figma 1920): 200px left/right, 100px top/bottom. */
	--be-pad-x: 200px;
	--be-pad-y: 100px;
}

@media (max-width: 1280px) {
	:root {
		--be-pad-x: 100px;
	}
}

@media (max-width: 1024px) {
	:root {
		--be-pad-x: 60px;
		--be-pad-y: 80px;
	}
}

@media (max-width: 700px) {
	:root {
		--be-h1: 700 26px/32px var(--be-font-primary); /* Figma note: H1 mobile 26 */
		--be-h2: 700 22px/32px var(--be-font-primary); /* Figma note: H2 mobile 22/32 */
		--be-h3: 700 22px/28px var(--be-font-primary);
		--be-subtext: 400 22px/30px var(--be-font-primary);
		--be-body: 400 16px/24px var(--be-font-primary); /* Figma "Mobile Body Text" */
		--be-pad-x: 24px;
		--be-pad-y: 60px;
	}
}


/* 3. Base ------------------------------------------------------------------ */
html {
	-webkit-text-size-adjust: 100%;
}

body {
	font: var(--be-body);
	color: var(--be-color-text);
	background: var(--be-color-cream); /* page ground is cream; sections set their own */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
}

h1 {
	font: var(--be-h1);
}

h2 {
	font: var(--be-h2);
}

h3 {
	font: var(--be-h3);
}

img,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--be-color-orange);
	outline-offset: 2px;
}

/* The hidden attribute must win over component display values (.be_btn etc.) */
[hidden] {
	display: none !important;
}


/* 4. Layout ----------------------------------------------------------------
   No max-width containers: every page section is a full-width block with
   .be_row padding (Figma: 200px sides / 100px top+bottom on desktop).
   -------------------------------------------------------------------------- */
.be_row {
	padding: var(--be-pad-y) var(--be-pad-x);
}


/* 5. Components ------------------------------------------------------------
   Pill button (Figma "Button"): white, 1px orange border, radius 30,
   padding 12/24, orange drop shadow. .be_btn--dark is the CTA variant.
   Top-level primary-menu links share the same look.
   -------------------------------------------------------------------------- */
.be_btn,
.be_nav-list > li > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 24px;
	border: 1px solid var(--be-color-orange);
	border-radius: 30px;
	background: var(--be-color-white);
	color: var(--be-color-dark);
	font: var(--be-menu);
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 4px 2px rgba(242, 104, 34, 0.6);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.be_btn:hover,
.be_btn:focus-visible {
	background: var(--be-color-orange);
	color: var(--be-color-white);
}

/* Disabled (e.g. CF7 submit until the acceptance checkbox is ticked) */
.be_btn:disabled,
.be_btn[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

/* Menu pill hover / open / current page (Figma Button "Variant2") */
.be_nav-list > li > a:hover,
.be_nav-list > li > a:focus-visible,
.be_nav-list > li:hover > a,
.be_nav-list > li:focus-within > a,
.be_nav-list > li.is-open > a,
.be_nav-list > .current-menu-item > a,
.be_nav-list > .current-menu-ancestor > a {
	background: rgba(255, 255, 255, 0.2);
	border-color: #d9d9d9;
	color: var(--be-color-dark);
	box-shadow: 0 4px 4px rgba(217, 217, 217, 0.6);
}

.be_btn--dark {
	background: #666666;
	color: var(--be-color-white);
}

/* Arrow button (Figma "Button" with the dotted arrow, used in page sections):
   translucent white, 22px text, softer orange shadow. */
.be_btn--arrow {
	font-size: 22px;
	line-height: normal;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 4px rgba(242, 104, 34, 0.6);
}

.be_btn--arrow::after {
	content: "";
	flex: 0 0 auto;
	width: 56px;
	height: 22px;
	background-color: currentColor;
	-webkit-mask: url("../img/icon-arrow-dots.svg") center / contain no-repeat;
	mask: url("../img/icon-arrow-dots.svg") center / contain no-repeat;
}

@media (max-width: 700px) {
	.be_btn--arrow {
		font-size: 16px;
		line-height: 24px;
	}
}


/* Post card (Figma "Post-2/3": 552x389, image with a 40% dark overlay, date
   and title bottom-left, circle arrow bottom-right). Markup:
   template-parts/post-card.php. */
.be_cards {
	display: flex;
	gap: 32px;
}

.be_cards > .be_card {
	flex: 1 1 0;
	min-width: 0;
}

.be_card {
	position: relative;
	aspect-ratio: 552 / 389;
	overflow: hidden;
	border-radius: 10px;
	background: var(--be-color-dark);
	color: var(--be-color-white);
}

.be_card-link {
	position: absolute;
	inset: 0;
	display: block;
	color: inherit;
	text-decoration: none;
}

.be_card-media,
.be_card-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.be_card-media img {
	object-fit: cover;
	transition: transform 0.4s ease;
}

.be_card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	transition: background-color 0.3s ease;
}

.be_card-link:hover .be_card-media img,
.be_card-link:focus-visible .be_card-media img {
	transform: scale(1.04);
}

.be_card-link:hover .be_card-media::after,
.be_card-link:focus-visible .be_card-media::after {
	background: rgba(0, 0, 0, 0.5);
}

.be_card-body {
	position: absolute;
	left: 22px;
	right: 90px;
	bottom: 17px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.be_card-date {
	font: 400 16px/24px var(--be-font-primary);
}

.be_card-title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	font: 400 18px/24px var(--be-font-primary);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.be_card-title .be_title-lead {
	font-size: 20px;
	font-weight: 700;
}

.be_card-arrow {
	position: absolute;
	right: 17px;
	bottom: 17px;
	width: 45px;
	height: 45px;
	background: url("../img/icon-arrow-circle.svg") center / contain no-repeat;
	transition: transform 0.2s ease;
}

.be_card-link:hover .be_card-arrow,
.be_card-link:focus-visible .be_card-arrow {
	transform: translateX(4px);
}

/* Card variants for the blog mosaic (Figma "Post-1" 827x580, "Post" 821x278,
   "Post-2/3" 394x278) */
.be_card--big {
	aspect-ratio: 827 / 580;
}

.be_card--big .be_card-body {
	left: 24px;
	right: 214px;
	bottom: 24px;
}

.be_card--big .be_card-title {
	font-size: 26px;
	line-height: 32px;
}

.be_card--big .be_card-title .be_title-lead {
	font-size: 32px;
	line-height: 40px;
}

.be_card--big .be_card-arrow {
	right: 24px;
	bottom: 24px;
	width: 50px;
	height: 50px;
}

.be_card--wide {
	aspect-ratio: 821 / 278;
}

.be_card--wide .be_card-body {
	left: 16px;
	right: 101px;
	bottom: 10px;
}

.be_card--half {
	aspect-ratio: 394.5 / 278;
}

.be_card--half .be_card-body {
	left: 16px;
	right: 65px;
	bottom: 10px;
}

.be_card--wide .be_card-arrow,
.be_card--half .be_card-arrow {
	right: 12px;
	bottom: 12px;
	width: 32px;
	height: 32px;
}

@media (max-width: 700px) {
	/* .be_card.be_card--x beats the generic .be_card mobile rules further down */
	.be_card.be_card--big {
		aspect-ratio: 287 / 470;
	}

	.be_card.be_card--big .be_card-body {
		left: 14px;
		right: 44px;
		bottom: 12px;
	}

	.be_card.be_card--big .be_card-title {
		font-size: 18px;
		line-height: 24px;
	}

	.be_card.be_card--big .be_card-title .be_title-lead {
		font-size: 24px;
		line-height: 32px;
	}

	.be_card.be_card--big .be_card-arrow {
		right: 12px;
		bottom: 12px;
		width: 32px;
		height: 32px;
	}

	.be_card.be_card--wide,
	.be_card.be_card--half {
		aspect-ratio: 287 / 278;
	}

	.be_card.be_card--wide .be_card-body,
	.be_card.be_card--half .be_card-body {
		left: 14px;
		right: 44px;
		bottom: 12px;
	}
}

/* Blog mosaic (Figma "Frame 41", used on the blog index and the homepage):
   big card | column (wide + two halves), mirrored with --flip. */
.be_blog-group {
	display: grid;
	grid-template-columns: 827fr 821fr;
	gap: 24px;
	padding: 24px;
	background: var(--be-color-cream);
	border-radius: 20px;
}

.be_blog-group--flip > .be_card--big {
	order: 2;
}

.be_blog-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 32px;
	align-content: start;
}

.be_blog-col > .be_card--wide {
	grid-column: 1 / -1;
}

@media (max-width: 1100px) {
	.be_blog-group {
		grid-template-columns: 1fr 1fr;
	}

	.be_blog-group > .be_card--big,
	.be_blog-group--flip > .be_card--big {
		grid-column: 1 / -1;
		order: 0;
	}

	.be_blog-col {
		display: contents;
	}

	.be_blog-col > .be_card--wide {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.be_blog-group {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

/* Slider: a row of cards on desktop, one card per swipe on mobile
   (scroll-snap track + prev/next buttons, see assets/js/main.js). */
.be_slider {
	position: relative;
}

.be_slider-nav {
	display: none;
	justify-content: center;
	gap: 6px;
	margin-top: 24px;
}

.be_slider-btn {
	width: 32px;
	height: 32px;
	margin: 0;
	padding: 0;
	border: 0;
	background: url("../img/icon-arrow-circle.svg") center / contain no-repeat;
	cursor: pointer;
}

.be_slider-btn--prev {
	transform: rotate(180deg);
}

.be_slider-btn:disabled {
	opacity: 0.4;
	cursor: default;
}

@media (max-width: 700px) {
	.be_cards {
		gap: 16px;
	}

	.be_card {
		aspect-ratio: 335 / 278;
	}

	.be_card-body {
		left: 16px;
		right: 60px;
		bottom: 12px;
	}

	.be_card-date {
		font-size: 14px;
	}

	.be_card-title {
		font-size: 16px;
	}

	.be_card-title .be_title-lead {
		font-size: 20px;
		line-height: 26px;
	}

	.be_card-arrow {
		right: 12px;
		bottom: 12px;
		width: 32px;
		height: 32px;
	}

	.be_slider-track {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.be_slider-track::-webkit-scrollbar {
		display: none;
	}

	.be_slider-track > .be_card {
		flex: 0 0 100%;
		scroll-snap-align: start;
	}

	.be_slider-nav {
		display: flex;
	}
}

/* Reviews section (Figma "Google Rates"): title + third-party widget in an
   orange frame. Markup: template-parts/reviews.php (used on contact, posts…). */
.be_reviews {
	padding: 0 100px 60px;
	background: var(--be-color-cream);
	text-align: center;
}

.be_reviews-title {
	margin: 0 0 42px;
	font: 700 45px/50px var(--be-font-primary);
	color: var(--be-color-navy);
}

.be_reviews-widget {
	padding: 24px;
	border: 1px solid var(--be-color-orange);
	border-radius: 20px;
	text-align: left;
}

@media (max-width: 1100px) {
	.be_reviews {
		padding: 0 60px 60px;
	}
}

@media (max-width: 700px) {
	.be_reviews {
		padding: 0 20px 32px;
		text-align: left;
	}

	.be_reviews-title {
		margin-bottom: 24px;
		font: 700 26px/32px var(--be-font-primary);
	}

	.be_reviews-widget {
		padding: 12px;
	}
}


/* Quote / CTA box (template-parts/quote.php; Figma article CTA + "Συχνές ΩΡΛ
   Παθήσεις" 16:1969): white box, orange border, logo, quote marks, button. */
.be_quote {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	padding: 32px;
	background: var(--be-color-white);
	border: 1px solid var(--be-color-orange);
	border-radius: 20px;
	text-align: center;
}

.be_quote-image img {
	display: block;
	width: 108px;
	height: 148px;
	object-fit: contain;
}

.be_quote-text {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 84px;
	font: 400 32px/40px var(--be-font-primary);
	color: var(--be-color-dark);
}

.be_quote-text p {
	margin: 0;
}

/* Italic words in the quote field render orange (homepage "ωτίτιδας…") */
.be_quote-text em {
	font-style: normal;
	color: var(--be-color-orange);
}

/* Quote marks (assets/img/icon-quote.svg): open at top-left, close at bottom-right */
.be_quote-text::before,
.be_quote-text::after {
	content: "";
	position: absolute;
	width: 42px;
	height: 32px;
	background-color: currentColor;
	-webkit-mask: url("../img/icon-quote.svg") center / contain no-repeat;
	mask: url("../img/icon-quote.svg") center / contain no-repeat;
}

.be_quote-text::before {
	left: 32px;
	top: 0;
	transform: scaleY(-1);
}

.be_quote-text::after {
	right: 32px;
	bottom: 0;
	transform: rotate(180deg) scaleY(-1);
}

@media (max-width: 1100px) {
	.be_quote-text {
		padding: 0 60px;
		font-size: 26px;
		line-height: 34px;
	}

	.be_quote-text::before {
		left: 8px;
	}

	.be_quote-text::after {
		right: 8px;
	}
}

@media (max-width: 700px) {
	.be_quote {
		gap: 12px;
	}

	.be_quote-text {
		padding: 0 40px;
		font-size: 20px;
		line-height: 24px;
	}

	.be_quote-text::before,
	.be_quote-text::after {
		width: 31px;
		height: 24px;
	}

	.be_quote-text::before {
		left: 0;
	}

	.be_quote-text::after {
		right: 0;
	}
}

/* Breadcrumb (inner pages; Figma: 20/32 desktop, 16/32 mobile, current item
   in orange). Markup + BreadcrumbList JSON-LD: inc/template-tags.php. */
.be_breadcrumb {
	font: 400 20px/32px var(--be-font-primary);
	color: var(--be-color-dark);
}

.be_breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 0.5em;
	margin: 0;
	padding: 0;
	list-style: none;
}

.be_breadcrumb-list li + li::before {
	content: "|";
	margin-right: 0.5em;
	color: var(--be-color-dark);
}

.be_breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.be_breadcrumb a:hover,
.be_breadcrumb a:focus-visible,
.be_breadcrumb [aria-current="page"] {
	color: var(--be-color-orange);
}

@media (max-width: 700px) {
	.be_breadcrumb {
		font-size: 16px;
	}
}

/* Dome: white band with the cream half-ellipse rising from the section
   below (Figma "Ημικύκλιο": 1920x121 desktop, 375x27 mobile). */
.be_dome {
	position: relative;
	height: 121px;
	overflow: hidden;
	background: var(--be-color-white);
}

.be_dome::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	width: max(2249px, 117.15vw);
	height: 243px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: var(--be-color-cream);
}

@media (max-width: 700px) {
	.be_dome {
		height: 27px;
	}

	.be_dome::before {
		width: 117.15vw;
		height: 54px;
	}
}

/* Sticky section index (Figma "Sticky Κατηγορίες"; doctor + conditions pages).
   Markup: .be_side-layout > aside.be_sidenav[data-sidenav] (button.be_sidenav-toggle
   + nav > ul.be_sidenav-list) + .be_side-content. Under 1100px the list collapses
   behind the "Κατηγορίες" toggle (main.js); .be_sidenav--hide-mobile removes it
   on phones (pages whose Figma has no index there). */
.be_side-layout {
	display: grid;
	grid-template-columns: 404px minmax(0, 1fr);
	column-gap: 78px;
	align-items: start;
}

.be_sidenav {
	position: sticky;
	top: 150px; /* below the sticky header */
}

.be_sidenav-toggle {
	display: none;
}

.be_sidenav-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
	padding: 24px;
	list-style: none;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid var(--be-color-orange);
	border-radius: 30px;
	box-shadow: 0 4px 4px rgba(242, 104, 34, 0.6);
}

.be_sidenav-list a {
	display: flex;
	align-items: center;
	justify-content: space-between; /* Figma "Bio Category": text left, dotted arrow at the right edge */
	gap: 8px;
	font: 400 22px/1.2 var(--be-font-primary);
	color: var(--be-color-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

.be_sidenav-list a::after {
	content: "";
	flex: 0 0 auto;
	width: 56px;
	height: 22px;
	background-color: currentColor;
	-webkit-mask: url("../img/icon-arrow-dots.svg") center / contain no-repeat;
	mask: url("../img/icon-arrow-dots.svg") center / contain no-repeat;
}

.be_sidenav-list a:hover,
.be_sidenav-list a:focus-visible {
	color: var(--be-color-orange);
}

.be_sidenav-list a.is-current {
	color: var(--be-color-orange);
}

.be_side-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

@media (max-width: 1440px) {
	.be_side-layout {
		grid-template-columns: 320px minmax(0, 1fr);
		column-gap: 40px;
	}

	.be_sidenav-list a {
		font-size: 20px;
	}
}

@media (max-width: 1100px) {
	.be_side-layout {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.be_sidenav {
		position: static;
		width: 100%;
	}

	/* Collapsible index: pill button, list opens underneath (main.js) */
	.be_sidenav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		margin: 0;
		padding: 24px;
		border: 1px solid var(--be-color-orange);
		border-radius: 30px;
		background: rgba(255, 255, 255, 0.2);
		box-shadow: 0 4px 4px rgba(242, 104, 34, 0.6);
		font: 400 22px/1.2 var(--be-font-primary);
		color: var(--be-color-dark);
		cursor: pointer;
	}

	.be_sidenav-toggle::after {
		content: "";
		width: 56px;
		height: 22px;
		background-color: currentColor;
		-webkit-mask: url("../img/icon-arrow-dots.svg") center / contain no-repeat;
		mask: url("../img/icon-arrow-dots.svg") center / contain no-repeat;
	}

	.be_sidenav-list {
		display: none;
		margin-top: 12px;
		box-shadow: none;
	}

	.be_sidenav-list a {
		font-size: 18px;
	}

	.be_sidenav.is-open .be_sidenav-list {
		display: flex;
	}
}

@media (max-width: 700px) {
	.be_side-content {
		gap: 32px;
	}

	.be_sidenav--hide-mobile {
		display: none;
	}
}

/* Icon cards (Figma "Ρινοπλαστική", "Υπνική Άπνοια"…): icon, text, arrow button.
   Used on the homepage and the conditions category pages. */
.be_icard {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	padding: 32px;
	border: 1px solid var(--be-color-orange);
	border-radius: 20px;
	color: var(--be-color-dark);
}

.be_icard--light {
	background: rgba(255, 255, 255, 0.6);
}

.be_icard--cream {
	background: var(--be-color-cream);
}

.be_icard-icon {
	height: 100px;
}

.be_icard-icon img {
	display: block;
	width: auto;
	height: 100px;
}

.be_icard-text {
	flex: 1 1 auto;
	margin: 0;
	font: 400 18px/24px var(--be-font-primary);
	color: #666666;
}

.be_icard-btn {
	width: 100%;
}

@media (max-width: 700px) {
	.be_icard-text {
		font-size: 16px;
	}
}

/* Orange word inside a heading (bethree_child_highlight()) */
.be_highlight {
	color: var(--be-color-orange);
}

/* Cream curves on a white section (Figma "Ellipse 7/8": 2249x243 desktop,
   492x53 mobile, ~121px / 26px of the ellipse showing). Add .be_curve-top
   and/or .be_curve-bottom to a section; its children stay above the curve. */
.be_curve-top,
.be_curve-bottom {
	position: relative;
	overflow: clip;
}

.be_curve-top > *,
.be_curve-bottom > * {
	position: relative;
	z-index: 1;
}

.be_curve-top::before,
.be_curve-bottom::after {
	content: "";
	position: absolute;
	left: 50%;
	z-index: 0;
	width: max(2249px, 117.15vw);
	height: 243px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: var(--be-color-cream);
	pointer-events: none;
}

.be_curve-top::before {
	top: -121px;
}

.be_curve-bottom::after {
	bottom: -121px;
}

@media (max-width: 700px) {
	.be_curve-top::before,
	.be_curve-bottom::after {
		width: 492px;
		height: 53px;
	}

	.be_curve-top::before {
		top: -27px;
	}

	.be_curve-bottom::after {
		bottom: -27px;
	}
}

/* Forms (Contact Form 7; markup post-processed in inc/forms.php).
   A plain CF7 template is enough: the first two fields sit side by side,
   every other control spans the full width. Figma: pill fields (1px #666,
   18/24), 20px column gap, 32px row gap, 10px before the acceptance line and
   before the submit; checkbox 20px; submit = .be_btn--arrow. */
.be_form .wpcf7-form {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 20px;
}

.be_form .wpcf7-form > * {
	grid-column: 1 / -1;
	min-width: 0;
}

.be_form .wpcf7-form > .wpcf7-form-control-wrap:nth-of-type(1),
.be_form .wpcf7-form > .wpcf7-form-control-wrap:nth-of-type(2) {
	grid-column: auto;
}

.be_form .wpcf7-form > .hidden-fields-container {
	display: none;
}

/* CF7's live region for screen readers (visually hidden, as in CF7's own CSS) */
.be_form .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	border: 0;
	word-wrap: normal;
}

.be_form .wpcf7-form-control-wrap {
	display: block;
}

.be_form input[type="text"],
.be_form input[type="tel"],
.be_form input[type="email"],
.be_form input[type="url"],
.be_form input[type="number"],
.be_form input[type="date"],
.be_form select,
.be_form textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 24px;
	border: 1px solid #666666;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.2);
	color: var(--be-color-dark);
	font: 400 18px/24px var(--be-font-primary);
	appearance: none;
	transition: border-color 0.2s ease;
}

.be_form textarea {
	height: 201px; /* Figma; overrides CF7's rows="10" */
	min-height: 120px;
	resize: vertical;
}

.be_form input::placeholder,
.be_form textarea::placeholder {
	color: var(--be-color-dark);
	opacity: 1;
}

.be_form input:focus-visible,
.be_form select:focus-visible,
.be_form textarea:focus-visible {
	border-color: var(--be-color-orange);
	outline-offset: 0;
}

.be_form .wpcf7-not-valid {
	border-color: #c0392b;
}

.be_form .wpcf7-not-valid-tip {
	display: block;
	margin: 6px 0 0 24px;
	font-size: 14px;
	line-height: 20px;
	color: #c0392b;
}

/* Acceptance line, 10px below the last field */
.be_form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
	margin-top: -22px;
}

.be_form .wpcf7-acceptance .wpcf7-list-item {
	display: block;
	margin: 0;
}

.be_form .wpcf7-acceptance label {
	display: flex;
	align-items: center;
	gap: 12px;
	font: 400 16px/32px var(--be-font-primary);
	cursor: pointer;
}

.be_form .wpcf7-acceptance input[type="checkbox"] {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 0;
	border: 1px solid var(--be-color-dark);
	border-radius: 4px;
	background: var(--be-color-white);
	appearance: none;
	cursor: pointer;
}

.be_form .wpcf7-acceptance input[type="checkbox"]:checked {
	background: var(--be-color-dark) url("../img/icon-check.svg") center / 12px 12px no-repeat;
}

/* Submit, 10px below the acceptance line; disabled until accepted (see .be_btn:disabled) */
.be_form .wpcf7-submit {
	width: 100%;
	margin-top: -22px;
}

.be_form .wpcf7-spinner {
	display: none;
}

.be_form .wpcf7-form.submitting .wpcf7-spinner {
	display: block;
	justify-self: center;
	width: 20px;
	height: 20px;
	margin: -22px 0 0;
	border: 2px solid rgba(242, 104, 34, 0.3);
	border-top-color: var(--be-color-orange);
	border-radius: 50%;
	animation: be-spin 0.8s linear infinite;
}

@keyframes be-spin {
	to {
		transform: rotate(360deg);
	}
}

.be_form .wpcf7-response-output {
	margin: 0;
	padding: 12px 24px;
	border: 1px solid var(--be-color-orange);
	border-radius: 20px;
	font-size: 16px;
	line-height: 24px;
}

.be_form .wpcf7-form.init .wpcf7-response-output,
.be_form .wpcf7-form.resetting .wpcf7-response-output,
.be_form .wpcf7-form.submitting .wpcf7-response-output {
	display: none;
}

.be_form .wpcf7-form.sent .wpcf7-response-output {
	border-color: #2e8b57;
}

.be_form .wpcf7-form.invalid .wpcf7-response-output,
.be_form .wpcf7-form.unaccepted .wpcf7-response-output,
.be_form .wpcf7-form.failed .wpcf7-response-output,
.be_form .wpcf7-form.aborted .wpcf7-response-output,
.be_form .wpcf7-form.spam .wpcf7-response-output {
	border-color: #c0392b;
}

@media (max-width: 700px) {
	.be_form .wpcf7-form {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.be_form .wpcf7-form > .wpcf7-form-control-wrap:nth-of-type(1),
	.be_form .wpcf7-form > .wpcf7-form-control-wrap:nth-of-type(2) {
		grid-column: 1 / -1;
	}

	.be_form input[type="text"],
	.be_form input[type="tel"],
	.be_form input[type="email"],
	.be_form input[type="url"],
	.be_form input[type="number"],
	.be_form input[type="date"],
	.be_form select,
	.be_form textarea {
		font-size: 16px;
	}

	.be_form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
		margin-top: 0;
	}

	.be_form .wpcf7-acceptance label {
		font: 400 14px/20px var(--be-font-primary);
	}

	.be_form .wpcf7-submit {
		width: auto;
		margin-top: 0;
		justify-self: center;
	}

	.be_form .wpcf7-form.submitting .wpcf7-spinner {
		margin-top: 0;
	}
}


/* 6. Header (Figma node 1:881 "Menu", sticky) ------------------------------
   Cream bar with white border, 1720px wide on the 1920 frame (100px sides),
   12px above/below. Logo | menu pills (evenly spaced) | dark CTA.
   -------------------------------------------------------------------------- */
.be_site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 12px 100px;
}

.be_site-header-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0 12px;
	background: var(--be-color-cream);
	border: 1px solid var(--be-color-white);
	border-radius: 20px;
}

/* Logo */
.be_site-header-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.be_site-header-logo a {
	display: block;
	line-height: 0;
}

.be_site-header-logo img {
	display: block;
	width: auto;
	height: 101px;
}

.be_site-header-logo-text {
	font: var(--be-h3);
	line-height: 1.2;
	padding: 20px 0;
	text-decoration: none;
}

/* Menu: list sits centred in the free space, CTA hugs the right edge */
.be_menu {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 32px;
	min-width: 0;
}

.be_nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.be_nav-list li {
	position: relative;
}

/* Items with a sub-menu get the outlined arrow (assets/img/icon-arrow.svg) */
.be_nav-list > .menu-item-has-children > a::after {
	content: "";
	flex: 0 0 auto;
	width: 22px;
	height: 18px; /* keeps the pill at 44px; Figma icon 27x22 scaled to the text line */
	background-color: currentColor;
	-webkit-mask: url("../img/icon-arrow.svg") center / contain no-repeat;
	mask: url("../img/icon-arrow.svg") center / contain no-repeat;
}

/* Open state: filled arrow (Figma Button "Variant2") */
.be_nav-list > .menu-item-has-children:hover > a::after,
.be_nav-list > .menu-item-has-children:focus-within > a::after,
.be_nav-list > .menu-item-has-children.is-open > a::after {
	-webkit-mask-image: url("../img/icon-arrow-filled.svg");
	mask-image: url("../img/icon-arrow-filled.svg");
}

/* Dropdown (first-level sub-menus; markup from BeThree_Child_Walker_Nav_Menu)
   <ul class="sub-menu be_dropdown"> is the hover box: it starts right under
   the pill (top: 100%) and its transparent padding-top is the visual gap, so
   the pointer moves straight from the pill into the box without closing it.
   <li class="be_dropdown-inner"> draws the visible panel. */
.be_nav-list > li > .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	margin: 0;
	padding: 12px 0 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.be_nav-list > li:hover > .sub-menu,
.be_nav-list > li:focus-within > .sub-menu,
.be_nav-list > li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition-delay: 0s;
}

.be_dropdown-inner {
	display: block;
	min-width: 260px;
	padding: 12px;
	background: var(--be-color-white);
	border: 1px solid var(--be-color-orange);
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(242, 104, 34, 0.25);
}

.be_dropdown-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.be_dropdown-list a {
	display: block;
	padding: 10px 16px;
	border-radius: 12px;
	color: var(--be-color-dark);
	font: var(--be-menu);
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.be_dropdown-list a:hover,
.be_dropdown-list a:focus-visible,
.be_dropdown-list .current-menu-item > a {
	background: var(--be-color-cream);
	color: var(--be-color-orange);
}

/* Mega menus (Figma "Menu" Variant2 = Παθήσεις, Variant3 = Τεχνικές).
   The hover box spans the whole header bar; the visible panel sits 23px
   below it; each column is a white box with an inset shadow. Menu item
   classes come from Appearance → Menus. */
.be_nav-list > .be_pathiseis_header_menu,
.be_nav-list > .be_technikes_header_menu {
	position: static; /* box is positioned against .be_site-header-bar */
}

.be_nav-list > li > .be_dropdown--mega {
	right: 0;
	padding-top: 23px;
}

.be_dropdown--mega > .be_dropdown-inner {
	max-height: calc(100vh - 180px);
	padding: 24px;
	overflow-y: auto;
	background: rgba(241, 239, 233, 0.6);
	box-shadow: none;
}

.be_dropdown--mega .be_dropdown-list {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

/* Column boxes */
.be_dropdown--mega .be_dropdown-list > li {
	flex: 1 1 0;
	min-width: 0;
	padding: 24px;
	background: var(--be-color-white);
	border-radius: 20px;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Lists inside a column */
.be_mega-col-list,
.be_nav-list .be_headtitle_menu > .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.be_nav-list .be_headtitle_menu > .sub-menu {
	margin-top: 10px;
}

/* Dark pills: column titles (Παθήσεις) and every item (Τεχνικές) */
.be_nav-list .be_headtitle_menu > a,
.be_nav-list .be_mega-col-list > li > a {
	display: block;
	padding: 6px 12px 7px;
	border-radius: 30px;
	background: #666666;
	color: var(--be-color-white);
	font: var(--be-menu);
	line-height: 1.25;
	white-space: normal;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.be_nav-list .be_headtitle_menu > a:hover,
.be_nav-list .be_headtitle_menu > a:focus-visible,
.be_nav-list .be_mega-col-list > li > a:hover,
.be_nav-list .be_mega-col-list > li > a:focus-visible,
.be_nav-list .be_mega-col-list > .current-menu-item > a {
	background: var(--be-color-orange);
	color: var(--be-color-white);
}

/* Outlined pills: items under a Παθήσεις column title (Figma "Sc") */
.be_nav-list .be_headtitle_menu > .sub-menu a {
	display: block;
	padding: 6px 12px;
	border: 1px solid #000000;
	border-radius: 30px;
	background: transparent;
	color: #000000;
	font: var(--be-menu);
	font-size: 16px;
	line-height: 1.25;
	white-space: normal;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.be_nav-list .be_headtitle_menu > .sub-menu a:hover,
.be_nav-list .be_headtitle_menu > .sub-menu a:focus-visible,
.be_nav-list .be_headtitle_menu > .sub-menu .current-menu-item > a {
	background: var(--be-color-cream);
	border-color: var(--be-color-orange);
	color: var(--be-color-orange);
}

.be_submenu-toggle {
	display: none;
}

/* Mobile toggle (hamburger) */
.be_menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--be-color-orange);
	border-radius: 50%;
	background: var(--be-color-white);
	box-shadow: 0 4px 2px rgba(242, 104, 34, 0.6);
	cursor: pointer;
}

.be_menu-toggle-bar {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--be-color-dark);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.be_menu-toggle[aria-expanded="true"] .be_menu-toggle-bar:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.be_menu-toggle[aria-expanded="true"] .be_menu-toggle-bar:nth-child(3) {
	opacity: 0;
}

.be_menu-toggle[aria-expanded="true"] .be_menu-toggle-bar:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Header responsive */
@media (min-width: 1800px) {
	.be_nav-list > li > a,
	.be_site-header-cta {
		min-width: 209px; /* Figma pill width */
	}
}

@media (max-width: 1440px) {
	.be_site-header-logo img {
		height: 80px;
	}

	.be_menu,
	.be_nav-list {
		gap: 16px;
	}
}

@media (max-width: 1279px) {
	.be_site-header {
		padding: 12px 40px;
	}

	.be_site-header-logo img {
		height: 72px;
	}

	.be_menu-toggle {
		display: inline-flex;
	}

	.be_menu {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 8px);
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		max-height: calc(100vh - 140px);
		padding: 16px;
		overflow-y: auto;
		background: var(--be-color-cream);
		border: 1px solid var(--be-color-white);
		border-radius: 20px;
		box-shadow: 0 12px 32px rgba(43, 43, 43, 0.15);
	}

	.be_menu:not(.is-open) {
		display: none;
	}

	body.be_menu-open {
		overflow: hidden;
	}

	.be_nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin: 0;
	}

	.be_nav-list > li {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
	}

	.be_nav-list > li > a {
		flex: 1 1 auto;
	}

	.be_nav-list > .menu-item-has-children > a::after {
		display: none;
	}

	.be_submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		border: 1px solid var(--be-color-orange);
		border-radius: 50%;
		background: var(--be-color-white);
		color: var(--be-color-dark);
		box-shadow: 0 4px 2px rgba(242, 104, 34, 0.6);
		cursor: pointer;
	}

	.be_submenu-toggle::before {
		content: "";
		width: 22px;
		height: 18px;
		background-color: currentColor;
		-webkit-mask: url("../img/icon-arrow.svg") center / contain no-repeat;
		mask: url("../img/icon-arrow.svg") center / contain no-repeat;
		transition: transform 0.2s ease;
	}

	.be_submenu-toggle[aria-expanded="true"]::before {
		transform: rotate(90deg);
	}

	.be_nav-list > li > .sub-menu {
		position: static;
		display: none;
		width: 100%;
		margin: 0;
		padding: 12px 0 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: none;
	}

	.be_nav-list > li.is-open > .sub-menu {
		display: block;
	}

	.be_dropdown-inner {
		min-width: 0;
		padding: 0 0 0 16px;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	/* Mega menus on mobile: column boxes stack inside the panel */
	.be_dropdown--mega > .be_dropdown-inner {
		max-height: none;
		padding: 0;
		overflow: visible;
		background: transparent;
	}

	.be_dropdown--mega .be_dropdown-list {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.be_dropdown--mega .be_dropdown-list > li {
		padding: 16px;
		border-radius: 16px;
	}

	.be_site-header-cta {
		display: flex;
	}
}

@media (max-width: 700px) {
	.be_site-header {
		padding: 8px 12px;
	}

	.be_site-header-bar {
		padding: 0 8px;
		border-radius: 16px;
	}

	.be_site-header-logo img {
		height: 56px;
	}
}


/* 7. Footer (Figma node 1:844) ------------------------------------------- */
.be_footer {
	position: relative;
	overflow: hidden;
	padding: 100px var(--be-pad-x) 50px;
	background: var(--be-color-dark);
	color: var(--be-color-white);
	font: var(--be-body);
}

/* Orange glow, bottom-left (Figma "Ellipse 2": #F26822 @ 10%, blur 100) */
.be_footer::before {
	content: "";
	position: absolute;
	left: -143px;
	top: 85px;
	width: 669px;
	height: 652px;
	border-radius: 50%;
	background: rgba(242, 104, 34, 0.1);
	filter: blur(100px);
	pointer-events: none;
}

.be_footer-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.be_footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.be_footer a:hover,
.be_footer a:focus-visible {
	color: var(--be-color-orange);
}

/* Columns */
.be_footer-columns {
	display: grid;
	grid-template-columns: minmax(0, 328px) minmax(0, 402px) minmax(0, 326px);
	justify-content: space-between;
	align-items: start;
	gap: 40px;
}

.be_footer-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.be_footer-title {
	margin: 0;
	font: var(--be-h3);
}

.be_footer-subtitle {
	margin: 0;
	font: 700 22px/32px var(--be-font-primary);
}

.be_footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.be_footer-hours {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.be_footer-hours-text,
.be_footer-text p {
	margin: 0;
}

.be_footer-text p + p {
	margin-top: 12px;
}

/* Social icons */
.be_footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.be_footer-social-link {
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.be_footer-social-link:hover,
.be_footer-social-link:focus-visible {
	transform: translateY(-2px);
}

.be_footer-social-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Map (Google Maps embed from ACF WYSIWYG) */
.be_footer-col--map {
	justify-self: end;
	width: 100%;
}

.be_footer-map {
	width: 100%;
	max-width: 326px;
	aspect-ratio: 326 / 262;
	overflow: hidden;
	border: 2px solid var(--be-color-orange);
	border-radius: 20px;
	background: var(--be-color-dark);
}

.be_footer-map > p {
	height: 100%;
	margin: 0;
}

.be_footer-map iframe,
.be_footer-map img {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Bottom bar */
.be_footer-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	padding: 12px 24px;
	border-radius: 60px;
	background: var(--be-color-cream);
	color: var(--be-color-dark);
	font-size: 16px;
	line-height: 24px;
}

.be_footer-copyright {
	margin: 0;
}

.be_footer-copyright a {
	text-decoration: underline;
	text-underline-position: from-font;
}

.be_footer-legal-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.be_footer-legal-list li + li::before {
	content: "|";
	margin: 0 0.5em;
}

/* Footer responsive */
@media (max-width: 1100px) {
	.be_footer-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.be_footer-col--map {
		justify-self: start;
	}
}

@media (max-width: 700px) {
	.be_footer {
		padding-top: 60px;
		padding-bottom: 32px;
	}

	.be_footer-inner {
		gap: 60px;
	}

	.be_footer-columns {
		grid-template-columns: minmax(0, 1fr);
	}

	.be_footer-bar {
		flex-direction: column;
		align-items: flex-start;
		border-radius: 30px;
	}
}
