/* =========================================
   HEADER
   ========================================= */
.clj-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(13,31,60,0.3);
}

.clj-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.clj-logo-img {
  height: 40px;
  width: auto;
}
.clj-logo-icon {
  font-size: 22px;
  line-height: 1;
}
.clj-logo-text {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.clj-logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-sans);
  color: #8FA8C8;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.clj-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.clj-nav a {
  color: #8FA8C8;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.clj-nav a:hover,
.clj-nav a.current-menu-item {
  color: var(--gold-light);
}
.clj-nav .btn-newsletter {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px !important;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}
.clj-nav .btn-newsletter:hover {
  background: var(--gold-light);
}

/* Hamburger mobile */
.clj-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

/* =========================================
   BOUTONS
   ========================================= */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.btn-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  font-family: var(--font-sans);
}
.btn-link:hover {
  gap: 10px;
  color: var(--gold-light);
}

/* =========================================
   SECTION LABELS
   ========================================= */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.7;
}

/* =========================================
   CARTE ARTICLE
   ========================================= */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.article-card .art-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}
.article-card .art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card .art-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card .art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.art-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,146,10,0.1);
  padding: 3px 9px;
  border-radius: 99px;
  font-family: var(--font-sans);
  text-decoration: none;
}
.art-time {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.art-date {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.article-card .art-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}
.article-card .art-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.article-card .art-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-family: var(--font-sans);
}

/* =========================================
   CARTE GUIDE
   ========================================= */
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-sans);
  width: fit-content;
}
.guide-badge.available {
  background: rgba(200,146,10,0.1);
  border: 1px solid rgba(200,146,10,0.3);
  color: var(--gold);
}
.guide-badge.coming {
  background: rgba(200,146,10,0.08);
  border: 1px solid rgba(200,146,10,0.2);
  color: var(--text-muted);
}
.guide-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.guide-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}
.guide-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 300;
}
.guide-benefits li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.guide-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.guide-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.guide-price-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}
.btn-payhip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.btn-payhip:hover {
  background: var(--gold-light);
  color: var(--navy);
}
.guide-download-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* =========================================
   MENTION DÉONTOLOGIQUE
   ========================================= */
.deonto-banner {
  background: var(--light-blue);
  border-top: 2px solid var(--border);
  padding: 20px var(--space-lg);
}
.deonto-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.deonto-inner p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
.deonto-inner strong {
  color: var(--text-dark);
  font-weight: 700;
}
.deonto-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =========================================
   BANDEAU COOKIES
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  width: min(560px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  flex: 1;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--navy-mid); }
.btn-cookie-refuse {
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-cookie-refuse:hover {
  border-color: var(--text-muted);
  color: var(--text-dark);
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px var(--space-lg);
}
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  font-family: var(--font-sans);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* =========================================
   SIDEBAR GÉNÉRIQUE
   ========================================= */
.clj-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.sidebar-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-nl {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 22px;
}
.sidebar-nl-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sidebar-nl-sub {
  color: #8FA8C8;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.5;
}
.sidebar-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  padding: 9px 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--white);
  outline: none;
  margin-bottom: 8px;
  display: block;
  transition: border-color 0.2s;
}
.sidebar-input::placeholder { color: #6B8AAA; }
.sidebar-input:focus { border-color: var(--gold); }
.btn-sidebar {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-sidebar:hover { background: var(--gold-light); }
.sidebar-consent {
  font-size: 11px;
  color: #5A7A9A;
  margin-top: 8px;
  line-height: 1.5;
}

/* Catégories sidebar */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cat-item:hover,
.cat-item.active { background: var(--light-blue); }
.cat-name {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
}
.cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.cat-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.cat-count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--light-blue);
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 700;
  font-family: var(--font-sans);
}

/* Articles populaires sidebar */
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
}
.popular-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
}
.popular-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 3px;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.popular-item:hover .popular-title { color: var(--gold); }
.popular-meta {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* Sommaire article */
.toc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.toc-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  display: block;
  line-height: 1.4;
  border-left: 2px solid transparent;
  transition: all 0.15s;
  font-family: var(--font-sans);
}
.toc-link:hover,
.toc-link.active {
  background: var(--light-blue);
  color: var(--navy);
  border-left-color: var(--gold);
  font-weight: 700;
}
.toc-sub .toc-link {
  font-size: 12px;
  padding-left: 20px;
}

/* Partage */
.sidebar-share {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.share-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.share-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.share-btn {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 7px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Recherche */
.search-wrap { display: flex; gap: 8px; }
.search-input {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--text-muted); }
.btn-search {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-sans);
}
.btn-search:hover { background: var(--navy-mid); }

/* =========================================
   CORPS ARTICLE
   ========================================= */
.article-body {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.85;
  font-weight: 300;
  font-family: var(--font-sans);
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
  line-height: 1.3;
}
.article-body p { margin-bottom: 18px; }
.article-body strong { font-weight: 700; color: var(--navy); }
.article-body a { color: var(--gold); text-decoration: underline; }
.article-body a:hover { color: var(--gold-light); }

.article-body ul {
  list-style: none;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.article-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.article-body ol {
  list-style: none;
  margin: 0 0 18px;
  counter-reset: ol;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  counter-increment: ol;
}
.article-body ol li::before {
  content: counter(ol);
  min-width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-sans);
}

.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* Blocs spéciaux */
.def-block {
  background: var(--light-blue);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.def-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}
.def-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.def-text {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
}

.warning-block {
  background: #FFF8E7;
  border: 1px solid rgba(200,146,10,0.25);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.warning-block .warning-icon { font-size: 18px; flex-shrink: 0; }
.warning-text {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
  font-family: var(--font-sans);
}
.warning-text strong { color: var(--navy); font-weight: 700; }

.inline-nl {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.inline-nl-text { flex: 1; }
.inline-nl-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}
.inline-nl-sub {
  color: #8FA8C8;
  font-size: 13px;
  font-weight: 300;
  font-family: var(--font-sans);
}
.btn-inline {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-inline:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.deonto-end {
  background: var(--light-blue);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 36px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  font-family: var(--font-sans);
}
.deonto-end strong { color: var(--text-dark); font-weight: 700; }

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.tags-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-sans);
}
.wp-tag {
  background: var(--light-blue);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.15s;
}
.wp-tag:hover { background: var(--border); color: var(--navy); }

/* =========================================
   FOOTER
   ========================================= */
.clj-footer {
  background: var(--navy);
  padding: 48px var(--space-lg) 28px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline {
  color: #6B7A8D;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 12px;
  font-family: var(--font-sans);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #7A93AD;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  color: #4A6080;
  font-size: 12px;
  font-weight: 300;
  font-family: var(--font-sans);
}
.footer-deonto {
  color: #4A6080;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
  font-family: var(--font-sans);
}

/* =========================================
   PAGINATION
   ========================================= */
.clj-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active,
.page-btn.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.page-btn.arrow { font-size: 16px; }
.page-ellipsis { color: var(--text-muted); font-size: 13px; padding: 0 4px; }

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  padding: 24px var(--space-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-nav a {
  color: #8FA8C8;
  text-decoration: none;
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 300;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu-nav a:hover { color: var(--white); }
.mobile-menu-nav .btn-newsletter {
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px !important;
  text-align: center;
  display: block;
  border-bottom: none;
}
