/* ================================================
   GEM GENÈVE — LUXURY CORPORATE DESIGN
   Design élégant et professionnel
   ================================================ */

/* GOOGLE FONTS IMPORT - Cormorant Garamond (elegant, light) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

/* CUSTOM FONT - Sang Bleu Empire (if self-hosted) */
@font-face {
	font-family: 'Sang Bleu Empire';
	src: url('webfonts/SangBleuEmpire-Light.woff2') format('woff2'),
		 url('webfonts/SangBleuEmpire-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sang Bleu Empire';
	src: url('webfonts/SangBleuEmpire-LightItalic.woff2') format('woff2'),
		 url('webfonts/SangBleuEmpire-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Sang Bleu Empire';
	src: url('webfonts/SangBleuEmpire-Regular.woff2') format('woff2'),
		 url('webfonts/SangBleuEmpire-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sang Bleu Empire';
	src: url('webfonts/SangBleuEmpire-Italic.woff2') format('woff2'),
		 url('webfonts/SangBleuEmpire-Italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/* CSS VARIABLES */
:root {
	/* Colors - Palette Élégante */
	--primary-dark: #1a1a2e;
	--primary-gold: #c9a961;
	--secondary-gold: #d4af37;
	--accent-gold: #E0C889;
	--accent-gold-hover: #d4b870;
	--accent-gold-dark: #c9a961;
	--light-beige: #f8f6f2;
	--soft-gray: #e8e6e3;
	--medium-gray: #6c6c6c;
	--dark-gray: #3a3a3a;
	--white: #ffffff;
	--black: #000000;

	/* Gradients */
	--gradient-gold: linear-gradient(135deg, #E0C889 0%, #d4b870 100%);
	--gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
	--gradient-glass: rgba(255, 255, 255, 0.9);

	/* Shadows */
	--shadow-gold: 0 8px 30px rgba(224, 200, 137, 0.3);
	--shadow-gold-hover: 0 12px 40px rgba(224, 200, 137, 0.5);

	/* Typography - Elegant & Light */
	--font-heading: 'Sang Bleu Empire', 'Cormorant Garamond', Georgia, serif;
	--font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
	--font-accent: 'Cormorant Garamond', Georgia, serif;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 5rem;

	/* Layout Spacing - Edges */
	--edge-spacing: 16px;
	--section-padding-x: 48px;
	--sidebar-width: 223px;
	--sidebar-margin: calc(var(--sidebar-width) + var(--edge-spacing) * 2);

	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-pill: 60px;

	/* Transitions */
	--transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: 0.2s ease;
}

/* ================================================
   BASE STYLES
   ================================================ */

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background-color: var(--light-beige);
	color: var(--dark-gray);
	line-height: 1.7;
	font-weight: 400;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 300;
	line-height: 1.25;
	margin-top: 0;
	margin-bottom: var(--spacing-sm);
	color: var(--primary-dark);
	letter-spacing: 0.01em;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	letter-spacing: 0.02em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
}

h4 {
	font-size: 1.5rem;
	font-weight: 400;
}

p {
	margin-bottom: var(--spacing-sm);
	line-height: 1.75;
	font-weight: 400;
}

/* Golden Italic Accent - Pour mettre en valeur certains mots */
.gold-accent,
em.gold,
i.gold,
span.gold {
	color: var(--primary-gold);
	font-style: italic;
	font-weight: 400;
}

/* Pour les titres avec accent doré */
h1 .gold-accent,
h2 .gold-accent,
h3 .gold-accent,
h1 em.gold,
h2 em.gold,
h3 em.gold,
.section-title em.gold,
.cta-title em.gold {
	background: linear-gradient(135deg, #E0C889 0%, #d4b870 50%, #c9a961 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: italic;
	font-weight: 300;
}

a,
a:visited {
	color: var(--primary-gold);
	text-decoration: none;
	transition: var(--transition-fast);
	position: relative;
}

a:hover {
	color: var(--secondary-gold);
}

a.wp-block-button__link {
	color: var(--white);
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.9rem;
}

/* ================================================
   SIDEBAR NAVIGATION FIXE — GEM GENÈVE
   ================================================ */

.sidebar-nav {
	position: fixed;
	left: var(--edge-spacing);
	top: var(--edge-spacing);
	width: var(--sidebar-width);
	height: calc(100vh - var(--edge-spacing) * 2);
	background-color: var(--gradient-glass);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	padding: 24px 28px;
	overflow-y: auto;
	border-radius: 19px;
}

/* Logo Image */
.sidebar-logo {
	margin-bottom: 8px;
}

.sidebar-logo a {
	display: block;
}

.sidebar-logo .custom-logo-link {
	display: block;
}

.sidebar-logo .custom-logo,
.sidebar-logo img {
	width: auto;
	height: auto;
	max-width: 150px;
	max-height: 60px;
	object-fit: contain;
}

.gem-logo-icon {
	width: 31px;
	height: 46px;
}

/* Brand Name & Date */
.sidebar-brand {
	margin-bottom: 12px;
}

.sidebar-brand-name {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #000000;
	margin-bottom: 2px;
}

.sidebar-event-date {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--accent-gold);
}

/* Separator */
.sidebar-separator {
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

/* Menu Principal */
.sidebar-main-menu {
	margin-bottom: 20px;
}

.sidebar-menu-primary {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-menu-primary li {
	margin-bottom: 4px;
}

.sidebar-menu-primary li a {
	display: block;
	padding: 6px 0;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: #000000;
	text-decoration: none;
	transition: color 0.25s ease;
}

.sidebar-menu-primary li a:hover,
.sidebar-menu-primary li.current-menu-item a {
	color: var(--accent-gold);
}

/* Support sous-menus dans menu principal */
.sidebar-menu-primary .menu-item-has-children > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Chevron pour menu principal */
.sidebar-menu-primary .menu-item-has-children > a .chevron {
	width: 16px;
	height: 16px;
	color: #000000;
	transition: transform 0.3s ease, color 0.25s ease;
	flex-shrink: 0;
}

.sidebar-menu-primary .menu-item-has-children > a:hover .chevron {
	color: var(--accent-gold);
}

.sidebar-menu-primary .menu-item-has-children.menu-open > a .chevron {
	transform: rotate(90deg);
}

/* Sous-menus du menu principal - FERMÉS PAR DÉFAUT */
.sidebar-menu-primary .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 15px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

/* Sous-menus du menu principal - OUVERTS */
.sidebar-menu-primary .menu-item-has-children.menu-open > .sub-menu {
	max-height: 300px;
	padding: 0 0 10px 15px;
	opacity: 1;
	visibility: visible;
}

.sidebar-menu-primary .sub-menu li a {
	font-size: 13px;
	font-weight: 400;
	color: #666666;
	padding: 6px 0;
}

.sidebar-menu-primary .sub-menu li a:hover {
	color: var(--accent-gold);
}

/* Menu Secondaire */
.sidebar-secondary-menu {
	margin-bottom: auto;
}

.sidebar-menu-secondary {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-menu-secondary > li {
	margin-bottom: 0;
	border-bottom: none;
}

.sidebar-menu-secondary > li > a,
.sidebar-menu-secondary > li > .submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	color: #000000;
	text-decoration: none;
	transition: color 0.25s ease;
	cursor: pointer;
}

.sidebar-menu-secondary > li > a span,
.sidebar-menu-secondary > li > .submenu-toggle span {
	flex: 1;
}

.sidebar-menu-secondary > li > a .chevron,
.sidebar-menu-secondary > li > .submenu-toggle .chevron {
	width: 16px;
	height: 16px;
	color: #000000;
	transition: transform 0.3s ease, color 0.25s ease;
	flex-shrink: 0;
}

.sidebar-menu-secondary > li > a:hover,
.sidebar-menu-secondary > li > .submenu-toggle:hover {
	color: var(--accent-gold);
}

.sidebar-menu-secondary > li > a:hover .chevron,
.sidebar-menu-secondary > li > .submenu-toggle:hover .chevron {
	color: var(--accent-gold);
}

/* Chevron rotation quand ouvert */
.sidebar-menu-secondary > li.menu-open > .submenu-toggle .chevron,
.sidebar-menu-secondary > li.menu-open > a .chevron {
	transform: rotate(90deg);
}

/* Sous-menus - FERMÉS PAR DÉFAUT */
.sidebar-menu-secondary .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 15px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

/* Sous-menus - OUVERTS quand menu-open */
.sidebar-menu-secondary > li.menu-open > .sub-menu {
	max-height: 300px;
	padding: 0 0 10px 15px;
	opacity: 1;
	visibility: visible;
}

.sidebar-menu-secondary .sub-menu li {
	margin-bottom: 0;
}

.sidebar-menu-secondary .sub-menu li a {
	display: block;
	padding: 8px 0;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: #666666;
	text-decoration: none;
	transition: color 0.25s ease;
}

.sidebar-menu-secondary .sub-menu li a:hover {
	color: var(--accent-gold);
}

/* Support pour les menus WordPress avec sous-menus */
.sidebar-menu-secondary > li.menu-item-has-children > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Bouton Ticketing */
.sidebar-ticketing {
	margin-top: 24px;
}

.sidebar-ticketing .wp-block-buttons {
	margin: 0;
}

.sidebar-ticketing .wp-block-button {
	margin: 0;
}

.sidebar-ticketing .wp-block-button__link {
	display: inline-block;
	padding: 12px 24px !important;
	background: linear-gradient(135deg, #E0C889 0%, #d4b870 100%) !important;
	color: #000000 !important;
	font-family: var(--font-body);
	font-size: 13px !important;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: 9px !important;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(224, 200, 137, 0.3);
}

.sidebar-ticketing .wp-block-button__link:hover {
	background: linear-gradient(135deg, #d4b870 0%, #c9a961 100%) !important;
	color: #000000 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(224, 200, 137, 0.4);
}

/* Ancien style gardé pour compatibilité */
.btn-ticketing {
	display: inline-block;
	padding: 12px 24px;
	background-color: var(--accent-gold);
	color: #000000;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: 9px;
	transition: all 0.3s ease;
}

.btn-ticketing:hover {
	background-color: var(--accent-gold-hover);
	color: #000000;
}

/* Contenu principal avec margin-left + edge spacing */
#primary,
.site-main {
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	min-height: 100vh;
}

/* Menu Hamburger Mobile */
.mobile-menu-toggle {
	display: none;
	position: fixed;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 1001;
	width: 48px;
	height: 48px;
	background-color: #FFFFFF;
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #1A1A1A;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Animation du hamburger en X */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* RESPONSIVE — MOBILE */
@media screen and (max-width: 1023px) {
	:root {
		--edge-spacing: 12px;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.sidebar-nav {
		left: var(--edge-spacing);
		top: var(--edge-spacing);
		height: calc(100vh - var(--edge-spacing) * 2);
		transform: translateX(calc(-100% - var(--edge-spacing)));
		transition: transform 0.3s ease;
		z-index: 1002;
	}

	.sidebar-nav.active {
		transform: translateX(0);
	}

	/* Overlay pour fermer le menu */
	body.sidebar-open::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 999;
		animation: fadeIn 0.3s ease;
	}

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

	#primary,
	.site-main {
		margin-left: var(--edge-spacing);
		margin-right: var(--edge-spacing);
	}

	/* Cacher le header widget area en mobile */
	.header-widget-area-top {
		display: none;
	}
}

/* Header Widget Area Top - styles desktop */
.header-widget-area-top {
	position: fixed;
	top: var(--edge-spacing);
	left: var(--sidebar-margin);
	right: var(--edge-spacing);
	z-index: 100;
	background-color: var(--gradient-glass);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 12px 24px;
	border-radius: var(--radius-md);
	border: none;
}

/* ================================================
   HEADER — ELEGANT & PROFESSIONAL (Ancien style gardé pour compatibilité)
   ================================================ */

.site-header {
	display: none; /* Caché car remplacé par la sidebar */
}

.header-widget-area {
	background-color: rgba(26, 26, 46, 0.95);
	border-bottom: 1px solid rgba(201, 169, 97, 0.2);
	padding: 0.5rem 2rem;
}

.header-widget {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	gap: 2rem;
}

.header-widget .widget {
	margin-bottom: 0;
}

.header-widget .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 1rem;
}

.header-widget .menu li a {
	display: inline-block;
	padding: 0.4em 1em;
	color: var(--soft-gray);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: var(--transition-fast);
	border-radius: 4px;
}

.header-widget .menu li a:hover {
	color: var(--primary-gold);
	background-color: rgba(201, 169, 97, 0.1);
}

/* Icons blancs dans le header pour contraste */
.header-widget img,
.header-widget svg,
.header-widget i,
.header-widget-area img,
.header-widget-area svg,
.header-widget-area i {
	filter: brightness(0) invert(1);
}

.header-widget .menu li a:hover img,
.header-widget .menu li a:hover svg,
.header-widget .menu li a:hover i {
	filter: brightness(1) invert(0);
	opacity: 1;
}

.site-header .nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

/* LOGO */
.site-branding {
	z-index: 10;
	transition: var(--transition-smooth);
}

h1.site-title a,
p.site-title a {
	display: block;
	width: 220px;
	height: 90px;
	background: url(images/gem-geneve_logo_noir.svg) no-repeat center center;
	background-size: contain;
	text-indent: -5000px;
	filter: brightness(0) invert(1);
	transition: var(--transition-smooth);
	opacity: 0.95;
}

h1.site-title a:hover,
p.site-title a:hover {
	opacity: 1;
	transform: scale(1.02);
}

h1.site-title,
p.site-title {
	margin: 0;
	padding: 0;
	line-height: 1;
}

.site-description {
	display: none;
}

/* ================================================
   NAVIGATION — ELEGANT HOVER EFFECTS
   ================================================ */

.main-navigation {
	width: auto;
}

.main-navigation ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 0.5rem;
}

.main-navigation li {
	position: relative;
	margin: 0;
}

.main-navigation li a {
	display: block;
	padding: 1em 1.5em;
	color: var(--soft-gray);
	font-size: 0.95rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	position: relative;
	transition: var(--transition-smooth);
	border-radius: 4px;
}

.main-navigation li a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
	transition: width var(--transition-smooth);
}

.main-navigation li a:hover,
.main-navigation li.current-menu-item > a,
.main-navigation li.current-menu-ancestor > a {
	color: var(--primary-gold);
	background-color: rgba(201, 169, 97, 0.08);
}

.main-navigation li a:hover::after,
.main-navigation li.current-menu-item > a::after,
.main-navigation li.current-menu-ancestor > a::after {
	width: 80%;
}

/* Sous-menus */
.main-navigation ul ul {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(45, 45, 68, 0.98) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(201, 169, 97, 0.3);
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	min-width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility 0s linear var(--transition-smooth);
	z-index: 1000;
	padding: 0.5rem 0;
}

.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
	display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility 0s linear 0s;
}

.main-navigation ul ul li {
	display: block;
	border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.main-navigation ul ul li:last-child {
	border-bottom: none;
}

.main-navigation ul ul li a {
	padding: 0.75em 1.5em;
	font-size: 0.9rem;
	text-transform: none;
	white-space: nowrap;
	font-weight: 400;
	border-radius: 0;
}

.main-navigation ul ul li a::after {
	display: none;
}

.main-navigation ul ul li a:hover {
	background-color: rgba(201, 169, 97, 0.15);
	color: var(--primary-gold);
	padding-left: 2em;
}

.home .entry-title {
	display: none;
}

/* ================================================
   WORDPRESS BLOCKS
   ================================================ */

ul.wp-block-post-template {
	margin: 0;
	padding: 0;
}

.wp-block-button {
	margin: var(--spacing-md) 0;
}

.wp-block-button .wp-block-button__link {
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	border: none;
	padding: 1em 2.5em;
	font-weight: 600;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.wp-block-button .wp-block-button__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.wp-block-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.wp-block-button .wp-block-button__link:hover::before {
	left: 100%;
}

/* ================================================
   CARDS & ARCHIVE — STYLE CARTES ARTICLES
   ================================================ */

.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--spacing-lg);
	margin: var(--spacing-lg) 0;
}

/* ================================================
   ARTICLE CARDS — STYLE IMAGE + OVERLAY
   ================================================ */

.article-card,
.archive-grid article,
.wp-block-post {
	position: relative;
	border-radius: 11px;
	overflow: hidden;
	background-color: #1a1a2e;
	aspect-ratio: 4 / 3;
	transition: var(--transition-smooth);
}

.article-card:hover,
.archive-grid article:hover,
.wp-block-post:hover {
	transform: translateY(-4px);
}

/* Image de fond */
.article-card .article-image,
.archive-grid article .post-thumbnail,
.archive-grid article img,
.wp-block-post-featured-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: var(--transition-smooth);
}

.article-card:hover .article-image,
.archive-grid article:hover img,
.wp-block-post:hover .wp-block-post-featured-image img {
	transform: scale(1.05);
}

/* Overlay gradient sombre (de droite vers gauche) */
.article-card::after,
.archive-grid article::after,
.wp-block-post::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 2;
	pointer-events: none;
}

/* Contenu de la carte */
.article-card .article-content,
.archive-grid article .entry-header,
.archive-grid article .entry-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* Catégorie / Tag */
.article-card .article-category,
.archive-grid article .cat-links,
.archive-grid article .entry-meta .cat-links a,
.wp-block-post-terms {
	display: inline-block;
	background-color: var(--accent-gold);
	color: #000000;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 12px;
	width: fit-content;
	text-decoration: none;
}

.archive-grid article .cat-links a:hover {
	background-color: var(--accent-gold-hover);
	color: #000000;
}

/* Titre de l'article */
.article-card .article-title,
.archive-grid article .entry-title,
.wp-block-post-title {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 400;
	color: #FFFFFF;
	margin: 0 0 8px 0;
	line-height: 1.25;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.archive-grid article .entry-title a,
.wp-block-post-title a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.25s ease;
}

.archive-grid article:hover .entry-title a,
.wp-block-post:hover .wp-block-post-title a {
	color: var(--accent-gold);
}

/* Date de l'article */
.article-card .article-date,
.archive-grid article .posted-on,
.archive-grid article .entry-meta,
.wp-block-post-date {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.archive-grid article .entry-meta a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.archive-grid article .entry-meta a:hover {
	color: var(--accent-gold);
}

/* Masquer les éléments non nécessaires */
.archive-grid article .entry-content p,
.archive-grid article .more-link,
.archive-grid article .byline {
	display: none;
}

/* Pour les blocs WordPress Query Loop */
.wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--spacing-lg);
}

.wp-block-post-template .wp-block-post {
	position: relative;
	border-radius: 11px;
	overflow: hidden;
	min-height: 280px;
}

.wp-block-post-template .wp-block-post-featured-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.wp-block-post-template .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-block-post-template .wp-block-post-title,
.wp-block-post-template .wp-block-post-date,
.wp-block-post-template .wp-block-post-terms {
	position: relative;
	z-index: 3;
}

/* ================================================
   ARCHIVE EXHIBITORS — NOUVEAU DESIGN
   ================================================ */

/* Archive & Single CPT Page Layouts - Consolidated */
.post-type-archive-exhibitor .site-main,
.post-type-archive-program .site-main,
.taxonomy-exhibitors-category .site-main,
.single-exhibitor .site-main {
	margin-top: var(--edge-spacing);
	margin-bottom: var(--edge-spacing);
	padding: 60px var(--section-padding-x);
	background-color: var(--white);
	border-radius: var(--radius-xl);
}

.archive-grid-exhibitors {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.alphabetical-group {
	margin-bottom: var(--spacing-lg);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.alphabetical-group-letter {
	grid-column: 1 / -1;
	font-size: clamp(3rem, 8vw, 5rem);
	font-family: var(--font-heading);
	font-weight: 300;
	font-style: italic;
	color: var(--accent-gold);
	line-height: 1;
	margin: 0 0 var(--spacing-md) 0;
	padding-bottom: var(--spacing-sm);
	border-bottom: 1px solid rgba(224, 200, 137, 0.2);
	display: block;
}

/* Carte Exhibitor */
.exhibitor-card {
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--transition-smooth);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.exhibitor-card:hover {
	transform: translateY(-4px);
	border-color: rgba(224, 200, 137, 0.3);
}

.exhibitor-card-link {
	display: flex;
	align-items: stretch;
	text-decoration: none;
	color: inherit;
	min-height: 140px;
}

/* Image de la carte */
.exhibitor-card-image {
	flex-shrink: 0;
	width: 180px;
	min-height: 140px;
	overflow: hidden;
	position: relative;
	background-color: #f5f5f5;
}

.exhibitor-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.exhibitor-card:hover .exhibitor-card-image img {
	transform: scale(1.08);
}

/* No-image placeholders - shared styles */
.exhibitor-card-no-image,
.featured-card-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--light-beige) 0%, var(--soft-gray) 100%);
	color: #c9c9c9;
}

/* Contenu de la carte */
.exhibitor-card-content {
	flex: 1;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

/* Catégorie */
.exhibitor-card-category {
	display: inline-block;
	background-color: var(--accent-gold);
	color: #000000;
	font-family: var(--font-body);
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 4px 10px;
	border-radius: 4px;
	width: fit-content;
}

/* Card titles - shared base styles */
.exhibitor-card-title,
.search-result-title,
.archive-card-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--primary-dark);
	transition: color 0.3s ease;
}

.exhibitor-card-title { margin: 0; line-height: 1.25; }
.search-result-title { margin: 0 0 12px 0; }
.archive-card-title { margin: 0 0 12px 0; line-height: 1.3; }

/* Card title hover effects */
.exhibitor-card:hover .exhibitor-card-title,
.search-result-card:hover .search-result-title,
.archive-card:hover .archive-card-title {
	color: var(--accent-gold);
}

/* Pays */
.exhibitor-card-country {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	font-size: 13px;
	color: #666666;
}

.exhibitor-card-country svg {
	color: var(--accent-gold);
	flex-shrink: 0;
}

/* Place / Stand */
.exhibitor-card-place {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	font-size: 12px;
	color: #888888;
}

.exhibitor-card-place svg {
	color: #999999;
	flex-shrink: 0;
}

/* Flèche */
.exhibitor-card-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	color: #cccccc;
	transition: all 0.3s ease;
}

