/* ================================================
   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
   ================================================ */
