/* ==========================================================================
   Wine&Siena — inner pages.
   Bronze-radiant ground (the 2027 banner: champagne glow → bronze edges,
   dark brown type), a floating dark sidebar, cream panels.
   Layout and type are in rem so the >1920px scaling in `html` carries them.
   ========================================================================== */

:root {
	--ws-glow: #ffbd78;
	--ws-champagne: #f4c48c;
	--ws-bronze-light: #e6a560;
	--ws-bronze: #d89651;
	--ws-bronze-mid: #c07e39;
	--ws-bronze-deep: #ad6b26;
	--ws-copper: #8a4f1f;
	--ws-brown: #763f2b;
	--ws-brown-deep: #46281a;
	--ws-ink: #2d2215;
	--ws-night: #15100c;
	--ws-cream: #fbf3e8;
	--ws-cream-2: #f3e5d2;
	--ws-gold: #e0b46b;
	--ws-line: rgba(118, 63, 43, .16);
	--ws-side-w: 18.75rem;
	--ws-gutter: 1.375rem;
	--ws-side-offset: calc(var(--ws-side-w) + var(--ws-gutter) * 2);
	--ws-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--ws-font-text: 'Raleway', 'Segoe UI', system-ui, sans-serif;
	--ws-radius: 1.125rem;
	--ws-shadow: 0 1.5rem 3.75rem -1.75rem rgba(45, 34, 21, .55);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (min-width: 1921px) { html { font-size: calc(100vw / 120); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.ws {
	margin: 0;
	min-height: 100vh;
	font-family: var(--ws-font-text);
	font-size: 1.0625rem;
	line-height: 1.7;
	font-weight: 430;
	color: var(--ws-brown-deep);
	background-color: #c8873f;
	background-image:
		radial-gradient(ellipse 85% 70% at 64% 36%, rgba(255, 214, 165, .96) 0%, rgba(255, 189, 120, .86) 20%, rgba(224, 160, 92, .55) 46%, rgba(173, 107, 38, 0) 74%),
		radial-gradient(ellipse 60% 55% at 6% 100%, rgba(112, 60, 18, .62), rgba(112, 60, 18, 0) 70%),
		radial-gradient(ellipse 45% 55% at 100% 0%, rgba(255, 224, 186, .35), rgba(255, 224, 186, 0) 70%),
		linear-gradient(160deg, #b8742c 0%, #cf8f47 38%, #d99b57 58%, #b6722e 100%);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}
/* grain */
body.ws::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: .14;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .3 0 0 0 0 .2 0 0 0 0 .1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (max-width: 900px) { body.ws { background-attachment: scroll; } }

h1, h2, h3, h4 {
	font-family: var(--ws-font-display);
	font-weight: 600;
	line-height: 1.08;
	margin: 0 0 .5em;
	color: var(--ws-brown-deep);
	letter-spacing: -.005em;
	text-wrap: balance;
}
p { margin: 0 0 1em; }
a { color: var(--ws-copper); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { color: var(--ws-brown); }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid var(--ws-gold); outline-offset: 3px; }

.ws-kicker {
	font: 700 .72rem/1.4 var(--ws-font-text);
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ws-copper);
	margin: 0 0 .9rem;
}
.ws-kicker--light { color: var(--ws-gold); }

.ws-visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ws-skip { position: absolute; left: -999px; top: 0; z-index: 2000; padding: .6rem 1rem; background: var(--ws-night); color: #fff; border-radius: 0 0 .5rem 0; }
.ws-skip:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.ws-page { position: relative; z-index: 1; margin-left: var(--ws-side-offset); min-height: 100vh; display: flex; flex-direction: column; }
.ws-main { flex: 1 0 auto; padding: clamp(1.75rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 4rem) clamp(2.5rem, 6vw, 6rem); }
.ws-wrap { max-width: 77.5rem; margin: 0 auto; }
.ws-wrap--narrow { max-width: 56.25rem; }
.ws-wrap--wide { max-width: 90rem; }

/* --------------------------------------------------------------------------
   Floating dark sidebar
   -------------------------------------------------------------------------- */
.ws-side {
	position: fixed;
	top: var(--ws-gutter);
	left: var(--ws-gutter);
	bottom: var(--ws-gutter);
	width: var(--ws-side-w);
	z-index: 900;
	color: #f1e6d6;
	background: rgba(21, 16, 12, .84);
	border: 1px solid rgba(255, 189, 120, .14);
	border-radius: 1.375rem;
	box-shadow: 0 1.875rem 4.375rem -1.5rem rgba(21, 16, 12, .7), inset 0 1px 0 rgba(255, 255, 255, .05);
	-webkit-backdrop-filter: blur(16px) saturate(130%);
	backdrop-filter: blur(16px) saturate(130%);
	overflow: hidden;
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
/* Everything fits at once: sized for a 800px-tall viewport, tighter below
   820px. The inner box can still scroll for very short windows, but with no
   visible scrollbar. */
.ws-side__inner {
	height: 100%;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 1.375rem 1.375rem 1.125rem;
	display: flex;
	flex-direction: column;
	gap: .8rem;
	scrollbar-width: none;
}
.ws-side__inner::-webkit-scrollbar { display: none; }
.ws-side__logo { display: block; text-align: center; padding: .25rem .375rem 0; }
.ws-side__logo img { width: 100%; max-width: 12.5rem; height: auto; }
.ws-side__edition {
	margin: 0;
	padding: .5rem 0 .625rem;
	display: grid;
	gap: .125rem;
	text-align: center;
	border-top: 1px solid rgba(255, 189, 120, .12);
	border-bottom: 1px solid rgba(255, 189, 120, .12);
}
.ws-side__ed { font: 700 .66rem/1.3 var(--ws-font-text); letter-spacing: .24em; text-transform: uppercase; color: var(--ws-gold); }
.ws-side__dates { font: 600 1.15rem/1.15 var(--ws-font-display); color: #fff; text-wrap: balance; }
.ws-side__venue { font-size: .78rem; letter-spacing: .04em; color: rgba(241, 230, 214, .7); }

.ws-nav__list { list-style: none; margin: 0; padding: 0; }
.ws-nav__list li + li { border-top: 1px solid rgba(255, 255, 255, .05); }
.ws-nav__list a {
	display: flex;
	align-items: center;
	gap: .625rem;
	padding: .375rem .25rem;
	color: #e6d9c6;
	text-decoration: none;
	font-size: .88rem;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: .02em;
	transition: color .2s, padding-left .25s;
}
.ws-nav__list a::before {
	content: "";
	flex: 0 0 auto;
	width: .375rem;
	height: .375rem;
	border-radius: 50%;
	background: var(--ws-gold);
	opacity: 0;
	transform: scale(.4);
	transition: opacity .2s, transform .25s;
}
.ws-nav__list a:hover, .ws-nav__list a:focus-visible { color: #fff; padding-left: .5rem; }
.ws-nav__list a:hover::before,
.ws-nav__list .current-menu-item > a::before,
.ws-nav__list .current_page_item > a::before { opacity: 1; transform: scale(1); }
.ws-nav__list .current-menu-item > a,
.ws-nav__list .current_page_item > a { color: var(--ws-gold); }

.ws-side__foot { margin-top: auto; padding-top: .75rem; border-top: 1px solid rgba(255, 189, 120, .12); text-align: center; }
.ws-side__copy { margin: 0 0 .5rem; font-size: .62rem; line-height: 1.5; letter-spacing: .05em; text-transform: uppercase; color: rgba(241, 230, 214, .62); }
.ws-side__wh { display: inline-block; line-height: 0; }
.ws-side__wh img { width: 5.25rem; height: auto; opacity: .85; }
@media (max-height: 820px) {
	.ws-side__inner { padding: 1.125rem 1.25rem .875rem; gap: .625rem; }
	.ws-side__logo img { max-width: 10.5rem; }
	.ws-side__edition { padding: .375rem 0 .5rem; }
	.ws-side__dates { font-size: 1.05rem; }
	.ws-side__venue { display: none; }
	.ws-nav__list a { padding: .3rem .25rem; font-size: .84rem; }
	.ws-side__copy-more { display: none; }
	.ws-side__wh img { width: 4.5rem; }
}

/* mobile top bar, burger and drawer */
.ws-topbar { display: none; }
.ws-overlay[hidden] { display: none; }
.ws-burger {
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(255, 189, 120, .25);
	border-radius: .75rem;
	background: rgba(255, 255, 255, .06);
	display: grid;
	place-content: center;
	gap: .3rem;
	cursor: pointer;
}
.ws-burger__bar { display: block; width: 1.25rem; height: 2px; background: var(--ws-gold); transition: transform .25s, opacity .2s; }
body.ws-menu-open .ws-burger__bar:nth-child(1) { transform: translateY(.42rem) rotate(45deg); }
body.ws-menu-open .ws-burger__bar:nth-child(2) { opacity: 0; }
body.ws-menu-open .ws-burger__bar:nth-child(3) { transform: translateY(-.42rem) rotate(-45deg); }

@media (max-width: 1100px) {
	:root { --ws-side-offset: 0px; }
	.ws-page { margin-left: 0; }
	.ws-topbar {
		position: sticky;
		top: 0;
		z-index: 950;
		display: flex;
		align-items: center;
		gap: .75rem;
		padding: .625rem 1rem;
		background: rgba(21, 16, 12, .9);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid rgba(255, 189, 120, .14);
	}
	.ws-topbar__logo { display: block; line-height: 0; }
	.ws-topbar__logo img { height: 2.125rem; width: auto; }
	.ws-topbar__ed { margin-left: auto; font: 700 .66rem var(--ws-font-text); letter-spacing: .18em; text-transform: uppercase; color: var(--ws-gold); }
	.ws-side {
		top: 0;
		left: 0;
		bottom: 0;
		width: min(88vw, 22.5rem);
		border-radius: 0 1.375rem 1.375rem 0;
		transform: translateX(-105%);
	}
	body.ws-menu-open .ws-side { transform: none; }
	.ws-overlay { position: fixed; inset: 0; z-index: 899; background: rgba(21, 16, 12, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
	body.ws-menu-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   Hero, chips, buttons
   -------------------------------------------------------------------------- */
.ws-hero { margin: 0 0 clamp(1.75rem, 4vw, 3rem); max-width: 62ch; }
.ws-hero__title { font-size: clamp(2.6rem, 5.2vw, 4.6rem); font-weight: 500; line-height: 1; margin: 0 0 .35em; color: var(--ws-ink); }
.ws-hero__title em { font-style: italic; color: var(--ws-brown); }
.ws-hero__lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; margin: 0 0 1.2rem; max-width: 58ch; }
.ws-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }

.ws-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; padding: 0; }
.ws-chip {
	font: 600 .78rem/1 var(--ws-font-text);
	letter-spacing: .06em;
	padding: .5625rem .8125rem;
	border-radius: 999px;
	background: rgba(45, 34, 21, .86);
	color: #f6e8d4;
	border: 1px solid rgba(255, 189, 120, .25);
}
.ws-chips--light .ws-chip { background: rgba(255, 255, 255, .08); }

.ws-btn {
	display: inline-flex;
	align-items: center;
	gap: .625rem;
	padding: .8125rem 1.375rem;
	border-radius: 999px;
	background: var(--ws-ink);
	color: #f6e8d4;
	text-decoration: none;
	font-weight: 700;
	font-size: .88rem;
	letter-spacing: .06em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .2s, background .2s, box-shadow .2s, color .2s;
}
.ws-btn:hover { background: var(--ws-brown); color: #fff; transform: translateY(-2px); box-shadow: 0 .75rem 1.5rem -.75rem rgba(45, 34, 21, .6); }
.ws-btn--gold, .ws-panel--dark .ws-btn--gold, .ws-soon .ws-btn--gold { background: linear-gradient(135deg, #e6b36b, #c9903f); color: var(--ws-ink); }
.ws-btn--gold:hover, .ws-panel--dark .ws-btn--gold:hover { background: linear-gradient(135deg, #f0c27d, #d49a48); color: var(--ws-ink); }
.ws-panel--dark .ws-btn:not(.ws-btn--gold) { background: rgba(255, 255, 255, .08); color: #f6e8d4; border-color: rgba(255, 189, 120, .35); }
.ws-panel--dark .ws-btn:not(.ws-btn--gold):hover { background: rgba(255, 255, 255, .14); color: #fff; }
.ws-btn--ghost { background: transparent; color: var(--ws-ink); border-color: rgba(45, 34, 21, .5); }
.ws-btn--ghost:hover { background: rgba(45, 34, 21, .08); color: var(--ws-ink); }
.ws-btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* --------------------------------------------------------------------------
   Panels and sections
   -------------------------------------------------------------------------- */
.ws-panel {
	background: rgba(255, 247, 236, .86);
	border: 1px solid var(--ws-line);
	border-radius: var(--ws-radius);
	padding: clamp(1.375rem, 3vw, 2.5rem);
	box-shadow: var(--ws-shadow);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.ws-panel + .ws-panel { margin-top: 1.25rem; }
.ws-panel--dark { background: rgba(33, 24, 16, .92); color: #efe3d2; border-color: rgba(255, 189, 120, .16); }
.ws-panel--dark h1, .ws-panel--dark h2, .ws-panel--dark h3, .ws-panel--dark h4 { color: #fff; }
.ws-panel--dark a { color: var(--ws-gold); }
.ws-panel--dark .ws-kicker { color: var(--ws-gold); }
.ws-panel--tint { background: rgba(224, 180, 107, .18); box-shadow: none; }

.ws-section { margin: 0 0 clamp(1.75rem, 4vw, 3rem); }
.ws-section__title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 500; margin: 0 0 .4em; }
.ws-section__sub { margin: 0 0 1.2rem; color: var(--ws-brown); max-width: 64ch; }

.ws-prose > :first-child { margin-top: 0; }
.ws-prose > :last-child { margin-bottom: 0; }
.ws-prose ul, .ws-prose ol { padding-left: 1.25em; margin: 0 0 1em; }
.ws-prose h2 { font-size: 1.9rem; margin-top: 1.4em; }
.ws-prose h3 { font-size: 1.45rem; margin-top: 1.2em; }
.ws-prose img { border-radius: .75rem; }

.ws-split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(1.25rem, 4vw, 3.5rem); align-items: start; }
.ws-split__aside { position: sticky; top: 1.5rem; }
@media (max-width: 900px) { .ws-split { grid-template-columns: 1fr; } .ws-split__aside { position: static; } }

.ws-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr)); gap: 1.25rem; }

/* --------------------------------------------------------------------------
   "In preparazione" panel (the coming edition)
   -------------------------------------------------------------------------- */
.ws-soon {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem;
	align-items: center;
	margin: 0 0 clamp(2.25rem, 5vw, 4rem);
	padding: clamp(1.5rem, 3.5vw, 2.75rem);
	border-radius: var(--ws-radius);
	border: 1px solid rgba(255, 189, 120, .22);
	background: linear-gradient(135deg, rgba(33, 24, 16, .95), rgba(74, 42, 28, .9));
	color: #f4e7d3;
	box-shadow: var(--ws-shadow);
}
.ws-soon::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -15%;
	width: 55%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(255, 189, 120, .3), transparent 62%);
	pointer-events: none;
}
.ws-soon__body { position: relative; z-index: 1; }
.ws-soon__title { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 0 0 .4em; font-weight: 500; }
.ws-soon__text { margin: 0 0 1rem; max-width: 60ch; color: rgba(244, 231, 211, .88); }
.ws-soon__actions { margin: .25rem 0 0; }
.ws-soon__date {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	align-items: baseline;
	column-gap: .375rem;
	font-family: var(--ws-font-display);
	color: var(--ws-gold);
	text-align: center;
}
.ws-soon__d { font-size: clamp(3rem, 6vw, 5rem); line-height: .9; font-weight: 500; color: #fff; }
.ws-soon__m { font: 700 .95rem var(--ws-font-text); text-transform: uppercase; letter-spacing: .2em; }
.ws-soon__sep { font-size: 2.4rem; }
.ws-soon__y { grid-column: 1 / -1; margin-top: .5rem; font: 700 .8rem var(--ws-font-text); letter-spacing: .3em; }
@media (max-width: 760px) { .ws-soon { grid-template-columns: 1fr; } .ws-soon__date { justify-content: start; } }

/* --------------------------------------------------------------------------
   Past-edition archive: stamp + notice + tags
   -------------------------------------------------------------------------- */
.ws-archive { position: relative; margin-top: clamp(1.5rem, 4vw, 2.5rem); padding-top: clamp(1.5rem, 3vw, 2.25rem); border-top: 1px dashed rgba(74, 42, 28, .38); }
.ws-archive__head { display: flex; gap: 1.375rem; align-items: flex-start; margin: 0 0 clamp(1.375rem, 3vw, 2.25rem); }
.ws-stamp {
	flex: 0 0 auto;
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	border: 2px solid var(--ws-brown);
	box-shadow: inset 0 0 0 4px rgba(255, 247, 236, .6), inset 0 0 0 5px var(--ws-brown);
	color: var(--ws-brown);
	display: grid;
	place-content: center;
	text-align: center;
	transform: rotate(-9deg);
	font-family: var(--ws-font-display);
	opacity: .9;
}
.ws-stamp__y { font-size: 2rem; line-height: 1; font-weight: 600; }
.ws-stamp__l { font: 700 .55rem var(--ws-font-text); letter-spacing: .24em; text-transform: uppercase; }
.ws-archive__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 0 0 .3em; font-weight: 500; }
.ws-archive__text { margin: 0; max-width: 64ch; color: var(--ws-brown); }
.ws-archive__body .ws-panel { background: rgba(255, 247, 236, .74); }
.ws-tag { display: inline-block; font: 700 .62rem/1 var(--ws-font-text); letter-spacing: .2em; text-transform: uppercase; padding: .375rem .625rem; border-radius: .375rem; }
.ws-tag--past { background: rgba(74, 42, 28, .12); color: var(--ws-brown); border: 1px solid rgba(74, 42, 28, .25); }
@media (max-width: 640px) { .ws-archive__head { flex-direction: column; } }

/* --------------------------------------------------------------------------
   Programme
   -------------------------------------------------------------------------- */
.ws-day { margin: 0 0 clamp(1.375rem, 3vw, 2.125rem); }
.ws-day__head { display: flex; align-items: center; gap: .875rem; margin: 0 0 .5rem; }
.ws-day__title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; margin: 0; white-space: nowrap; }
.ws-day__rule { flex: 1; height: 1px; background: rgba(74, 42, 28, .3); }
.ws-event { display: grid; grid-template-columns: 8.125rem 1fr; gap: .375rem 1.375rem; padding: 1.125rem 0; border-top: 1px solid var(--ws-line); }
.ws-event:first-of-type { border-top: 0; }
.ws-event__time { font: 600 1.15rem/1.25 var(--ws-font-display); color: var(--ws-brown); }
.ws-event__place { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ws-copper); font-weight: 700; margin: 0 0 .25rem; }
.ws-event__title { font: 700 1.15rem/1.35 var(--ws-font-text); margin: 0 0 .25rem; color: var(--ws-ink); }
.ws-event__sub, .ws-event__desc { margin: 0; }
.ws-event--special { background: rgba(224, 180, 107, .16); border-radius: .75rem; padding: 1.125rem 1rem; border-top: 0; margin: .375rem 0; }
.ws-event__mc { margin: .5rem 0 0; padding: .75rem 1rem; border-left: 3px solid var(--ws-bronze-deep); background: rgba(216, 150, 81, .12); border-radius: 0 .625rem .625rem 0; }
.ws-event__mc dt { font: 600 1.05rem var(--ws-font-display); color: var(--ws-brown); }
.ws-event__mc dd { margin: 0 0 .625rem; }
.ws-event__mc dd:last-child { margin-bottom: 0; }
.ws-event__mc small { display: block; font-size: .85rem; color: var(--ws-brown); font-style: italic; }
.ws-slots { list-style: none; margin: .375rem 0 0; padding: 0; }
.ws-slots li { display: grid; grid-template-columns: 6.875rem 1fr; gap: .625rem; padding: .375rem 0; border-top: 1px dashed var(--ws-line); }
.ws-slots time { font-weight: 700; color: var(--ws-brown); }
.ws-slots small { display: block; font-style: italic; color: var(--ws-brown); }
@media (max-width: 640px) { .ws-event { grid-template-columns: 1fr; } .ws-slots li { grid-template-columns: 1fr; } .ws-day__title { white-space: normal; } }

/* --------------------------------------------------------------------------
   Masterclasses
   -------------------------------------------------------------------------- */
.ws-mc { display: grid; grid-template-columns: 1fr 9.5rem; gap: 1.25rem; padding: 1.375rem 0; border-top: 1px solid var(--ws-line); }
.ws-mc:first-of-type { border-top: 0; padding-top: 0; }
.ws-mc__producers { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ws-copper); font-weight: 700; margin: 0 0 .375rem; }
.ws-mc__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; margin: 0 0 .375rem; }
.ws-mc__speakers { font-size: .9rem; font-style: italic; color: var(--ws-brown); margin: 0 0 .625rem; }
.ws-mc__desc { margin: 0 0 .625rem; }
.ws-mc__side { text-align: center; border-left: 1px solid var(--ws-line); padding-left: 1.25rem; display: flex; flex-direction: column; gap: .625rem; align-items: center; }
.ws-mc__time { font: 600 1.4rem var(--ws-font-display); color: var(--ws-brown); }
.ws-disclose summary { cursor: pointer; font-weight: 700; color: var(--ws-copper); list-style: none; display: inline-flex; gap: .5rem; align-items: center; }
.ws-disclose summary::-webkit-details-marker { display: none; }
.ws-disclose summary::after { content: "▾"; transition: transform .2s; }
.ws-disclose[open] summary::after { transform: rotate(180deg); }
.ws-disclose ul { margin: .625rem 0 0; padding: .75rem 1rem .75rem 2rem; background: rgba(216, 150, 81, .12); border-radius: .625rem; }
.ws-disclose li { margin: 0 0 .375rem; }
@media (max-width: 640px) {
	.ws-mc { grid-template-columns: 1fr; }
	.ws-mc__side { border-left: 0; padding-left: 0; border-top: 1px solid var(--ws-line); padding-top: .75rem; flex-direction: row; justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   Tickets
   -------------------------------------------------------------------------- */
.ws-tickets { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); grid-auto-rows: 1fr; gap: 1.25rem; align-items: stretch; margin: 0 0 1.5rem; }
.ws-ticket { position: relative; display: flex; flex-direction: column; gap: .875rem; }
.ws-ticket--best { border-color: rgba(173, 107, 38, .55); box-shadow: 0 0 0 1px rgba(173, 107, 38, .35), var(--ws-shadow); }
.ws-ticket__head { display: flex; justify-content: space-between; align-items: center; gap: .5rem; min-height: 1.5rem; }
.ws-ticket__badge { font: 700 .66rem var(--ws-font-text); letter-spacing: .2em; text-transform: uppercase; color: var(--ws-copper); }
.ws-ticket--best .ws-ticket__badge { color: #9a2f1c; }
.ws-ticket__type { font-size: 1.7rem; font-weight: 500; margin: 0; line-height: 1.1; }
.ws-ticket__price { margin: 0; font: 500 3.2rem/1 var(--ws-font-display); color: var(--ws-ink); min-height: 4.6rem; }
.ws-ticket__price small { display: block; font: 600 .82rem var(--ws-font-text); color: var(--ws-copper); margin-top: .375rem; }
.ws-ticket__days { list-style: none; margin: 0; padding: .75rem .875rem; background: rgba(216, 150, 81, .12); border-radius: .625rem; font-size: .9rem; display: grid; gap: .25rem; }
.ws-ticket__days li { padding-left: 1rem; position: relative; }
.ws-ticket__days li::before { content: ""; position: absolute; left: 0; top: .6em; width: .375rem; height: .375rem; border-radius: 50%; background: var(--ws-bronze-deep); }
.ws-ticket__features { list-style: none; margin: 0; padding: 0; flex: 1 0 auto; }
.ws-ticket__features li { padding: .5rem 0 .5rem 1.625rem; position: relative; border-top: 1px solid var(--ws-line); font-size: .93rem; }
.ws-ticket__features li::before { content: "✓"; position: absolute; left: .125rem; color: var(--ws-bronze-deep); font-weight: 700; }
.ws-ticket__foot { margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--ws-line); text-align: center; }
.ws-ticket__foot .ws-btn { width: 100%; justify-content: center; }
.ws-ticket__closed { display: block; padding: .5rem 0; font: 700 .68rem var(--ws-font-text); letter-spacing: .16em; text-transform: uppercase; color: var(--ws-brown); }
.ws-included { display: grid; grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr)); grid-auto-rows: 1fr; gap: 1rem; align-items: stretch; }
.ws-included__item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1.125rem; border-radius: .875rem; background: rgba(255, 247, 236, .78); border: 1px solid var(--ws-line); }
.ws-included__ico { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; margin-bottom: .75rem; border-radius: 50%; color: var(--ws-brown); background: rgba(216, 150, 81, .18); border: 1px solid rgba(173, 107, 38, .3); }
.ws-included__title { font-size: 1.3rem; font-weight: 500; margin: 0 0 .375rem; }
.ws-included__desc { margin: 0; font-size: .92rem; }
.ws-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2.5rem); }
.ws-duo__col { display: flex; flex-direction: column; }
.ws-duo__col + .ws-duo__col { border-left: 1px solid rgba(255, 189, 120, .18); padding-left: clamp(1.25rem, 3vw, 2.5rem); }
.ws-duo__col p { margin: 0 0 .875rem; }
.ws-duo__action { margin-top: auto !important; padding-top: .25rem; }
.ws-ops { display: grid; grid-template-columns: minmax(12rem, 1fr) 2fr; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; }
.ws-ops__price { margin: 0; font: 500 3rem/1 var(--ws-font-display); color: var(--ws-ink); }
.ws-ops__price small { display: block; margin-top: .375rem; font: 600 .72rem var(--ws-font-text); letter-spacing: .1em; text-transform: uppercase; color: var(--ws-copper); }
@media (max-width: 760px) {
	.ws-duo { grid-template-columns: 1fr; }
	.ws-duo__col + .ws-duo__col { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255, 189, 120, .18); padding-top: 1.25rem; }
	.ws-ops { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Exhibitors: sticky filter bar + cards
   -------------------------------------------------------------------------- */
.ws-filter {
	position: sticky;
	top: .75rem;
	z-index: 20;
	display: flex;
	flex-wrap: wrap;
	gap: .625rem;
	align-items: center;
	margin: 0 0 1.375rem;
	padding: .75rem;
	border-radius: .875rem;
	background: rgba(33, 24, 16, .9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 189, 120, .18);
	box-shadow: var(--ws-shadow);
}
.ws-filter input, .ws-filter select {
	font: 500 .95rem var(--ws-font-text);
	color: var(--ws-ink);
	background: var(--ws-cream);
	border: 1px solid transparent;
	border-radius: .625rem;
	padding: .625rem .875rem;
	min-height: 2.625rem;
}
.ws-filter__search { flex: 1 1 16rem; display: block; }
.ws-filter__search input { width: 100%; }
.ws-filter__count { margin: 0 .25rem 0 auto; color: var(--ws-gold); font: 700 .72rem var(--ws-font-text); letter-spacing: .14em; text-transform: uppercase; }
.ws-filter__empty { text-align: center; padding: 2rem; color: var(--ws-brown); }
@media (max-width: 1100px) { .ws-filter { top: 3.75rem; } }

.ws-exh { display: grid; grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr)); gap: 1.125rem; }
.ws-exh__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .375rem;
	padding: 1rem 1rem .875rem;
	background: rgba(255, 247, 236, .9);
	border: 1px solid var(--ws-line);
	border-radius: 1rem;
	transition: transform .2s, box-shadow .2s;
}
.ws-exh__card:hover { transform: translateY(-3px); box-shadow: var(--ws-shadow); }
.ws-exh__card[hidden] { display: none; }
.ws-exh__top { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.ws-exh__table { text-align: left; }
.ws-exh__no { display: block; font: 600 2rem/1 var(--ws-font-display); color: var(--ws-brown); }
.ws-exh__room { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ws-copper); font-weight: 700; }
.ws-exh__cat { background: none; border: 0; padding: 0; cursor: pointer; line-height: 0; }
.ws-exh__cat:hover .ws-icon { transform: scale(1.08); }
.ws-icon { display: inline-block; width: 2.5rem; height: 2.375rem; background: center / contain no-repeat; transition: transform .2s, opacity .2s; }
.ws-icon--wine { background-image: url(/customicons/wine.png); }
.ws-icon--fsb { background-image: url(/customicons/fsb.png); }
.ws-icon--amphora { background-image: url(/customicons/amphora.png); }
.ws-icon--consorzio { background-image: url(/customicons/consorzi.png); }
.ws-icon--wha { background-image: url(/customicons/wha.png); }
.ws-icon--extrawine { background-image: url(/customicons/extrawine.png); }
.ws-icon--mail { background-image: url(/customicons/mail.png); }
.ws-icon--web { background-image: url(/customicons/website.png); }
.ws-exh__logo { height: 6rem; display: grid; place-items: center; }
.ws-exh__logo img { max-width: 8.125rem; max-height: 6rem; width: auto; object-fit: contain; }
.ws-exh__name { font-size: 1.3rem; font-weight: 600; margin: .25rem 0 0; }
.ws-exh__where { margin: 0; font-size: .88rem; color: var(--ws-bronze-deep); font-weight: 700; }
.ws-exh__where span { display: block; font-weight: 500; color: var(--ws-brown); font-size: .8rem; }
.ws-exh__enol { margin: 0; font-size: .82rem; }
.ws-exh__tags { margin: .25rem 0 0; display: flex; flex-wrap: wrap; gap: .25rem; justify-content: center; }
.ws-exh__tags .ws-tag { background: rgba(216, 150, 81, .16); color: var(--ws-copper); font-size: .58rem; padding: .3rem .5rem; }
.ws-exh__products { width: 100%; text-align: left; margin-top: .25rem; }
.ws-exh__products summary { font-size: .82rem; }
.ws-exh__products ul { padding: .625rem .75rem .625rem 1.5rem; font-size: .85rem; }
.ws-exh__products li { margin: 0 0 .375rem; }
.ws-exh__products small { display: block; color: var(--ws-brown); }
.ws-award { display: inline-block; margin-left: .375rem; padding: .1rem .45rem; border-radius: .3rem; font: 700 .58rem/1.4 var(--ws-font-text); letter-spacing: .12em; text-transform: uppercase; vertical-align: middle; background: rgba(118, 63, 43, .12); color: var(--ws-brown); }
.ws-award--gold { background: rgba(224, 180, 107, .35); color: #6b4a08; }
.ws-award--platinum { background: rgba(45, 34, 21, .85); color: #f4e7d3; }
.ws-award--rosso { background: rgba(154, 47, 28, .14); color: #8a2a1a; }
.ws-exh__links { margin: .375rem 0 0; display: flex; gap: .875rem; }
.ws-exh__links .ws-icon { width: 2.125rem; height: 2rem; opacity: .8; }
.ws-exh__links a:hover .ws-icon { opacity: 1; transform: scale(1.08); }

/* --------------------------------------------------------------------------
   Logo grids (partner)
   -------------------------------------------------------------------------- */
.ws-logos { display: grid; grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr)); gap: .75rem; }
.ws-logos__item { display: grid; place-items: center; aspect-ratio: 4 / 3; padding: .875rem; background: #fff; border-radius: .75rem; border: 1px solid var(--ws-line); transition: box-shadow .2s, transform .2s; }
.ws-logos__item img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
a.ws-logos__item:hover { box-shadow: var(--ws-shadow); transform: translateY(-2px); }
.ws-logos--hero { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.ws-logos--hero .ws-logos__item { aspect-ratio: auto; min-height: 9rem; padding: 1.5rem; }
.ws-logos--hero .ws-logos__item img { max-height: 7rem; }

/* --------------------------------------------------------------------------
   Restaurants (Small Plates Dinner)
   -------------------------------------------------------------------------- */
/* the evening as a menu card + numbered stops; logo tiles by artwork tone */
.ws-menu { display: grid; grid-template-columns: minmax(14rem, 1fr) 2fr; gap: clamp(1.25rem, 3vw, 2.5rem); margin: 0 0 clamp(1.75rem, 4vw, 3rem); padding: clamp(1.375rem, 3vw, 2.5rem); border-radius: var(--ws-radius); background: linear-gradient(135deg, rgba(33, 24, 16, .95), rgba(74, 42, 28, .9)); color: #f4e7d3; border: 1px solid rgba(255, 189, 120, .22); box-shadow: var(--ws-shadow); }
.ws-menu__date { margin: .5rem 0 .25rem; font: 500 clamp(1.5rem, 2.6vw, 2.1rem)/1.1 var(--ws-font-display); color: #fff; }
.ws-menu__place { margin: 0; color: var(--ws-gold); font-size: .9rem; display: flex; align-items: center; }
.ws-menu__text p { margin: 0 0 .875rem; }
.ws-menu__story { margin-top: .75rem; }
.ws-menu__story p { color: rgba(244, 231, 211, .85); font-size: .95rem; }
.ws-disclose--light summary { color: var(--ws-gold); }
.ws-disclose--light .ws-menu__story { background: rgba(255, 255, 255, .06); padding: .75rem 1rem; border-radius: .625rem; }
.ws-svg--inline { width: 1.05em; height: 1.05em; vertical-align: -.15em; margin-right: .35em; flex: 0 0 auto; }
.ws-section__head { margin: 0 0 1.25rem; }
.ws-stops { display: grid; grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr)); gap: 1.25rem; align-items: stretch; }
.ws-stop { display: flex; flex-direction: column; overflow: hidden; background: rgba(255, 247, 236, .9); border: 1px solid var(--ws-line); border-radius: var(--ws-radius); box-shadow: var(--ws-shadow); }
.ws-stop--finale { max-width: 40rem; }
.ws-stop__head { position: relative; height: 9.5rem; display: grid; place-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--ws-line); }
.ws-tile--ink { background: radial-gradient(120% 100% at 30% 0%, #4a2a1c, #2d2215 70%); }
.ws-tile--paper { background: #fff; }
.ws-stop__logo { max-width: 78%; max-height: 6.75rem; width: auto; object-fit: contain; }
.ws-stop__n { position: absolute; top: .75rem; left: .875rem; font: 500 1.1rem/1 var(--ws-font-display); letter-spacing: .04em; color: var(--ws-gold); }
.ws-tile--paper .ws-stop__n { color: var(--ws-bronze-deep); }
.ws-stop__body { padding: 1.25rem 1.375rem .5rem; }
.ws-stop__name { font-size: 1.55rem; font-weight: 500; margin: 0 0 .25rem; }
.ws-stop__addr { margin: 0 0 .75rem; font-size: .82rem; color: var(--ws-copper); font-weight: 600; display: flex; align-items: flex-start; }
.ws-stop__desc { margin: 0 0 .875rem; font-size: .93rem; }
.ws-stop__action { margin: 0 0 .75rem; }
.ws-stop__pair { margin-top: auto; display: grid; grid-template-columns: 6rem 1fr; gap: .875rem; align-items: start; padding: 1rem 1.375rem 1.25rem; border-top: 1px dashed var(--ws-line); background: rgba(216, 150, 81, .1); }
.ws-stop__pairlogo { height: 5rem; display: grid; place-items: center; border-radius: .625rem; padding: .5rem; border: 1px solid var(--ws-line); }
.ws-stop__pairlogo img { max-width: 100%; max-height: 4rem; width: auto; object-fit: contain; }
.ws-stop__pairtext .ws-kicker { margin: 0 0 .25rem; display: flex; align-items: center; }
.ws-stop__pairname { margin: 0 0 .25rem; font-weight: 700; }
.ws-stop__pairname span { display: block; font-weight: 500; font-size: .78rem; color: var(--ws-brown); font-style: italic; }
.ws-stop__pairdesc { margin: 0; font-size: .85rem; }
@media (max-width: 760px) { .ws-menu { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .ws-stop__pair { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Figures, lightbox, map
   -------------------------------------------------------------------------- */
.ws-figure { margin: 0 0 1.5rem; }
.ws-figure__link { display: block; overflow: hidden; border-radius: 1rem; box-shadow: var(--ws-shadow); }
.ws-figure__img { display: block; width: 100%; height: auto; transition: transform .8s cubic-bezier(.2, .8, .2, 1); }
.ws-figure__link:hover .ws-figure__img { transform: scale(1.04); }
.ws-figure__cap { margin: .625rem .25rem 0; font-size: .9rem; color: var(--ws-brown); }
.ws-figure__cap strong { display: block; font: 500 1.35rem/1.2 var(--ws-font-display); color: var(--ws-ink); }
.ws-lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 87.5rem); max-height: 94vh; }
.ws-lightbox::backdrop { background: rgba(21, 16, 12, .88); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ws-lightbox__img { display: block; max-width: 96vw; max-height: 90vh; width: auto; border-radius: .75rem; }
.ws-lightbox__close { position: fixed; top: 1rem; right: 1rem; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid rgba(255, 189, 120, .3); background: rgba(21, 16, 12, .85); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.ws-map { width: 100%; aspect-ratio: 16 / 10; border: 0; border-radius: 1rem; box-shadow: var(--ws-shadow); background: #e9dcc8; }
.ws-poster { margin: 0 0 1.25rem; }

/* --------------------------------------------------------------------------
   Forms (Contact Form 7 on the contact page)
   -------------------------------------------------------------------------- */
.ws-form label { display: block; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ws-copper); margin: 0 0 .375rem; }
.ws-form p { margin: 0 0 .875rem; }
.ws-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ws-form select,
.ws-form textarea {
	width: 100%;
	font: inherit;
	padding: .75rem .875rem;
	border-radius: .625rem;
	border: 1px solid rgba(74, 42, 28, .3);
	background: #fff;
	color: var(--ws-ink);
}
.ws-form textarea { min-height: 11rem; }
.ws-form input[type="checkbox"] { width: 1.125rem; height: 1.125rem; vertical-align: middle; margin-right: .5rem; }
.ws-form .wpcf7-list-item { margin: 0 .75rem 0 0; }
.ws-form .wpcf7-list-item-label { font-weight: 500; text-transform: none; letter-spacing: 0; }
.ws-form input[type="submit"], .ws-form .wpcf7-submit {
	display: inline-flex;
	padding: .8125rem 1.75rem;
	border-radius: 999px;
	border: 0;
	background: var(--ws-ink);
	color: #f6e8d4;
	font: 700 .88rem var(--ws-font-text);
	letter-spacing: .06em;
	cursor: pointer;
	transition: background .2s, transform .2s;
}
.ws-form .wpcf7-submit:hover { background: var(--ws-brown); transform: translateY(-2px); }
.ws-form .wpcf7-spinner { margin-left: .75rem; }
.ws-form .wpcf7-response-output { margin: 1rem 0 0; padding: .75rem 1rem; border-radius: .625rem; border: 1px solid var(--ws-bronze-deep); }
.ws-form .wpcf7-not-valid-tip { color: #9a2f1c; font-size: .85rem; }
.ws-address { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; }
.ws-address__block { padding: 1rem 1.125rem; border-radius: .75rem; background: rgba(216, 150, 81, .12); }
.ws-address__block h3 { font-size: 1.2rem; margin: 0 0 .25rem; }
.ws-address__block p { margin: 0; font-size: .95rem; }

/* --------------------------------------------------------------------------
   Legacy editor markup (accreditation criteria page) inside the dark panel
   -------------------------------------------------------------------------- */
.ws-prose .accreditamento-header h1 { font-size: 2rem; margin: 0 0 .25em; }
.ws-prose .sottotitolo, .ws-prose .highlight, .ws-prose .contatto { color: var(--ws-gold); }
.ws-prose .sezione { margin: 0 0 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 189, 120, .14); }
.ws-prose .sezione-numero { float: left; margin: 0 .75rem 0 0; font: 600 2rem/1 var(--ws-font-display); color: var(--ws-gold); }
.ws-prose .sezione-titolo { font-size: 1.5rem; margin: 0 0 .5em; }
.ws-prose .info-box, .ws-prose .avviso-importante { background: rgba(255, 255, 255, .06); border-left: 3px solid var(--ws-gold); padding: .75rem 1rem; border-radius: 0 .625rem .625rem 0; margin: .625rem 0 .875rem; }
.ws-prose .avviso-importante { border-left-color: #e08a5a; }
.ws-prose .data-evidenza { color: #fff; font-weight: 700; }

/* --------------------------------------------------------------------------
   Footer, back-to-top, promo banner, reveal
   -------------------------------------------------------------------------- */
.ws-footer { padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(1.75rem, 4vw, 3rem); }
.ws-footer__inner { max-width: 77.5rem; margin: 0 auto; border-top: 1px solid rgba(74, 42, 28, .3); padding-top: 1.5rem; display: grid; gap: .625rem; font-size: .86rem; }
.ws-footer p { margin: 0; }
.ws-footer__nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.ws-footer__nav a { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; text-decoration: none; }
.ws-footer__credit { font-size: .78rem; color: var(--ws-brown); }

.ws-totop {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 800;
	width: 2.875rem;
	height: 2.875rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 189, 120, .3);
	background: rgba(21, 16, 12, .85);
	color: var(--ws-gold);
	display: grid;
	place-items: center;
	cursor: pointer;
	opacity: 0;
	transform: translateY(.5rem);
	transition: opacity .25s, transform .25s;
}
.ws-totop.is-visible { opacity: 1; transform: none; }
.ws-totop[hidden] { display: none; }
body.ws-has-promo .ws-totop { display: none; }

.ws-promo { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 850; box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .15); transition: opacity .3s, transform .3s; }
.ws-promo.is-hiding { opacity: 0; transform: translateY(1.25rem); }
.ws-promo__link { display: block; line-height: 0; }
.ws-promo img { display: block; max-width: 33vw; height: auto; transition: transform .5s; transform-origin: bottom right; }
.ws-promo img:hover { transform: scale(1.06); }
.ws-promo__close { position: absolute; top: -.625rem; right: -.625rem; width: 1.625rem; height: 1.625rem; border-radius: 50%; border: 0; background: #fff; color: #333; font-size: 1.125rem; line-height: 1; cursor: pointer; box-shadow: 0 2px 8px rgba(0, 0, 0, .2); }
@media (max-width: 768px) { .ws-promo { bottom: .5rem; right: .5rem; } .ws-promo img { max-width: 60vw; } }

[data-reveal] { transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1); }
[data-reveal].is-out { opacity: 0; transform: translateY(1rem); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { transition: none; } [data-reveal].is-out { opacity: 1; transform: none; } }

@media print {
	.ws-side, .ws-topbar, .ws-totop, .ws-promo, .ws-filter { display: none !important; }
	.ws-page { margin: 0; }
	body.ws { background: #fff; color: #000; }
	.ws-panel { box-shadow: none; }
}