.exhibitor-card:hover .exhibitor-card-arrow {
	color: var(--accent-gold);
	transform: translateX(4px);
}

/* Responsive Exhibitor Cards */
@media screen and (max-width: 768px) {
	.alphabetical-group {
		grid-template-columns: 1fr;
	}

	.exhibitor-card-link {
		flex-direction: column;
	}

	.exhibitor-card-image {
		width: 100%;
		height: 180px;
	}

	.exhibitor-card-content {
		padding: 16px 20px;
	}

	.exhibitor-card-arrow {
		display: none;
	}

	.alphabetical-group-letter {
		font-size: 2.5rem;
	}
}

/* Page header pour taxonomy */
.taxonomy-exhibitors-category .page-header {
	margin-bottom: var(--spacing-lg);
	padding-bottom: var(--spacing-md);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.taxonomy-exhibitors-category .page-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--primary-dark);
	margin: 0 0 8px 0;
}

.taxonomy-exhibitors-category .archive-description {
	font-family: var(--font-body);
	font-size: 1rem;
	color: #666666;
	max-width: 600px;
}

/* Ancien style pour compatibilité */
.post-type-archive-exhibitor .archive-grid article {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.post-type-archive-exhibitor .archive-grid article img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.post-type-archive-exhibitor .archive-grid article:hover img {
	transform: scale(1.08);
}

.post-type-archive-exhibitor .archive-grid article .entry-header {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: var(--spacing-md);
	background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
	z-index: 3;
}

.post-type-archive-exhibitor .archive-grid article .entry-title {
	color: var(--white);
	margin: 0;
	font-size: 1.3rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.post-type-archive-exhibitor .archive-grid article:hover .entry-title {
	color: var(--primary-gold);
}

/* ================================================
   SINGLE EXHIBITOR
   ================================================ */

.exhibitor-info-box {
	background-color: var(--white);
	padding: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
	border-radius: 12px;
	border-left: 4px solid var(--primary-gold);
}

.exhibitor-info-box h4 {
	margin-top: 0;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--primary-dark);
	font-size: 1.3rem;
	margin-bottom: var(--spacing-sm);
}

.exhibitor-info-line {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.exhibitor-info-line .exhibitor-info-line-legend {
	font-weight: 600;
	color: var(--primary-gold);
	margin-right: 0.5rem;
}

.single-exhibitor-layout-col-media img {
	width: 100%;
	border-radius: 8px;
	transition: var(--transition-smooth);
}

.single-exhibitor-layout-col-media img:hover {
	transform: scale(1.02);
}

@media only screen and (min-width: 960px) {
	.single-exhibitor-layout {
		display: flex;
		justify-content: space-between;
		gap: var(--spacing-lg);
	}

	.single-exhibitor-layout-col {
		width: 48%;
	}
}

/* ================================================
   FOOTER — STYLE GLASSMORPHISM (comme sidebar)
   ================================================ */

.site-footer {
	background-color: var(--gradient-glass);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--black);
	padding: 0;
	border-top: none;
	position: relative;
	margin-top: var(--spacing-xl);
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	margin-bottom: var(--edge-spacing);
	border-radius: var(--radius-xl);
}

.footer-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--spacing-lg);
	padding: 40px var(--section-padding-x);
	flex-wrap: wrap;
}

/* Logo et Brand */
.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 150px;
}

.footer-logo {
	margin-bottom: 12px;
}

.footer-logo a {
	display: block;
}

.footer-logo .custom-logo-link {
	display: block;
}

.footer-logo .custom-logo,
.footer-logo img,
.footer-logo-img {
	width: auto;
	height: auto;
	max-width: 50px;
	max-height: 50px;
	object-fit: contain;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
}

.footer-brand-name {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #000000;
	margin-bottom: 2px;
}

.footer-event-date {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--accent-gold);
}

/* Colonnes de liens */
.footer-links {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
}

.footer-column {
	min-width: 120px;
}

.footer-column-title {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: #000000;
	margin: 0 0 16px 0;
	text-transform: none;
	letter-spacing: 0;
}

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

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu li a {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: #666666;
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-menu li a:hover {
	color: var(--accent-gold);
}

/* Réseaux sociaux */
.footer-social {
	display: flex;
	gap: 16px;
	align-items: center;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #000000;
	transition: color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
	color: var(--accent-gold);
	transform: translateY(-2px);
}

.social-link svg {
	width: 20px;
	height: 20px;
}

/* Site info / Copyright */
.site-info {
	font-size: 12px;
	font-weight: 400;
	color: #666666;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding: 20px var(--section-padding-x);
	margin: 0;
	text-align: center;
	background: transparent;
}

.site-info p {
	margin: 0;
	color: #666666;
}

.site-info a {
	color: #000000;
	font-weight: 500;
	text-decoration: none;
}

.site-info a:hover {
	color: var(--accent-gold);
}

/* RESPONSIVE FOOTER */
@media screen and (max-width: 1023px) {
	.site-footer {
		margin-left: var(--edge-spacing);
		margin-right: var(--edge-spacing);
		margin-bottom: var(--edge-spacing);
		border-radius: 20px;
	}
}

@media screen and (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 32px 24px;
		gap: var(--spacing-md);
	}

	.footer-brand {
		align-items: center;
	}

	.footer-links {
		justify-content: center;
		gap: 32px;
	}

	.footer-column {
		min-width: 100px;
	}

	.footer-social {
		justify-content: center;
	}

	.site-info {
		padding: 16px 24px;
	}
}

/* ================================================
   MOBILE MENU
   ================================================ */

.menu-toggle {
	display: none; /* Caché par défaut sur desktop */
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	color: var(--white);
	border: none;
	padding: 0.75em 1.5em;
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: var(--transition-smooth);
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
	font-size: 0.9rem;
	position: relative;
	z-index: 1001;
}

.menu-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.menu-toggle[aria-expanded="true"] {
	background: var(--primary-dark);
}

/* Mobile Navigation */
@media screen and (max-width: 1250px) {
	.menu-toggle {
		display: block;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(45, 45, 68, 0.98) 100%);
		backdrop-filter: blur(20px);
		z-index: 1000;
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--transition-smooth), visibility 0s linear var(--transition-smooth);
		display: flex;
		align-items: center;
		justify-content: center;
		pointer-events: none;
	}

	.main-navigation.toggled {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: opacity var(--transition-smooth), visibility 0s linear 0s;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: center;
		gap: 0;
		width: 100%;
		max-width: 500px;
	}

	.main-navigation li {
		width: 100%;
		text-align: center;
		opacity: 0;
		transform: translateY(20px);
	}

	.main-navigation.toggled li {
		opacity: 1;
		transform: translateY(0);
		transition: opacity 0.4s ease, transform 0.4s ease;
	}

	.main-navigation.toggled li:nth-child(1) { transition-delay: 0.1s; }
	.main-navigation.toggled li:nth-child(2) { transition-delay: 0.15s; }
	.main-navigation.toggled li:nth-child(3) { transition-delay: 0.2s; }
	.main-navigation.toggled li:nth-child(4) { transition-delay: 0.25s; }
	.main-navigation.toggled li:nth-child(5) { transition-delay: 0.3s; }

	.main-navigation li a {
		font-size: 1.5rem;
		padding: 1.5rem 2rem;
		width: 100%;
		border-radius: 0;
		color: var(--soft-gray);
		border-bottom: 1px solid rgba(201, 169, 97, 0.15);
	}

	.main-navigation li a::after {
		display: none;
	}

	.main-navigation li:first-child a {
		border-top: 1px solid rgba(201, 169, 97, 0.15);
	}

	.main-navigation ul ul {
		position: relative;
		box-shadow: none;
		border: none;
		background-color: rgba(45, 45, 68, 0.5);
		margin-top: 0;
		transform: none;
		opacity: 1;
		visibility: visible;
		display: block;
		border-radius: 0;
	}

	.main-navigation ul ul li a {
		font-size: 1.2rem;
		padding: 1rem 2rem;
	}

	.site-header .nav-container {
		flex-wrap: wrap;
		gap: 1rem;
	}
}

@media screen and (min-width: 1251px) {
	.menu-toggle {
		display: none;
	}
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.archive-grid article {
	animation: fadeInUp 0.6s ease backwards;
}

.archive-grid article:nth-child(1) { animation-delay: 0.1s; }
.archive-grid article:nth-child(2) { animation-delay: 0.15s; }
.archive-grid article:nth-child(3) { animation-delay: 0.2s; }
.archive-grid article:nth-child(4) { animation-delay: 0.25s; }
.archive-grid article:nth-child(5) { animation-delay: 0.3s; }
.archive-grid article:nth-child(6) { animation-delay: 0.35s; }

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media screen and (max-width: 1200px) {
	:root {
		--spacing-xl: 4rem;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--spacing-xl: 3rem;
		--spacing-lg: 2rem;
		--spacing-md: 1.5rem;
	}

	.site-header {
		position: relative;
	}

	.site-header .nav-container {
		padding: 1rem;
	}

	h1.site-title a,
	p.site-title a {
		width: 180px;
		height: 75px;
	}

	.site-main {
		padding: 0 var(--spacing-sm) var(--spacing-sm);
	}

	.archive-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}

	.archive-grid-exhibitors {
		grid-template-columns: 1fr;
	}

	.site-footer {
		padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-sm);
	}

	.site-footer .menu {
		flex-direction: column;
		gap: var(--spacing-sm);
		align-items: center;
	}

	.header-widget-area {
		padding: 0.5rem 1rem;
	}

	.header-widget {
		justify-content: center;
		flex-wrap: wrap;
		gap: 1rem;
	}
}

/* ================================================
   UTILITY STYLES
   ================================================ */

::selection {
	background-color: var(--primary-gold);
	color: var(--white);
}

::-moz-selection {
	background-color: var(--primary-gold);
	color: var(--white);
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--light-beige);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-gold);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-gold);
}

*:focus-visible {
	outline: 2px solid var(--primary-gold);
	outline-offset: 3px;
}

img {
	max-width: 100%;
	height: auto;
}

/* ================================================
   FORMS
   ================================================ */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
textarea,
select {
	border: 2px solid var(--soft-gray);
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	background-color: var(--white);
	color: var(--dark-gray);
	width: 100%;
	border-radius: 8px;
	transition: var(--transition-smooth);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--primary-gold);
	box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
	outline: none;
}

input[type="submit"],
button[type="submit"] {
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	color: var(--white);
	border: none;
	padding: 1em 2.5em;
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
	transition: var(--transition-smooth);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

/* ================================================
   ACCESSIBILITY
   ================================================ */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

@media (prefers-contrast: high) {
	:root {
		--primary-gold: #d4af37;
		--soft-gray: #f0f0f0;
	}
}

/* ================================================
   WORDPRESS ADMIN BAR FIX
   ================================================ */

@media screen and (min-width: 600px) {
	body.admin-bar .site-header {
		top: 32px;
	}
}

@media screen and (max-width: 600px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

/* ================================================
   SINGLE ARTICLE — PREMIUM DESIGN
   ================================================ */

/* Main container pour single post */
.single-post-main {
	padding: 0 !important;
}

.single-post-main .single-article {
	margin: 0;
}

/* Article Container */
.single-article {
	background-color: transparent;
}

/* Hero Section */
.single-article-hero {
	position: relative;
	width: 100%;
	min-height: 70vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	margin-bottom: 0;
}

.single-article-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.single-article-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-article-hero-no-image {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.single-article-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.4) 50%,
		rgba(0, 0, 0, 0.1) 100%
	);
	z-index: 2;
}

.single-article-hero-content {
	position: relative;
	z-index: 3;
	padding: 60px var(--section-padding-x);
	max-width: 900px;
}

/* Catégories */
.single-article-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.single-article-category {
	display: inline-block;
	background-color: var(--accent-gold);
	color: #000000;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 6px 14px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.single-article-category:hover {
	background-color: var(--accent-gold-hover);
	transform: translateY(-2px);
}

/* Titre */
.single-article-title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	color: #FFFFFF;
	line-height: 1.1;
	margin: 0 0 24px 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Meta info */
.single-article-meta {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.single-article-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.single-article-author img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.single-article-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.single-article-author-name {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
}

.single-article-date {
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.single-article-reading-time {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.single-article-reading-time svg {
	color: var(--accent-gold);
}

/* Container principal */
.single-article-container {
	display: flex;
	gap: 48px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px var(--section-padding-x);
	position: relative;
}

/* Barre de partage flottante */
.single-article-share {
	position: sticky;
	top: 120px;
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 20px 12px;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.single-article-share-label {
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #888888;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.single-article-share-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.share-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f5f5f5;
	color: #333333;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.share-button:hover {
	background-color: var(--accent-gold);
	color: #000000;
	transform: scale(1.1);
}

.share-button.share-copy.copied {
	background-color: #4CAF50;
	color: #FFFFFF;
}

/* Contenu de l'article */
.single-article-content {
	flex: 1;
	max-width: 760px;
}

.single-article-content .entry-content {
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.8;
	color: #333333;
}

.single-article-content .entry-content p {
	margin-bottom: 1.75em;
}

.single-article-content .entry-content h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary-dark);
	margin: 2.5em 0 1em;
	line-height: 1.3;
}

.single-article-content .entry-content h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-dark);
	margin: 2em 0 0.75em;
	line-height: 1.4;
}

.single-article-content .entry-content h4 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary-dark);
	margin: 1.75em 0 0.5em;
}

.single-article-content .entry-content a {
	color: var(--accent-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.25s ease;
}

.single-article-content .entry-content a:hover {
	color: #d4b870;
}

.single-article-content .entry-content blockquote {
	margin: 2.5em 0;
	padding: 24px 32px;
	background-color: rgba(224, 200, 137, 0.1);
	border-left: 4px solid #E0C889;
	border-radius: 0 12px 12px 0;
	font-style: italic;
	font-size: 1.2rem;
	color: #555555;
}

.single-article-content .entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.single-article-content .entry-content img {
	border-radius: 12px;
	margin: 2em 0;
}

.single-article-content .entry-content figure {
	margin: 2.5em 0;
}

.single-article-content .entry-content figcaption {
	font-size: 0.9rem;
	color: #888888;
	text-align: center;
	margin-top: 12px;
}

.single-article-content .entry-content ul,
.single-article-content .entry-content ol {
	margin: 1.5em 0;
	padding-left: 1.5em;
}

.single-article-content .entry-content li {
	margin-bottom: 0.75em;
}

.single-article-content .entry-content pre,
.single-article-content .entry-content code {
	font-family: 'Monaco', 'Consolas', monospace;
	background-color: #1a1a2e;
	color: var(--accent-gold);
	border-radius: 8px;
}

.single-article-content .entry-content code {
	padding: 2px 8px;
	font-size: 0.9em;
}

.single-article-content .entry-content pre {
	padding: 24px;
	overflow-x: auto;
	margin: 2em 0;
}

.single-article-content .entry-content pre code {
	padding: 0;
	background: none;
}

/* Tags */
.single-article-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.single-article-tags-label {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: #666666;
}

.single-article-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.single-article-tag {
	display: inline-block;
	padding: 6px 14px;
	background-color: #f5f5f5;
	color: #555555;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 20px;
	transition: all 0.25s ease;
}

.single-article-tag:hover {
	background-color: var(--accent-gold);
	color: #000000;
}

/* Footer de l'article */
.single-article-footer {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Box auteur */
.single-article-author-box {
	display: flex;
	gap: 24px;
	padding: 32px;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.single-article-author-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #E0C889;
}

.single-article-author-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.single-article-author-label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #888888;
}

.single-article-author-name-large {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary-dark);
	margin: 0;
}

.single-article-author-bio {
	font-family: var(--font-body);
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	margin: 4px 0 0 0;
}

/* Post Navigation */
.post-navigation {
	max-width: 1200px;
	margin: 0 auto 60px;
	padding: 0 var(--section-padding-x);
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	flex: 1;
	max-width: 45%;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
	transform: translateY(-4px);
	border-color: rgba(224, 200, 137, 0.3);
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation .nav-subtitle {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent-gold);
}

.post-navigation .nav-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-dark);
	line-height: 1.4;
}

/* RESPONSIVE SINGLE ARTICLE */
@media screen and (max-width: 1023px) {
	.single-article-hero-content {
		padding: 40px 32px;
	}

	.single-article-container {
		padding: 40px 32px;
		gap: 32px;
	}

	.single-article-share {
		position: fixed;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
		padding: 12px 20px;
		z-index: 100;
		width: auto;
	}

	.single-article-share-label {
		writing-mode: horizontal-tb;
		display: none;
	}

	.single-article-share-buttons {
		flex-direction: row;
	}

	.post-navigation {
		padding: 0 32px;
	}
}

@media screen and (max-width: 768px) {
	.single-article-hero {
		min-height: 60vh;
	}

	.single-article-hero-content {
		padding: 32px 20px;
	}

	.single-article-title {
		font-size: 2rem;
	}

	.single-article-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.single-article-container {
		padding: 32px 20px;
		flex-direction: column;
	}

	.single-article-content .entry-content {
		font-size: 1rem;
	}

	.single-article-content .entry-content h2 {
		font-size: 1.5rem;
	}

	.single-article-content .entry-content h3 {
		font-size: 1.25rem;
	}

	.single-article-content .entry-content blockquote {
		padding: 20px 24px;
		font-size: 1.05rem;
	}

	.single-article-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 24px;
	}

	.post-navigation {
		padding: 0 20px;
	}

	.post-navigation .nav-links {
		flex-direction: column;
	}

	.post-navigation .nav-previous,
	.post-navigation .nav-next {
		max-width: 100%;
	}

	.post-navigation .nav-next {
		text-align: left;
	}
}

/* ================================================
   HOMEPAGE — VIDEO HERO & SECTIONS
   ================================================ */

/* Front Page Main - Remove sidebar margin */
.front-page-main {
	margin-left: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
}

/* Hero Video Section */
.hero-video-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/* Placeholder gradient si pas de video */
	background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
}

/* Placeholder decorative gem icon for hero */
.hero-video-wrapper::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23E0C889' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='6 3 18 3 22 9 12 22 2 9'%3E%3C/polygon%3E%3Cline x1='12' y1='22' x2='12' y2='9'%3E%3C/line%3E%3Cline x1='2' y1='9' x2='22' y2='9'%3E%3C/line%3E%3Cline x1='6' y1='3' x2='12' y2='9'%3E%3C/line%3E%3Cline x1='18' y1='3' x2='12' y2='9'%3E%3C/line%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.08;
	z-index: 0;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	50% { transform: translate(-50%, -50%) scale(1.05); }
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.85) 0%,
		rgba(26, 26, 46, 0.6) 40%,
		rgba(26, 26, 46, 0.4) 100%
	);
	z-index: 2;
}

/* Hero Content */
.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 24px;
	padding-left: calc((223px + var(--edge-spacing) * 2) / 2 + 24px);
	max-width: 900px;
	animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-logo {
	margin-bottom: 32px;
}

.hero-logo img,
.hero-logo .custom-logo {
	width: auto;
	height: 80px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(4rem, 12vw, 10rem);
	font-weight: 300;
	line-height: 0.9;
	margin: 0 0 16px 0;
	letter-spacing: 0.02em;
}

.hero-title-gem {
	display: block;
	color: #FFFFFF;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title-geneve {
	display: block;
	background: linear-gradient(135deg, #E0C889 0%, #d4b870 50%, #c9a961 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: italic;
	font-weight: 300;
}

.hero-subtitle {
	font-family: var(--font-body);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 40px 0;
}

.hero-date {
	display: inline-flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 24px;
	padding: 16px 32px;
}

.hero-date-number {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--accent-gold);
}

.hero-date-month {
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.hero-date-year {
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
}

.hero-location {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 48px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
}

.hero-location-icon {
	color: var(--accent-gold);
}

/* Hero CTA Buttons */
.hero-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* Primary & Secondary buttons - shared with CTA section */
.hero-btn-primary,
.cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: var(--gradient-gold);
	color: var(--black) !important;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	border-radius: var(--radius-pill);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-gold);
}

.hero-btn-primary:hover,
.cta-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-gold-hover);
	color: var(--black) !important;
}

.hero-btn-primary svg,
.cta-btn-primary svg {
	transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg,
.cta-btn-primary:hover svg {
	transform: translateX(4px);
}

.hero-btn-primary.hero-btn-disabled {
	cursor: default;
	opacity: 0.7;
	pointer-events: none;
}

.hero-btn-secondary,
.cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 18px 36px;
	background: transparent;
	color: var(--white) !important;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.hero-btn-secondary:hover,
.cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--white) !important;
}

/* Video Control Button */
.hero-video-control {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-video-control:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
}

/* Highlights Section */
.highlights-section {
	background: var(--gradient-dark);
	padding: 80px var(--section-padding-x);
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	margin-top: var(--edge-spacing);
	border-radius: var(--radius-xl);
}

.highlights-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.highlight-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 140px;
}

.highlight-number {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	color: var(--accent-gold);
	line-height: 1;
	margin-bottom: 8px;
}

.highlight-label {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

/* Section Common Styles */
.section-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--accent-gold);
	margin-bottom: 16px;
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 0 0 24px 0;
	line-height: 1.15;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	color: #E0C889 !important;
	text-decoration: none;
	transition: all 0.3s ease;
}

.section-link:hover {
	color: #d4b870 !important;
}

.section-link svg {
	transition: transform 0.3s ease;
}

.section-link:hover svg {
	transform: translateX(6px);
}

/* About Section */
.about-section {
	padding: 100px var(--section-padding-x);
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	margin-top: var(--edge-spacing);
}

.about-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.about-content {
	max-width: 520px;
}

.about-text {
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--medium-gray);
	margin-bottom: 32px;
}

.about-image {
	position: relative;
}

.about-image-wrapper {
	position: relative;
	/* Placeholder si pas d'image */
	background: linear-gradient(135deg, #e8e6e3 0%, #d4d2cf 100%);
	border-radius: 16px;
	min-height: 500px;
}

.about-image-wrapper img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 16px;
	position: relative;
	z-index: 2;
}

/* Placeholder icon si image manquante */
.about-image-wrapper::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='1'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpolyline points='21 15 16 10 5 21'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.5;
	z-index: 1;
}


/* Categories Section */
.categories-section {
	padding: 100px var(--section-padding-x);
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	background-color: var(--light-beige);
	border-radius: var(--radius-xl);
	margin-top: var(--edge-spacing);
}

.categories-header {
	text-align: center;
	margin-bottom: 60px;
}

.categories-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.category-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 300px;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.category-card-large {
	grid-row: span 2;
	min-height: 624px;
}

.category-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
	/* Placeholder gradient si pas d'image */
	background-color: #2d2d44;
}

/* Placeholders spécifiques pour chaque catégorie */
.category-card:nth-child(1) .category-card-bg {
	background-image: linear-gradient(135deg, #1a1a2e 0%, #3d3d5c 50%, #1a1a2e 100%);
}

.category-card:nth-child(2) .category-card-bg {
	background-image: linear-gradient(135deg, #2d2d44 0%, #4a4a6a 50%, #2d2d44 100%);
}

.category-card:nth-child(3) .category-card-bg {
	background-image: linear-gradient(135deg, #1f1f35 0%, #3a3a55 50%, #1f1f35 100%);
}

/* Placeholder gem icon pour category cards */
.category-card-bg::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23E0C889' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='6 3 18 3 22 9 12 22 2 9'%3E%3C/polygon%3E%3Cline x1='12' y1='22' x2='12' y2='9'%3E%3C/line%3E%3Cline x1='2' y1='9' x2='22' y2='9'%3E%3C/line%3E%3Cline x1='6' y1='3' x2='12' y2='9'%3E%3C/line%3E%3Cline x1='18' y1='3' x2='12' y2='9'%3E%3C/line%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.15;
	z-index: 1;
	transition: opacity 0.4s ease;
}

.category-card:hover .category-card-bg::before {
	opacity: 0.25;
}

.category-card:hover .category-card-bg {
	transform: scale(1.08);
}

.category-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(26, 26, 46, 0.9) 0%,
		rgba(26, 26, 46, 0.4) 50%,
		rgba(26, 26, 46, 0.2) 100%
	);
	transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
	background: linear-gradient(
		to top,
		rgba(26, 26, 46, 0.95) 0%,
		rgba(26, 26, 46, 0.5) 50%,
		rgba(26, 26, 46, 0.3) 100%
	);
}

.category-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
	z-index: 3;
}

/* category-card-tag base styles merged with search-result-type */
.category-card-tag {
	margin-bottom: 12px;
}

.category-card-title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 300;
	color: #FFFFFF;
	margin: 0 0 12px 0;
	line-height: 1.15;
}

.category-card-desc {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 20px 0;
	line-height: 1.6;
}

.category-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

.category-card:hover .category-card-link {
	color: #FFFFFF;
}

.category-card-link svg {
	transition: transform 0.3s ease;
}

.category-card:hover .category-card-link svg {
	transform: translateX(4px);
}

/* Featured Section */
.featured-section {
	padding: 100px var(--section-padding-x);
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	background-color: var(--white);
	border-radius: var(--radius-xl);
	margin-top: var(--edge-spacing);
}

.featured-container {
	max-width: 1200px;
	margin: 0 auto;
}

.featured-header {
	text-align: center;
	margin-bottom: 60px;
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.featured-card {
	background: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.featured-card:hover {
	transform: translateY(-8px);
}

.featured-card-image {
	position: relative;
	height: 200px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.featured-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image img {
	transform: scale(1.08);
}


.featured-card-content {
	padding: 20px;
}

.featured-card-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--primary-dark);
	margin: 0 0 8px 0;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.featured-card:hover .featured-card-title {
	color: var(--accent-gold);
}

.featured-card-category {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	color: var(--medium-gray);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.featured-cta {
	text-align: center;
}

/* CTA Section */
.cta-section {
	padding: 120px var(--section-padding-x);
	margin-left: var(--sidebar-margin);
	margin-right: var(--edge-spacing);
	margin-top: var(--edge-spacing);
	margin-bottom: var(--edge-spacing);
	background: var(--gradient-dark);
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl);
}

.cta-section::before {
	content: 'GEM';
	position: absolute;
	top: 50%;
	right: -5%;
	transform: translateY(-50%);
	font-family: var(--font-heading);
	font-size: 30vw;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.02);
	pointer-events: none;
	line-height: 1;
}

.cta-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--section-padding-x);
	position: relative;
	z-index: 2;
}

.cta-content {
	max-width: 600px;
}

.cta-title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	color: #FFFFFF;
	margin: 0 0 20px 0;
	line-height: 1.1;
}

.cta-text {
	font-family: var(--font-body);
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 0 0 40px 0;
}

.cta-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}


.cta-date-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 60px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-date-day {
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 300;
	color: var(--accent-gold);
	line-height: 1;
}

.cta-date-month {
	font-family: var(--font-body);
	font-size: 1.5rem;
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 8px 0;
}

.cta-date-year {
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
}

/* ================================================
   HOMEPAGE RESPONSIVE
   ================================================ */

@media screen and (max-width: 1200px) {
	.featured-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 1023px) {
	:root {
		--section-padding-x: 32px;
	}

	.hero-content {
		padding-left: 24px;
	}

	.highlights-section,
	.about-section,
	.categories-section,
	.featured-section,
	.cta-section {
		margin-left: var(--edge-spacing);
		margin-right: var(--edge-spacing);
		border-radius: 20px;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.about-content {
		max-width: 100%;
		text-align: center;
	}

	.about-image-wrapper img {
		height: 400px;
	}

	.categories-grid {
		grid-template-columns: 1fr;
	}

	.category-card-large {
		grid-row: span 1;
		min-height: 350px;
	}

	.category-card {
		min-height: 280px;
	}

	.cta-container {
		flex-direction: column;
		text-align: center;
	}

	.cta-buttons {
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--section-padding-x: 20px;
	}

	.hero-video-section {
		min-height: 100vh;
	}

	.hero-content {
		padding: 0 var(--section-padding-x);
	}

	.hero-logo img,
	.hero-logo .custom-logo {
		height: 60px;
	}

	.hero-date {
		flex-wrap: wrap;
		justify-content: center;
		padding: 12px 24px;
		gap: 8px;
	}

	.hero-cta {
		flex-direction: column;
		gap: 16px;
	}

	.hero-btn-primary,
	.hero-btn-secondary {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

	.hero-video-control {
		bottom: 20px;
		right: 20px;
	}

	.highlights-section {
		padding: 60px var(--section-padding-x);
	}

	.highlights-container {
		gap: 32px;
	}

	.highlight-item {
		min-width: 120px;
	}

	.about-section,
	.categories-section,
	.featured-section {
		padding: 60px var(--section-padding-x);
	}

	.about-image-wrapper img {
		height: 300px;
	}

	.featured-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cta-section {
		padding: 80px var(--section-padding-x);
	}

	.cta-date-box {
		padding: 32px 48px;
	}

	.cta-date-day {
		font-size: 3rem;
	}
}

/* ================================================
   404 PAGE
   ================================================ */

.error-404-section {
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px var(--section-padding-x);
	margin-top: var(--edge-spacing);
	margin-bottom: var(--edge-spacing);
	background: var(--gradient-dark);
	border-radius: var(--radius-xl);
	text-align: center;
}

.error-404-container {
	max-width: 700px;
}

.error-404-number {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 48px;
}

.error-number-4 {
	font-family: var(--font-heading);
	font-size: clamp(80px, 15vw, 150px);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.1);
	line-height: 1;
}

.error-number-gem {
	color: var(--accent-gold);
	animation: float 4s ease-in-out infinite;
}

.error-number-gem svg {
	width: clamp(60px, 10vw, 120px);
	height: clamp(60px, 10vw, 120px);
}

.error-404-content {
	margin-bottom: 48px;
}

.error-404-title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 300;
	color: #FFFFFF;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.error-404-text {
	font-family: var(--font-body);
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 0 0 32px 0;
}

.error-404-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.error-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--accent-gold);
	color: var(--primary-dark) !important;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.error-btn-primary:hover {
	background: var(--white);
	transform: translateY(-2px);
}

.error-btn-primary svg {
	transition: transform 0.3s ease;
}

.error-btn-primary:hover svg {
	transform: translateX(4px);
}

.error-btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 16px 32px;
	background: transparent;
	color: var(--white) !important;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.error-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.error-404-search {
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-search-label {
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 16px 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.error-404-search .search-form {
	display: flex;
	max-width: 400px;
	margin: 0 auto;
}

.error-404-search .search-field {
	flex: 1;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-right: none;
	border-radius: 50px 0 0 50px;
	color: #FFFFFF;
	font-family: var(--font-body);
	font-size: 0.95rem;
}

.error-404-search .search-field::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.error-404-search .search-field:focus {
	outline: none;
	border-color: #E0C889;
	background: rgba(255, 255, 255, 0.15);
}

.error-404-search .search-submit {
	padding: 14px 24px;
	background: var(--accent-gold);
	color: var(--primary-dark);
	border: none;
	border-radius: 0 50px 50px 0;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.error-404-search .search-submit:hover {
	background: #FFFFFF;
}

/* ================================================
   SEARCH PAGE
   ================================================ */

.search-results-section {
	padding: 60px var(--section-padding-x);
	margin-top: var(--edge-spacing);
	background-color: var(--white);
	border-radius: var(--radius-xl);
}

.search-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.search-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 0 0 16px 0;
}

.search-title span {
	color: var(--accent-gold);
	font-style: italic;
}

.search-count {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--medium-gray);
}

.search-results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 32px;
}

.search-result-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.search-result-card:hover {
	transform: translateY(-6px);
}

.search-result-image {
	height: 180px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--light-beige) 0%, var(--soft-gray) 100%);
}

.search-result-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.search-result-card:hover .search-result-image img {
	transform: scale(1.08);
}

/* Card content padding - shared */
.search-result-content,
.archive-card-content {
	padding: 24px;
}

/* Tag/Category labels - shared styles */
.search-result-type,
.archive-card-category,
.category-card-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-gold);
	margin-bottom: 8px;
}


/* Card excerpts - shared styles */
.search-result-excerpt,
.archive-card-excerpt {
	font-family: var(--font-body);
	color: var(--medium-gray);
	line-height: 1.6;
	margin: 0;
}
.search-result-excerpt { font-size: 0.9rem; }
.archive-card-excerpt { font-size: 0.95rem; }

/* No results */
.no-results-section {
	padding: 100px var(--section-padding-x);
	margin-top: var(--edge-spacing);
	background-color: var(--white);
	border-radius: var(--radius-xl);
	text-align: center;
}

.no-results-icon {
	color: var(--accent-gold);
	margin-bottom: 24px;
}

.no-results-title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 0 0 16px 0;
}

.no-results-text {
	font-family: var(--font-body);
	font-size: 1.1rem;
	color: var(--medium-gray);
	margin: 0 0 32px 0;
}

/* ================================================
   STANDARD PAGES
   ================================================ */

.page-section {
	padding: 80px var(--section-padding-x);
	margin-top: var(--edge-spacing);
	margin-bottom: var(--edge-spacing);
	background-color: var(--white);
	border-radius: var(--radius-xl);
}

.page-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 0;
	line-height: 1.2;
}

.page-content {
	max-width: 800px;
	margin: 0 auto;
}

.page-content p {
	font-family: var(--font-body);
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--medium-gray);
	margin-bottom: 1.5em;
}

.page-content h2 {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 2em 0 1em 0;
}

.page-content h3 {
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 400;
	color: var(--primary-dark);
	margin: 1.5em 0 0.75em 0;
}

.page-content a {
	color: #E0C889 !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.page-content a:hover {
	color: #c9a961 !important;
}

.page-content ul,
.page-content ol {
	margin: 1.5em 0;
	padding-left: 1.5em;
}

.page-content li {
	font-family: var(--font-body);
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--medium-gray);
	margin-bottom: 0.5em;
}

.page-content blockquote {
	margin: 2em 0;
	padding: 24px 32px;
	background: linear-gradient(135deg, #f8f6f2 0%, #f5f3ef 100%);
	border-left: 4px solid #E0C889;
	border-radius: 0 12px 12px 0;
}

.page-content blockquote p {
	font-style: italic;
	margin: 0;
}

.page-content img {
	border-radius: 12px;
	margin: 2em 0;
}

/* ================================================
   ARCHIVE PAGES
   ================================================ */

.archive-section {
	padding: 60px var(--section-padding-x);
	margin-top: var(--edge-spacing);
	background-color: var(--white);
	border-radius: var(--radius-xl);
}

.archive-header {
	text-align: center;
	margin-bottom: 60px;
}

.archive-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 0 0 16px 0;
}

.archive-description {
	font-family: var(--font-body);
	font-size: 1.1rem;
	color: var(--medium-gray);
	max-width: 600px;
	margin: 0 auto;
}

.archive-count {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--medium-gray);
	margin-top: 8px;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}

.archive-card {
	display: block;
	text-decoration: none;
	background: var(--light-beige);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition-smooth);
}

.archive-card:hover {
	transform: translateY(-6px);
}

.archive-card-image {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #e8e6e3;
}

.archive-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-card:hover .archive-card-image img {
	transform: scale(1.05);
}

.archive-card-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0aea8;
}



.archive-card-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: var(--medium-gray);
	margin-bottom: 12px;
}

.archive-card-meta time {
	color: inherit;
}

.archive-card-reading {
	position: relative;
	padding-left: 16px;
}

.archive-card-reading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: currentColor;
	border-radius: 50%;
	opacity: 0.5;
}


/* ================================================
   SINGLE POST
   ================================================ */

.single-post-section {
	padding: 80px var(--section-padding-x);
	margin-top: var(--edge-spacing);
	margin-bottom: var(--edge-spacing);
	background-color: var(--white);
	border-radius: var(--radius-xl);
}

.single-post-header {
	text-align: center;
	margin-bottom: 48px;
}

.single-post-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.single-post-category {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-gold);
	padding: 6px 16px;
	background: rgba(224, 200, 137, 0.1);
	border-radius: 20px;
}

.single-post-date {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--medium-gray);
}

.single-post-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	color: var(--primary-dark);
	margin: 0;
	line-height: 1.2;
}

.single-post-featured {
	margin-bottom: 48px;
	border-radius: 16px;
	overflow: hidden;
}

.single-post-featured img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post-content {
	max-width: 800px;
	margin: 0 auto;
}

/* Post navigation */
.post-navigation {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.nav-previous,
.nav-next {
	flex: 1;
}

.nav-next {
	text-align: right;
}

.nav-previous a,
.nav-next a {
	display: block;
	text-decoration: none;
	padding: 20px;
	background: #f8f6f2;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
	background: #f0ede8;
}

.nav-subtitle {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-gold);
	margin-bottom: 8px;
}

.nav-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--primary-dark);
}

/* Single Post Navigation - New Style */
.single-post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	max-width: 1200px;
	margin: 60px auto 0;
	padding: 0 var(--section-padding-x);
}

.post-nav-link {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 28px;
	background: #f8f6f2;
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-nav-link:hover {
	background: #f0ede8;
	transform: translateY(-4px);
}

.post-nav-next {
	text-align: right;
	align-items: flex-end;
}

.post-nav-empty {
	background: transparent;
}

.post-nav-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-gold);
}

.post-nav-next .post-nav-label {
	justify-content: flex-end;
}

.post-nav-label svg {
	opacity: 0.7;
	transition: all 0.3s ease;
}

.post-nav-link:hover .post-nav-label svg {
	opacity: 1;
}

.post-nav-prev:hover .post-nav-label svg {
	transform: translateX(-4px);
}

.post-nav-next:hover .post-nav-label svg {
	transform: translateX(4px);
}

.post-nav-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--primary-dark);
	line-height: 1.35;
	transition: color 0.3s ease;
}

.post-nav-link:hover .post-nav-title {
	color: var(--accent-gold);
}

/* ================================================
   COMMENTS SECTION
   ================================================ */

.comments-section {
	max-width: 800px;
	margin: 60px auto 0;
	padding: 0 var(--section-padding-x);
}

.comments-container {
	background: #f8f6f2;
	border-radius: 20px;
	padding: 48px;
}

.comments-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comments-title {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--primary-dark);
	margin: 12px 0 0 0;
}

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

.comment-list .comment {
	padding: 24px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comment-list .comment:last-child {
	border-bottom: none;
}

.comment-list .comment-body {
	display: flex;
	gap: 20px;
}

.comment-list .comment-author {
	flex-shrink: 0;
}

.comment-list .comment-author img {
	border-radius: 50%;
	width: 56px;
	height: 56px;
}

.comment-list .fn {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--primary-dark);
}

.comment-list .fn a {
	text-decoration: none;
	color: inherit;
}

.comment-list .comment-metadata {
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: var(--medium-gray);
	margin-top: 4px;
}

.comment-list .comment-metadata a {
	color: inherit;
	text-decoration: none;
}

.comment-list .comment-content p {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--dark-gray);
	line-height: 1.7;
	margin: 16px 0 0 0;
}

.comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--accent-gold);
	text-decoration: none;
	margin-top: 12px;
	transition: color 0.3s ease;
}

.comment-reply-link:hover {
	color: var(--accent-gold-dark);
}

.no-comments {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--medium-gray);
	padding: 24px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 12px;
	margin-top: 24px;
}

/* Comment Form */
.comment-reply-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--primary-dark);
	margin: 40px 0 8px 0;
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.comment-reply-title .section-tag {
	display: block;
	margin-bottom: 8px;
}

.comment-notes {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--medium-gray);
	margin-bottom: 24px;
}

.comment-form .comment-form-comment label,
.comment-form .comment-form-author label,
.comment-form .comment-form-email label,
.comment-form .comment-form-url label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--dark-gray);
	margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--dark-gray);
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: #E0C889;
	box-shadow: 0 0 0 3px rgba(224, 200, 137, 0.1);
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.comment-form p {
	margin-bottom: 20px;
}

.comment-form .submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--primary-dark);
	background: var(--accent-gold);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-form .submit-btn:hover {
	background: #c9a961;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(224, 200, 137, 0.3);
}

.comment-form .submit-btn svg {
	transition: transform 0.3s ease;
}

.comment-form .submit-btn:hover svg {
	transform: translateX(4px);
}

/* ================================================
   RESPONSIVE - ADDITIONAL PAGES
   ================================================ */

@media screen and (max-width: 1023px) {
	.error-404-section,
	.search-results-section,
	.no-results-section,
	.page-section,
	.archive-section,
	.single-post-section {
		padding: 60px 40px;
	}

	.post-type-archive-exhibitor .site-main,
	.post-type-archive-program .site-main,
	.taxonomy-exhibitors-category .site-main,
	.single-exhibitor .site-main {
		padding: 60px 40px;
	}
}

@media screen and (max-width: 768px) {
	.error-404-section {
		padding: 60px 24px;
		min-height: auto;
	}

	.error-404-number {
		gap: 10px;
		margin-bottom: 32px;
	}

	.error-404-buttons {
		flex-direction: column;
	}

	.error-btn-primary,
	.error-btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.error-404-search .search-form {
		flex-direction: column;
	}

	.error-404-search .search-field {
		border-radius: 50px;
		border-right: 1px solid rgba(255, 255, 255, 0.2);
		margin-bottom: 12px;
	}

	.error-404-search .search-submit {
		border-radius: 50px;
	}

	.search-results-section,
	.no-results-section,
	.page-section,
	.archive-section,
	.single-post-section {
		padding: 40px 20px;
	}

	.post-type-archive-exhibitor .site-main,
	.post-type-archive-program .site-main,
	.taxonomy-exhibitors-category .site-main,
	.single-exhibitor .site-main {
		padding: 40px 20px;
	}

	.page-section,
	.single-post-section {
		padding: 40px 24px;
	}

	.post-navigation {
		flex-direction: column;
	}

	.nav-next {
		text-align: left;
	}

	/* Archive cards mobile */
	.archive-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.archive-card-content {
		padding: 20px;
	}

	.archive-card-title {
		font-size: 1.1rem;
	}

	.archive-card-meta {
		flex-wrap: wrap;
		gap: 8px 16px;
	}

	/* Single post navigation mobile */
	.single-post-navigation {
		flex-direction: column;
		gap: 16px;
		padding: 0 24px;
	}

	.post-nav-next {
		text-align: left;
		align-items: flex-start;
	}

	.post-nav-next .post-nav-label {
		justify-content: flex-start;
	}

	.post-nav-link {
		padding: 20px 24px;
	}

	.post-nav-title {
		font-size: 1rem;
	}

	/* Comments mobile */
	.comments-section {
		padding: 0 24px;
		margin-top: 40px;
	}

	.comments-container {
		padding: 32px 24px;
	}

	.comments-header {
		margin-bottom: 32px;
		padding-bottom: 24px;
	}

	.comments-title {
		font-size: 1.5rem;
	}

	.comment-list .comment-body {
		flex-direction: column;
		gap: 16px;
	}

	.comment-reply-title {
		font-size: 1.25rem;
		margin-top: 32px;
		padding-top: 24px;
	}

	.comment-form .submit-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ================================================
   DISABLED BUTTON STYLES
   ================================================ */
.cta-btn-disabled,
.hero-btn-disabled,
.error-btn-disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

/* ================================================
   END GEM GENÈVE DESIGN
   ================================================ */

/* ============================================================
   PROGRAMME v02 — page Figma + CMS WordPress
   Isolated styles: do not affect the validated Home.
   ============================================================ */
.post-type-archive-program .gg-program-page {
    margin: 0 0 0 var(--sidebar-width, 280px) !important;
    padding: 0 !important;
    width: auto;
    max-width: none;
    background: #f8f7f3 !important;
    border-radius: 0 !important;
    min-height: 100vh;
}

.gg-program-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 68% 32%, rgba(115,74,147,.88), rgba(31,28,62,.92) 36%, rgba(14,15,31,.98) 78%),
        #17182a;
    background-image: var(--gg-program-hero, radial-gradient(circle at 68% 32%, rgba(115,74,147,.88), rgba(31,28,62,.92) 36%, rgba(14,15,31,.98) 78%));
    background-size: cover;
    background-position: center;
}
.gg-program-hero.has-image { background-image: var(--gg-program-hero); }
.gg-program-hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(90deg,rgba(12,13,27,.50),rgba(12,13,27,.15) 55%,rgba(12,13,27,.1));
}
.gg-program-hero-content {
    position:relative; z-index:2;
    width:100%;
    padding: 0 clamp(34px, 6vw, 74px);
    transform: translateY(55px);
}
.gg-program-hero h1 {
    margin:0 0 10px;
    font-family:'Playfair Display', serif;
    font-size:clamp(66px,7.3vw,112px);
    line-height:.9;
    font-weight:400;
    letter-spacing:-.035em;
    color:#e4c16b;
}
.gg-program-hero p {
    margin:0;
    max-width:390px;
    font-family:var(--font-body, 'SF Pro Text', sans-serif);
    color:#fff;
    font-size:15px;
    line-height:1.08;
    font-weight:500;
    text-transform:uppercase;
}

.gg-program-list {
    padding: 64px clamp(34px, 6vw, 74px) 74px;
}
.gg-program-day { margin: 0 0 66px; }
.gg-program-day:last-child { margin-bottom: 0; }
.gg-program-day-title {
    margin:0;
    padding:0 0 15px;
    border-bottom:1px solid #c9c8c1;
    font-family:'Playfair Display', serif;
    font-size:31px;
    line-height:1.2;
    font-weight:400;
    color:#262638;
}
.gg-program-day-events { width:100%; }
.gg-program-event {
    display:grid;
    grid-template-columns: 85px 220px minmax(0,1fr);
    align-items:center;
    gap:14px;
    min-height:98px;
    padding:10px 0;
    margin:0;
    border-bottom:1px solid #d8d7d1;
    background:transparent;
}
.gg-program-event-time {
    align-self:start;
    padding-top:7px;
    color:#161621;
    font-family:var(--font-body, 'SF Pro Text', sans-serif);
    font-size:11px;
    line-height:1.3;
    white-space:nowrap;
}
.gg-program-event-image {
    width:220px;
    height:82px;
    overflow:hidden;
    background:#15151b;
}
.gg-program-event-image img { width:100%;height:100%;object-fit:cover;display:block; }
.gg-program-event-content { min-width:0; align-self:center; }
.gg-program-event-content h3 {
    margin:0 0 4px;
    color:#232338;
    font-family:'Playfair Display', serif;
    font-size:20px;
    line-height:1.12;
    font-weight:600;
}
.gg-program-event-content p {
    margin:0 0 7px;
    color:#83817d;
    font-family:var(--font-body, 'SF Pro Text', sans-serif);
    font-size:10px;
    line-height:1.15;
    text-transform:uppercase;
    letter-spacing:.015em;
}
.gg-program-view {
    display:inline-flex;
    gap:7px;
    align-items:center;
    color:#d4b65f;
    text-decoration:none;
    font-family:var(--font-body, 'SF Pro Text', sans-serif);
    font-size:11px;
    line-height:1;
}
.gg-program-view span { font-size:18px;line-height:.5;transform:translateY(-1px); }
.gg-program-view:hover { color:#ad8c32; }
.gg-program-empty { padding:50px 0; }

/* Keep footer aligned with the content area on desktop. */
.post-type-archive-program .site-footer { margin-left: var(--sidebar-width, 280px); }

@media screen and (max-width: 1200px) {
    .gg-program-event { grid-template-columns:75px 180px minmax(0,1fr); }
    .gg-program-event-image { width:180px; }
}
@media screen and (max-width: 1023px) {
    .post-type-archive-program .gg-program-page,
    .post-type-archive-program .site-footer { margin-left:0 !important; }
    .gg-program-hero { min-height:430px; }
    .gg-program-hero-content { padding:0 34px; }
    .gg-program-list { padding:50px 34px 64px; }
}
@media screen and (max-width: 700px) {
    .gg-program-hero { min-height:360px; }
    .gg-program-hero-content { padding:0 22px;transform:translateY(30px); }
    .gg-program-hero h1 { font-size:56px; }
    .gg-program-list { padding:38px 22px 52px; }
    .gg-program-day { margin-bottom:48px; }
    .gg-program-day-title { font-size:27px; }
    .gg-program-event {
        grid-template-columns:70px minmax(0,1fr);
        gap:10px 12px;
        padding:14px 0;
    }
    .gg-program-event-time { grid-column:1;grid-row:1 / span 2; }
    .gg-program-event-image { grid-column:2;width:100%;height:130px; }
    .gg-program-event-content { grid-column:2; }
    .gg-program-event-content h3 { font-size:18px; }
}

/* ================================================================
   EXHIBITORS V03 — DIRECTORY PAGE
   Dedicated styles; does not alter Home or Programme.
================================================================ */
.post-type-archive-exhibitor .site-main.gg-exhibitors-page {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: #f6f4ef;
}
.gg-exhibitors-page { color: #25263b; }
.gg-exhibitors-hero {
    position: relative;
    min-height: 324px;
    background-image: var(--gg-exhibitors-hero);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.gg-exhibitors-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,16,31,.34), rgba(15,16,31,.12));
}
.gg-exhibitors-hero-copy {
    position: relative;
    z-index: 1;
    padding: 42px 40px 34px;
    align-self: flex-end;
    color: #fff;
}
.gg-exhibitors-hero-copy h1 {
    margin: 0 0 7px;
    color: #e0bd68;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(58px, 7.15vw, 104px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.035em;
}
.gg-exhibitors-hero-copy p {
    margin: 0;
    max-width: 310px;
    color: #fff;
    font-family: "SF Pro Text", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.05;
    text-transform: uppercase;
}
.gg-exhibitors-directory {
    padding: 64px 42px 96px;
    background: #f6f4ef;
}
.gg-exhibitors-columns {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 58px;
    align-items: start;
}
.gg-exhibitors-column { min-width: 0; }
.gg-exhibitors-letter-group {
    margin: 0 0 34px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(37,38,59,.18);
    break-inside: avoid;
}
.gg-exhibitors-letter-group h2 {
    margin: 0 0 13px;
    color: #dfbd6e;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: .95;
}
.gg-exhibitors-names {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}
.gg-exhibitors-names a {
    color: #25263b;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    line-height: 1.18;
    text-decoration: none;
    transition: color .18s ease, opacity .18s ease;
}
.gg-exhibitors-names a:hover,
.gg-exhibitors-names a:focus-visible {
    color: #bd9748;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gg-exhibitors-empty { padding: 56px 0 140px; }
.gg-exhibitors-empty h2 {
    margin: 0 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 46px;
    font-weight: 400;
}
.gg-exhibitors-empty p { margin: 0; }

@media (min-width: 901px) {
    .post-type-archive-exhibitor .gg-exhibitors-page {
        min-height: 100vh;
    }
}
@media (max-width: 900px) {
    .gg-exhibitors-hero { min-height: 300px; }
    .gg-exhibitors-hero-copy { padding: 36px 28px 30px; }
    .gg-exhibitors-directory { padding: 50px 28px 78px; }
    .gg-exhibitors-columns { gap: 32px; }
    .gg-exhibitors-letter-group h2 { font-size: 44px; }
    .gg-exhibitors-names a { font-size: 18px; }
}
@media (max-width: 640px) {
    .gg-exhibitors-hero { min-height: 250px; }
    .gg-exhibitors-hero-copy h1 { font-size: 54px; }
    .gg-exhibitors-columns { grid-template-columns: 1fr; gap: 0; }
    .gg-exhibitors-directory { padding: 42px 22px 64px; }
    .gg-exhibitors-letter-group { margin-bottom: 28px; }
}

/* ================================================================
   V04 — CANONICAL SITE SHELL
   Home, Programme and Exhibitors now share one sidebar/footer and
   one set of canonical URLs. Inner page content is already inside .gg-page.
================================================================ */
body.gg-site-shell.post-type-archive-program .gg-program-page,
body.gg-site-shell.post-type-archive-exhibitor .gg-exhibitors-page,
body.gg-site-shell.tax-exhibitors-category .site-main,
body.gg-site-shell.single-exhibitor .site-main {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: none !important;
}
body.gg-site-shell.post-type-archive-program .site-footer,
body.gg-site-shell.post-type-archive-exhibitor .site-footer { margin-left:0 !important; }
body.gg-site-shell .gg-program-page,
body.gg-site-shell .gg-exhibitors-page { overflow:hidden; }
@media (max-width:900px){
 body.gg-site-shell.post-type-archive-program .gg-program-page,
 body.gg-site-shell.post-type-archive-exhibitor .gg-exhibitors-page { margin-left:0!important; }
}

/* ================================================================
   CONTACT V05 — FIGMA PAGE + EDITABLE CONTENT
================================================================ */
body.gg-site-shell.page-template-page-contact .gg-contact-page,
body.gg-site-shell.page-contact .gg-contact-page {
    margin:0 !important;
    padding:0 !important;
    max-width:none !important;
    width:100% !important;
    background:#f7f6f2;
    color:#292a3d;
}
.gg-contact-hero {
    position:relative;
    min-height:418px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#5f7374;
    background-image:var(--gg-contact-hero);
    background-size:cover;
    background-position:center;
}
.gg-contact-hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(90deg,rgba(33,42,52,.22),rgba(32,38,52,.08));
}
.gg-contact-hero-copy {
    position:relative; z-index:1;
    width:100%;
    padding:58px 20px 42px;
    color:#fff;
}
.gg-contact-mark {
    display:block;
    width:76px;
    max-height:42px;
    object-fit:contain;
    object-position:left center;
    filter:brightness(0) invert(1);
    margin:0 0 18px;
}
.gg-contact-hero h1 {
    margin:0 0 14px;
    font-family:'Playfair Display',Georgia,serif;
    font-weight:400;
    font-size:clamp(64px,7.1vw,105px);
    line-height:.9;
    letter-spacing:-.04em;
    color:#fff;
}
.gg-contact-hero h1 em { color:#dfbd68; font-weight:400; }
.gg-contact-hero p {
    margin:0;
    color:#fff;
    font:500 15px/1.02 'SF Pro Text',Arial,sans-serif;
    text-transform:uppercase;
    max-width:310px;
}
.gg-contact-content { padding:64px 20px 34px; }
.gg-contact-intro {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:92px;
    max-width:960px;
    margin:0 0 66px;
}
.gg-contact-intro-block h2 {
    margin:0 0 22px;
    font-family:'Playfair Display',Georgia,serif;
    font-size:28px;
    line-height:1.18;
    font-weight:400;
    letter-spacing:-.02em;
    color:#333349;
}
.gg-contact-intro-block a {
    color:#d6b45f;
    font:600 15px/1.2 'SF Pro Text',Arial,sans-serif;
    text-decoration:none;
}
.gg-contact-form-wrap { max-width:980px; }
.gg-contact-form-wrap>h2 {
    margin:0 0 36px;
    font-family:'Playfair Display',Georgia,serif;
    font-size:31px;
    line-height:1.1;
    font-weight:400;
    color:#333349;
}
.gg-contact-form { display:flex; flex-direction:column; gap:30px; }
.gg-contact-field { display:block; margin:0; }
.gg-contact-field>span {
    display:block;
    margin:0 0 8px;
    color:#292a3d;
    font:600 11px/1.2 'SF Pro Text',Arial,sans-serif;
}
.gg-contact-field input,
.gg-contact-field textarea {
    display:block;
    width:100%;
    margin:0;
    border:1px solid #cdcdc9;
    border-radius:0;
    background:#fff;
    color:#292a3d;
    box-shadow:none;
    outline:none;
    font:400 13px/1.4 'SF Pro Text',Arial,sans-serif;
}
.gg-contact-field input { height:50px; padding:0 16px; }
.gg-contact-field textarea { min-height:146px; resize:vertical; padding:17px 16px; }
.gg-contact-field input::placeholder,
.gg-contact-field textarea::placeholder { color:#c4c4c8; opacity:1; }
.gg-contact-field input:focus,
.gg-contact-field textarea:focus { border-color:#8d8d91; }
.gg-contact-form button {
    width:160px;
    min-height:42px;
    border:0;
    border-radius:0;
    padding:10px 20px;
    background:#2a2b40;
    color:#fff;
    font:500 16px/1 'SF Pro Text',Arial,sans-serif;
    cursor:pointer;
}
.gg-contact-form button:hover { opacity:.9; }
.gg-contact-notice { margin:-16px 0 24px;padding:12px 14px;border:1px solid #c9c8c4;font:400 13px/1.4 'SF Pro Text',sans-serif; }
.gg-contact-notice.is-success { border-color:#9aaf8c; }
.gg-contact-notice.is-error { border-color:#c89898; }
.gg-contact-hp { position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;overflow:hidden!important; }

@media(min-width:1441px){
    .gg-contact-hero-copy,.gg-contact-content{padding-left:1.388889vw;padding-right:1.388889vw}
}
@media(max-width:1100px){
    .gg-contact-intro{gap:54px}
}
@media(max-width:900px){
    .gg-contact-hero{min-height:360px}
    .gg-contact-hero-copy{padding:44px 24px 34px}
    .gg-contact-content{padding:50px 24px 30px}
    .gg-contact-intro{gap:40px}
}
@media(max-width:640px){
    .gg-contact-hero{min-height:310px}
    .gg-contact-hero h1{font-size:58px}
    .gg-contact-intro{grid-template-columns:1fr;gap:34px;margin-bottom:52px}
    .gg-contact-intro-block h2{font-size:25px;margin-bottom:14px}
    .gg-contact-form-wrap>h2{font-size:28px;margin-bottom:28px}
    .gg-contact-form{gap:22px}
    .gg-contact-form button{width:100%}
}

/* ============================================================
   NEWS — GemGenève v06
   ============================================================ */
body.gg-site-shell.category-news .gg-news-page{margin:0!important;width:100%;max-width:none;overflow:hidden;color:#25263b;background:#f8f7f3}
.gg-news-hero{position:relative;min-height:500px;background:#151727 var(--gg-news-hero,none) center/cover no-repeat;display:flex;align-items:flex-end;isolation:isolate}
.gg-news-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(16,18,34,.68) 0%,rgba(16,18,34,.28) 52%,rgba(16,18,34,.16) 100%);z-index:-1}
.gg-news-hero-copy{width:min(1180px,calc(100% - 64px));margin:0 auto;padding:0 0 88px;color:#fff}
.gg-news-mark{width:112px;height:auto;filter:brightness(0) invert(1);margin:0 0 24px;display:block}
.gg-news-hero h1{margin:0;color:#d9b75d;font-family:"Playfair Display",Georgia,serif;font-size:92px;font-weight:400;line-height:.95;letter-spacing:-.025em}
.gg-news-hero p{margin:20px 0 0;font-family:"SF Pro Text",Arial,sans-serif;font-size:17px;font-weight:600;line-height:1.12;letter-spacing:.015em;color:#fff;text-transform:uppercase}
.gg-news-content{width:min(1180px,calc(100% - 64px));margin:0 auto;padding:82px 0 86px}
.gg-news-featured{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(300px,.88fr);gap:68px;align-items:center;padding:0 0 54px}
.gg-news-featured-image{display:block;height:360px;overflow:hidden;background:#e8e6df}
.gg-news-featured-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.gg-news-featured-image:hover img{transform:scale(1.015)}
.gg-news-featured-copy h2{font-family:"Playfair Display",Georgia,serif;font-size:43px;line-height:1.12;font-weight:400;margin:0 0 28px;color:#25263b}
.gg-news-featured-copy h2 a,.gg-news-row-copy h3 a{color:inherit;text-decoration:none}
.gg-news-featured-copy p{max-width:470px;font-family:"SF Pro Text",Arial,sans-serif;font-size:15px;line-height:1.5;margin:0 0 36px;color:#353545}
.gg-news-read,.gg-news-row-read{display:inline-flex;gap:10px;align-items:center;color:#d2ad4f;text-decoration:none;font-family:"SF Pro Text",Arial,sans-serif;font-size:14px;font-weight:500}
.gg-news-read span,.gg-news-row-read span{font-size:20px;line-height:1}
.gg-news-divider{height:1px;background:#d7d5cf;margin:0 0 58px}
.gg-news-all-title{margin:0 0 28px;color:#d2ad4f;font-family:"SF Pro Text",Arial,sans-serif;font-size:16px;font-weight:600;line-height:1;text-transform:uppercase}
.gg-news-list{width:100%}
.gg-news-row{display:grid;grid-template-columns:390px minmax(0,1fr) 150px;gap:20px;align-items:center;padding:16px 0;border-bottom:1px solid #d7d5cf;min-height:190px}
.gg-news-row:first-child{border-top:0}
.gg-news-row-image{display:block;width:100%;height:174px;overflow:hidden;background:#e8e6df}
.gg-news-row-image img{width:100%;height:100%;object-fit:cover;display:block}
.gg-news-row-copy{align-self:center;min-width:0;padding:3px 8px 3px 0}
.gg-news-row-copy time{display:block;font-family:"SF Pro Text",Arial,sans-serif;font-size:13px;font-weight:600;line-height:1.2;color:#353545;margin:0 0 21px}
.gg-news-row-copy h3{font-family:"Playfair Display",Georgia,serif;font-size:25px;line-height:1.16;font-weight:400;color:#25263b;margin:0 0 20px}
.gg-news-row-copy p{font-family:"SF Pro Text",Arial,sans-serif;font-size:14px;line-height:1.42;color:#353545;margin:0;max-width:520px}
.gg-news-row-read{justify-self:end;align-self:end;margin-bottom:24px;white-space:nowrap}
.gg-news-empty{padding:28px 0 70px}
.gg-news-empty h2{font-family:"Playfair Display",Georgia,serif;font-size:34px;font-weight:400;margin:0 0 10px}

@media(max-width:1100px){
  .gg-news-hero-copy,.gg-news-content{width:calc(100% - 56px)}
  .gg-news-featured{gap:42px}
  .gg-news-row{grid-template-columns:300px minmax(0,1fr) 130px}
}
@media(max-width:820px){
  .gg-news-hero{min-height:410px}
  .gg-news-hero-copy{width:calc(100% - 44px);padding-bottom:58px}
  .gg-news-hero h1{font-size:66px}
  .gg-news-content{width:calc(100% - 44px);padding:54px 0 66px}
  .gg-news-featured{grid-template-columns:1fr;gap:30px}
  .gg-news-featured-image{height:320px}
  .gg-news-featured-copy h2{font-size:34px}
  .gg-news-row{grid-template-columns:220px minmax(0,1fr);gap:18px}
  .gg-news-row-read{grid-column:2;justify-self:start;align-self:auto;margin:0 0 12px}
}
@media(max-width:560px){
  .gg-news-hero{min-height:330px}
  .gg-news-hero-copy{width:calc(100% - 32px);padding-bottom:42px}
  .gg-news-mark{width:92px;margin-bottom:18px}
  .gg-news-hero h1{font-size:52px}
  .gg-news-hero p{font-size:13px}
  .gg-news-content{width:calc(100% - 32px);padding:40px 0 54px}
  .gg-news-featured-image{height:240px}
  .gg-news-featured-copy h2{font-size:30px}
  .gg-news-divider{margin-bottom:40px}
  .gg-news-row{grid-template-columns:1fr;padding:22px 0;gap:14px}
  .gg-news-row-image{height:215px}
  .gg-news-row-copy time{margin-bottom:12px}
  .gg-news-row-copy h3{font-size:24px;margin-bottom:12px}
  .gg-news-row-read{grid-column:1;margin:0 0 4px}
}

/* ================================================================
   EXHIBITOR DETAIL V07 — FIGMA DETAIL PAGE
================================================================ */
body.gg-site-shell.single-exhibitor .gg-exhibitor-detail {
    margin:0 !important;
    padding:0 !important;
    width:100% !important;
    max-width:none !important;
    background:#f7f6f2;
    color:#292a3d;
}
.gg-exhibitor-detail-hero {
    display:grid;
    grid-template-columns:minmax(280px,.78fr) minmax(0,1.55fr);
    gap:54px;
    align-items:center;
    padding:88px 56px 38px;
}
.gg-exhibitor-detail-heading h1 {
    margin:0 0 20px;
    font-family:"Playfair Display", Georgia, serif;
    font-size:clamp(52px,5.7vw,86px);
    line-height:.96;
    font-weight:400;
    letter-spacing:-.035em;
    color:#292a3d;
}
.gg-exhibitor-country {
    margin:0;
    font-family:"SF Pro Text",Arial,sans-serif;
    font-size:18px;
    line-height:1.25;
    text-transform:uppercase;
    color:#292a3d;
}
.gg-exhibitor-detail-media { min-width:0; }
.gg-exhibitor-detail-image {
    display:block;
    width:100%;
    height:clamp(280px,31vw,430px);
    object-fit:cover;
    background:#e8e6df;
}
.gg-exhibitor-detail-image--empty { border:1px solid rgba(41,42,61,.12); }
.gg-exhibitor-back {
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    margin:28px 0 0;
    color:#dfbd6e;
    font-family:"SF Pro Text",Arial,sans-serif;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
}
.gg-exhibitor-back:hover,.gg-exhibitor-back:focus-visible { text-decoration:underline; text-underline-offset:3px; }
.gg-exhibitor-detail-rule {
    height:1px;
    margin:0 56px;
    background:rgba(41,42,61,.2);
}
.gg-exhibitor-detail-body {
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(300px,.9fr);
    gap:86px;
    padding:66px 70px 112px 70px;
}
.gg-exhibitor-about h2 {
    margin:0 0 46px;
    font-family:"Playfair Display",Georgia,serif;
    font-size:48px;
    line-height:1;
    font-weight:400;
    color:#292a3d;
}
.gg-exhibitor-about-content {
    max-width:720px;
    font-family:"SF Pro Text",Arial,sans-serif;
    font-size:18px;
    line-height:1.65;
    color:#292a3d;
}
.gg-exhibitor-about-content p { margin:0 0 28px; }
.gg-exhibitor-about-content > *:last-child { margin-bottom:0; }
.gg-exhibitor-contact { min-width:0; }
.gg-exhibitor-contact-row {
    padding:0 0 26px;
    margin:0 0 28px;
    border-bottom:1px solid rgba(41,42,61,.2);
}
.gg-exhibitor-contact-row > span {
    display:block;
    margin:0 0 18px;
    font-family:"SF Pro Text",Arial,sans-serif;
    font-size:14px;
    line-height:1;
    text-transform:uppercase;
    color:#292a3d;
}
.gg-exhibitor-contact-row p {
    margin:0;
    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(27px,2.8vw,40px);
    line-height:1.2;
    font-weight:400;
    color:#292a3d;
    overflow-wrap:anywhere;
}
.gg-exhibitor-contact-row p a { color:inherit; text-decoration:none; }
.gg-exhibitor-contact-row p a:hover,.gg-exhibitor-contact-row p a:focus-visible { color:#bd9748; }
.gg-exhibitor-contact-row--website p { font-size:clamp(22px,2.1vw,31px); }
.gg-exhibitor-contact-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 22px;
    margin-top:2px;
    background:#292a3d;
    color:#e4c46f !important;
    font-family:"SF Pro Text",Arial,sans-serif;
    font-size:16px;
    font-weight:700;
    line-height:1;
    text-decoration:none !important;
    text-transform:uppercase;
    border:1px solid #292a3d;
    border-radius:0;
    transition:background .18s ease,color .18s ease;
}
.gg-exhibitor-contact-button:hover,.gg-exhibitor-contact-button:focus-visible {
    background:#e4c46f;
    color:#292a3d !important;
}
@media(max-width:1050px){
    .gg-exhibitor-detail-hero{gap:32px;padding:64px 38px 34px}
    .gg-exhibitor-detail-rule{margin:0 38px}
    .gg-exhibitor-detail-body{gap:48px;padding:56px 46px 88px}
}
@media(max-width:780px){
    .gg-exhibitor-detail-hero{grid-template-columns:1fr;padding:42px 24px 28px}
    .gg-exhibitor-detail-heading h1{font-size:52px}
    .gg-exhibitor-detail-image{height:58vw;min-height:240px;max-height:420px}
    .gg-exhibitor-back{justify-content:flex-start;margin-top:20px}
    .gg-exhibitor-detail-rule{margin:0 24px}
    .gg-exhibitor-detail-body{grid-template-columns:1fr;gap:54px;padding:44px 24px 72px}
    .gg-exhibitor-about h2{margin-bottom:28px;font-size:40px}
    .gg-exhibitor-about-content{font-size:17px}
    .gg-exhibitor-contact-row p{font-size:30px}
}

/* ==========================================================
   V08 — NEWS DETAIL
   ========================================================== */
body.gg-site-shell.single-post .gg-news-single{
    width:100%;
    max-width:none;
    margin:0;
    padding:0;
    background:#f8f7f3;
    color:#25263b;
}
.gg-news-single-article{
    width:min(1180px,calc(100% - 96px));
    margin:0 auto;
    padding:72px 0 0;
}
.gg-news-single-header{
    max-width:1050px;
}
.gg-news-single-date{
    display:block;
    margin:0 0 28px;
    font-family:'SF Pro Text',Arial,sans-serif;
    font-size:18px;
    line-height:1.2;
    font-weight:500;
    color:#25263b;
}
.gg-news-single-header h1{
    margin:0;
    max-width:980px;
    font-family:'Playfair Display',Georgia,serif;
    font-size:72px;
    line-height:.98;
    font-weight:400;
    letter-spacing:-.025em;
    color:#25263b;
}
.gg-news-single-divider{
    height:1px;
    background:#cbc9c3;
    margin:54px 0 52px;
}
.gg-news-single-image{
    margin:0 0 52px;
    width:100%;
}
.gg-news-single-image img{
    display:block;
    width:100%;
    height:auto;
    max-height:520px;
    object-fit:cover;
}
.gg-news-single-body{
    max-width:780px;
    font-family:'SF Pro Text',Arial,sans-serif;
    font-size:20px;
    line-height:1.55;
    color:#25263b;
}
.gg-news-single-body > *:first-child{margin-top:0}
.gg-news-single-body p{margin:0 0 28px}
.gg-news-single-body h2,
.gg-news-single-body h3,
.gg-news-single-body h4{
    font-family:'Playfair Display',Georgia,serif;
    font-weight:400;
    color:#25263b;
    line-height:1.15;
    margin:48px 0 20px;
}
.gg-news-single-body img{
    max-width:100%;
    height:auto;
}
.gg-news-single-category{
    border-top:1px solid #cbc9c3;
    border-bottom:1px solid #cbc9c3;
    margin-top:46px;
    padding:18px 0;
    font-family:'Playfair Display',Georgia,serif;
    font-size:20px;
    line-height:1.3;
}
.gg-news-single-category span{margin-right:7px}
.gg-news-single-category a{
    color:#d7b65a;
    text-decoration:none;
}
.gg-news-single-nav{
    display:grid;
    grid-template-columns:minmax(0,1fr) 1px minmax(0,1fr);
    gap:42px;
    min-height:145px;
    padding:34px 0 44px;
}
.gg-news-single-nav-separator{background:#cbc9c3}
.gg-news-single-nav-item{
    display:flex;
    flex-direction:column;
    gap:20px;
    min-width:0;
}
.gg-news-single-nav-next{align-items:flex-end;text-align:right}
.gg-news-nav-direction{
    font-family:'SF Pro Text',Arial,sans-serif;
    font-size:16px;
    font-weight:600;
    color:#d7b65a;
    text-decoration:none;
    letter-spacing:.01em;
}
.gg-news-nav-direction span{font-size:20px;vertical-align:-1px}
.gg-news-nav-title{
    max-width:390px;
    font-family:'Playfair Display',Georgia,serif;
    font-size:22px;
    line-height:1.12;
    font-weight:400;
    color:#25263b;
    text-decoration:underline;
    text-underline-offset:3px;
}
.gg-news-nav-title:hover,.gg-news-nav-direction:hover{opacity:.7}

@media (max-width:900px){
    .gg-news-single-article{width:min(100% - 40px,1180px);padding-top:46px}
    .gg-news-single-header h1{font-size:52px}
    .gg-news-single-date{font-size:16px;margin-bottom:20px}
    .gg-news-single-divider{margin:38px 0}
    .gg-news-single-image{margin-bottom:38px}
    .gg-news-single-body{font-size:18px}
}
@media (max-width:620px){
    .gg-news-single-article{width:calc(100% - 32px);padding-top:34px}
    .gg-news-single-header h1{font-size:40px;line-height:1.02}
    .gg-news-single-image img{max-height:none}
    .gg-news-single-nav{grid-template-columns:1fr;gap:26px}
    .gg-news-single-nav-separator{height:1px;width:100%}
    .gg-news-single-nav-next{align-items:flex-start;text-align:left}
    .gg-news-nav-title{font-size:20px}
}


/* ================================================================
   V09 — FIRST POLISH PASS
   Clean, uniform inner-page heroes + Contact alignment fixes.
   ================================================================ */

/* All primary inner-page heroes use the Programme hero dimensions. */
.gg-program-hero,
.gg-contact-hero,
.gg-news-hero,
.gg-exhibitors-hero {
    min-height:520px !important;
    height:520px !important;
    border-radius:0 !important;
    overflow:hidden !important;
    background-clip:border-box !important;
    display:flex !important;
    align-items:center !important;
}

/* One professional left alignment for every inner-page hero. */
.gg-program-hero-content,
.gg-contact-hero-copy,
.gg-news-hero-copy,
.gg-exhibitors-hero-copy {
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 clamp(34px,6vw,74px) !important;
    align-self:auto !important;
    transform:translateY(55px) !important;
    text-align:left !important;
}

/* No decorative GemGenève mark inside Contact/News heroes. */
.gg-contact-mark,
.gg-news-mark { display:none !important; }

/* Hero subtitles: no artificial narrow column / dangling final word. */
.gg-program-hero p,
.gg-contact-hero p,
.gg-news-hero p,
.gg-exhibitors-hero-copy p {
    max-width:760px !important;
    width:auto !important;
    white-space:normal !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    text-wrap:pretty;
}

/* Exhibitors hero must always be square-cornered. */
.gg-exhibitors-hero,
.gg-exhibitors-hero::before,
.gg-exhibitors-hero::after {
    border-radius:0 !important;
}

/* Contact content: centered container with equal left/right margins. */
.gg-contact-content {
    width:min(1160px,calc(100% - 80px)) !important;
    max-width:1160px !important;
    margin:0 auto !important;
    padding:64px 0 34px !important;
}
.gg-contact-intro {
    width:100% !important;
    max-width:none !important;
    margin:0 0 66px !important;
}
.gg-contact-form-wrap {
    width:100% !important;
    max-width:980px !important;
    margin:0 auto !important;
}
.gg-contact-email {
    display:inline-block;
    color:#d6b45f;
    font:600 15px/1.2 'SF Pro Text',Arial,sans-serif;
    text-decoration:none;
    background:none !important;
    padding:0 !important;
}
.gg-contact-email::before,
.gg-contact-email::after,
.gg-contact-intro-block a::before,
.gg-contact-intro-block a::after {
    content:none !important;
    display:none !important;
    background:none !important;
}

/* News page can now be served from the real WordPress Page /news/. */
body.gg-site-shell.page-template-page-news .gg-news-page,
body.gg-site-shell.page-news .gg-news-page {
    margin:0 !important;
    width:100% !important;
    max-width:none !important;
    overflow:hidden;
    color:#25263b;
    background:#f8f7f3;
}

@media(max-width:900px){
    .gg-program-hero,
    .gg-contact-hero,
    .gg-news-hero,
    .gg-exhibitors-hero {
        min-height:430px !important;
        height:430px !important;
    }
    .gg-program-hero-content,
    .gg-contact-hero-copy,
    .gg-news-hero-copy,
    .gg-exhibitors-hero-copy {
        padding:0 34px !important;
        transform:translateY(34px) !important;
    }
    .gg-contact-content {
        width:calc(100% - 48px) !important;
        padding:50px 0 30px !important;
    }
}
@media(max-width:640px){
    .gg-program-hero,
    .gg-contact-hero,
    .gg-news-hero,
    .gg-exhibitors-hero {
        min-height:360px !important;
        height:360px !important;
    }
    .gg-program-hero-content,
    .gg-contact-hero-copy,
    .gg-news-hero-copy,
    .gg-exhibitors-hero-copy {
        padding:0 22px !important;
        transform:translateY(26px) !important;
    }
    .gg-contact-content {
        width:calc(100% - 44px) !important;
        padding:42px 0 26px !important;
    }
}

/* ============================================================
   V10 — CONSISTENCY POLISH
   Contact alignment / icon cleanup / unified gold buttons
   ============================================================ */

/* CONTACT — the two enquiry blocks belong to the same centered content grid. */
.gg-contact-intro {
    width:min(980px,100%) !important;
    max-width:980px !important;
    margin:0 auto 66px !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:72px !important;
    align-items:start !important;
    text-align:center !important;
}
.gg-contact-intro-block {
    text-align:center !important;
}
.gg-contact-intro-block h2 {
    max-width:420px;
    margin-left:auto !important;
    margin-right:auto !important;
}
.gg-contact-email,
.gg-contact-intro-block a {
    display:inline-block !important;
    margin-left:auto !important;
    margin-right:auto !important;
    color:#d6b45f !important;
    text-decoration:none !important;
}

/* Remove decorative/security/external-link glyphs next to emails and actions.
   This deliberately targets only content/action areas, not footer social icons. */
.gg-contact-page .gg-contact-content [class*="lock"],
.gg-contact-page .gg-contact-content [class*="secure"],
.gg-contact-page .gg-contact-content [class*="external"],
.gg-exhibitor-detail [class*="lock"],
.gg-exhibitor-detail [class*="secure"],
.gg-exhibitor-detail [class*="external"],
.gg-news-page [class*="lock"],
.gg-news-page [class*="secure"],
.gg-news-page [class*="external"] {
    display:none !important;
}
.gg-contact-email::before,
.gg-contact-email::after,
.gg-contact-intro-block a::before,
.gg-contact-intro-block a::after,
.gg-contact-form button::before,
.gg-contact-form button::after,
.gg-exhibitor-contact-row a::before,
.gg-exhibitor-contact-row a::after,
.gg-exhibitor-contact-button::before,
.gg-exhibitor-contact-button::after,
.gg-news-read::before,
.gg-news-row-read::before {
    content:none !important;
    display:none !important;
}

/* UNIFIED BUTTON LANGUAGE — all real CTA buttons use GemGenève gold. */
.gg-contact-form button,
.gg-exhibitor-contact-button,
.hero-btn-primary,
.hero-btn-secondary,
.cta-btn-primary,
.cta-btn-secondary,
.sidebar-ticketing .wp-block-button__link,
.wp-block-button .wp-block-button__link {
    background:#dfbd68 !important;
    border-color:#dfbd68 !important;
    color:#20212f !important;
    box-shadow:none !important;
}
.gg-contact-form button:hover,
.gg-contact-form button:focus-visible,
.gg-exhibitor-contact-button:hover,
.gg-exhibitor-contact-button:focus-visible,
.hero-btn-primary:hover,
.hero-btn-primary:focus-visible,
.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible,
.cta-btn-primary:hover,
.cta-btn-primary:focus-visible,
.cta-btn-secondary:hover,
.cta-btn-secondary:focus-visible,
.sidebar-ticketing .wp-block-button__link:hover,
.sidebar-ticketing .wp-block-button__link:focus-visible,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus-visible {
    background:#cfa94f !important;
    border-color:#cfa94f !important;
    color:#20212f !important;
}

@media(max-width:640px){
    .gg-contact-intro{
        grid-template-columns:1fr !important;
        gap:34px !important;
        text-align:center !important;
    }
}


/* ============================================================
   V11 — FINAL REQUESTED CORRECTIONS ONLY
   - Programme Hero settings discoverability is handled in admin PHP.
   - Programme rows enlarged.
   - Text + arrow action links are gold everywhere.
   - Restore/force visibility of Contact and Exhibitor presentation text.
   ============================================================ */

/* PROGRAMME — larger, more readable event rows without changing the page structure. */
.gg-program-list {
    padding-top: 76px !important;
    padding-bottom: 88px !important;
}
.gg-program-day { margin-bottom: 78px !important; }
.gg-program-day-title {
    font-size: 36px !important;
    padding-bottom: 18px !important;
}
.gg-program-event {
    grid-template-columns: 105px 285px minmax(0,1fr) !important;
    gap: 22px !important;
    min-height: 132px !important;
    padding: 14px 0 !important;
}
.gg-program-event-time {
    font-size: 12px !important;
    padding-top: 10px !important;
}
.gg-program-event-image {
    width: 285px !important;
    height: 108px !important;
}
.gg-program-event-content h3 {
    font-size: 23px !important;
    line-height: 1.15 !important;
    margin-bottom: 7px !important;
}
.gg-program-event-content p {
    font-size: 13px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
}
.gg-program-view {
    font-size: 14px !important;
}

/* ALL text + arrow actions use the same GemGenève gold. */
.gg-link,
.gg-program-view,
.gg-news-read,
.gg-news-row-read,
.gg-exhibitor-back,
.gg-news-nav-direction {
    color: #d6b45f !important;
}
.gg-link:hover,
.gg-link:focus-visible,
.gg-program-view:hover,
.gg-program-view:focus-visible,
.gg-news-read:hover,
.gg-news-read:focus-visible,
.gg-news-row-read:hover,
.gg-news-row-read:focus-visible,
.gg-exhibitor-back:hover,
.gg-exhibitor-back:focus-visible,
.gg-news-nav-direction:hover,
.gg-news-nav-direction:focus-visible {
    color: #bd9748 !important;
}

/* CONTACT — explicitly restore the enquiry texts/emails; no hiding/opacity side effects. */
.gg-contact-intro,
.gg-contact-intro-block,
.gg-contact-intro-block h2,
.gg-contact-email {
    visibility: visible !important;
    opacity: 1 !important;
}
.gg-contact-intro-block { display: block !important; }
.gg-contact-intro-block h2 {
    display: block !important;
    color: #333349 !important;
}
.gg-contact-email {
    display: inline-block !important;
    color: #d6b45f !important;
}

/* EXHIBITOR DETAIL — presentation text must always remain visible. */
.gg-exhibitor-about,
.gg-exhibitor-about h2,
.gg-exhibitor-about-content,
.gg-exhibitor-about-content p,
.gg-exhibitor-about-content > * {
    visibility: visible !important;
    opacity: 1 !important;
}
.gg-exhibitor-about { display: block !important; }
.gg-exhibitor-about h2,
.gg-exhibitor-about-content,
.gg-exhibitor-about-content p,
.gg-exhibitor-about-content > * {
    color: #292a3d !important;
}

@media (max-width: 900px) {
    .gg-program-event {
        grid-template-columns: 92px 240px minmax(0,1fr) !important;
        gap: 16px !important;
        min-height: 120px !important;
    }
    .gg-program-event-image {
        width: 240px !important;
        height: 96px !important;
    }
    .gg-program-event-content h3 { font-size: 21px !important; }
}
@media (max-width: 700px) {
    .gg-program-event {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 20px 0 !important;
    }
    .gg-program-event-time { padding-top: 0 !important; }
    .gg-program-event-image {
        width: 100% !important;
        height: 220px !important;
    }
}

/* ============================================================
   V12 — CONTENT VISIBILITY FIX ONLY
   Contact enquiry emails + Exhibitor About fallback.
   ============================================================ */
.gg-contact-intro-block .gg-contact-email {
    display:inline-block !important;
    visibility:visible !important;
    opacity:1 !important;
    color:#d6b45f !important;
    text-decoration:none !important;
    font:600 15px/1.25 'SF Pro Text',Arial,sans-serif !important;
    position:relative !important;
    z-index:2 !important;
}
.gg-contact-intro-block .gg-contact-email:hover,
.gg-contact-intro-block .gg-contact-email:focus-visible { color:#bd9748 !important; }
.gg-exhibitor-about-content:empty { display:none !important; }

/* ============================================================
   V13 — EXHIBITORS HERO SQUARE CORNERS
   Remove any inherited rounding from the archive hero.
   ============================================================ */
.post-type-archive-exhibitor .gg-exhibitors-hero,
.post-type-archive-exhibitor .gg-exhibitors-hero-overlay,
.post-type-archive-exhibitor .gg-exhibitors-hero::before,
.post-type-archive-exhibitor .gg-exhibitors-hero::after {
    border-radius: 0 !important;
}

/* ============================================================
   V14 — EXHIBITORS HERO: ABSOLUTELY SQUARE CORNERS
   Force-remove rounding from the complete archive stack, including
   legacy .site-main rules that can visually round the hero container.
   ============================================================ */
body.post-type-archive-exhibitor .gg-page,
body.post-type-archive-exhibitor #primary,
body.post-type-archive-exhibitor .site-main,
body.post-type-archive-exhibitor .gg-exhibitors-page,
body.post-type-archive-exhibitor .gg-exhibitors-hero,
body.post-type-archive-exhibitor .gg-exhibitors-hero-overlay,
body.post-type-archive-exhibitor .gg-exhibitors-hero::before,
body.post-type-archive-exhibitor .gg-exhibitors-hero::after {
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    clip-path: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
}
body.post-type-archive-exhibitor #primary.site-main,
body.post-type-archive-exhibitor .site-main.gg-exhibitors-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
    overflow: visible !important;
}
body.post-type-archive-exhibitor .gg-exhibitors-hero {
    overflow: hidden !important;
}

/* ============================================================
   v16 — FOOTER TYPOGRAPHY LOCK
   Keep the exact Home footer typography on every inner page.
   The legacy stylesheet defines global heading fonts; these rules
   intentionally neutralise those overrides inside .gg-footer only.
   ============================================================ */
.gg-footer,
.gg-footer p,
.gg-footer a,
.gg-footer li,
.gg-footer span,
.gg-footer h3,
.gg-footer .gg-menu a,
.gg-footer-bottom,
.gg-footer-bottom a {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
}
.gg-footer h3 {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: inherit !important;
    margin: 0 0 34px !important;
}
.gg-footer-brand p {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    letter-spacing: normal !important;
    margin: 17px 0 0 !important;
}
.gg-footer .gg-menu a {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
}
.gg-footer-bottom,
.gg-footer-bottom p,
.gg-footer-bottom a {
    font-size: 9px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}
