/* =====================================================================
   PICKLEBALLREVUE — Ghost theme v1.0
   Editorial magazine — light mode hybrid, palette Roland-Garros
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand (lifted from logo) */
  --orange:      #D9461E;
  --orange-dark: #B73816;
  --orange-soft: #FBE5DC;
  --green:       #0F4D2A;
  --green-dark:  #0A3A1F;
  --green-soft:  #E5EFE9;

  /* Editorial neutrals */
  --ink:    #111111;
  --char:   #1A1A1A;
  --gray:   #4A4A4A;
  --stone:  #6F6F6F;
  --mist:   #A8A8A8;
  --fog:    #E5E5E5;
  --paper:  #FAFAF7;
  --cream:  #F4F1EA;
  --white:  #FFFFFF;

  /* Type stacks */
  --ff-display: 'Anton', 'Oswald', 'Impact', sans-serif;
  --ff-cond:    'Barlow Condensed', 'Oswald', sans-serif;
  --ff-body:    'Barlow', 'Inter', system-ui, sans-serif;
  --ff-serif:   'Playfair Display', Georgia, serif;

  /* Article-specific stacks (style The Dink) */
  --ff-article-heading: 'Inter', system-ui, sans-serif;
  --ff-article-body:    'Source Serif Pro', 'Playfair Display', Georgia, serif;

  /* Ghost custom font hooks (required by GScan v5) */
  --gh-font-heading: var(--ff-serif);
  --gh-font-body:    var(--ff-body);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.topbar a:hover { color: var(--orange); }
.topbar .sep { opacity: .4; margin: 0 14px; }

/* ---------- HEADER (logo centré) ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--fog);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}
.site-header__date {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--stone);
  justify-self: start;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: center;
}
.site-header__logo img {
  height: 56px;
  width: auto;
}
.site-header__logo-fallback {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header__logo-fallback .ball {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}
.site-header__logo-fallback .ball::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  top: 13px; left: 50%; transform: translateX(-50%);
  box-shadow:
    -13px 5px 0 var(--white),
     13px 5px 0 var(--white),
    -16px 18px 0 var(--white),
     16px 18px 0 var(--white),
      0   18px 0 var(--white),
    -13px 31px 0 var(--white),
     13px 31px 0 var(--white);
}
.site-header__logo-text {
  font-family: var(--ff-serif);
  line-height: 1;
}
.site-header__logo-text .name {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
}
.site-header__logo-text .tag {
  display: block;
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.5em;
  margin-top: 5px;
  padding-left: 2px;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.header-pill {
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
  padding: 9px 14px;
  border: 1px solid var(--ink);
  transition: all .2s;
}
.header-pill:hover {
  background: var(--ink);
  color: var(--white);
}
.header-pill.cta {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.header-pill.cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* ---------- NAV (pavés style The Dink) ---------- */
.site-nav {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 1px solid var(--char);
}
.site-nav__inner {
  display: flex;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}
.site-nav__list,
.site-nav .nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__item,
.site-nav .nav li { position: relative; }
.site-nav__item:not(:last-child)::after,
.site-nav .nav li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 18px; bottom: 18px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.site-nav__link,
.site-nav .nav li a {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  transition: background .15s ease, color .15s ease;
  height: 100%;
  text-decoration: none;
}
.site-nav__link:hover,
.site-nav__link.active,
.site-nav__link[aria-current="page"],
.site-nav .nav li a:hover,
.site-nav .nav li.nav-current a,
.site-nav .nav li a[aria-current="page"] {
  background: var(--orange);
  color: var(--white);
}
.site-nav__search {
  display: grid;
  place-items: center;
  width: 56px;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: background .15s, color .15s;
}
.site-nav__search:hover { background: var(--orange); }

/* ---------- TICKER (label détaché) ---------- */
.ticker {
  display: flex;
  align-items: stretch;
  background: var(--orange);
  color: var(--white);
  border-bottom: 3px solid var(--green);
  overflow: hidden;
}
.ticker__label {
  flex-shrink: 0;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.ticker__label::after {
  content: '';
  position: absolute;
  right: -10px; top: 0; bottom: 0;
  width: 10px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.ticker__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 16px;
}
.ticker__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 11px 0;
  animation: ticker 60s linear infinite;
}
.ticker__item {
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 28px;
  position: relative;
}
.ticker__item::after {
  content: '◆';
  position: absolute;
  right: -4px;
  opacity: .55;
  font-size: 9px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  border-bottom: 1px solid var(--fog);
  min-height: 580px;
}
.hero-main {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--fog);
  background: var(--ink);
}
.hero-main a { display: block; height: 100%; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 6s ease;
}
.hero-main:hover .hero-img { transform: scale(1.04); }
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 760px;
  color: var(--white);
}
.hero-title a { color: var(--white); }
.hero-title a:hover { color: var(--orange); }
.hero-excerpt {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 22px;
}
.hero-meta {
  font-family: var(--ff-cond);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta strong { color: var(--orange); font-weight: 700; }
.hero-meta .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; }

.hero-sidebar {
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.hero-side-item {
  flex: 1;
  padding: 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .2s;
  border-bottom: 1px solid var(--fog);
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { background: var(--cream); }
.hero-side-item:hover .side-num { color: var(--orange); }
.side-num {
  font-family: var(--ff-display);
  font-size: 70px;
  line-height: 1;
  color: var(--fog);
  position: absolute;
  top: 14px;
  right: 22px;
  transition: color .2s;
  z-index: 0;
}
.side-tag {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.side-title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative; z-index: 1;
}
.side-title a:hover { color: var(--orange); }
.side-meta {
  font-family: var(--ff-cond);
  font-size: 12px;
  color: var(--stone);
  margin-top: 10px;
  letter-spacing: 0.04em;
  position: relative; z-index: 1;
}

/* ---------- SECTION COMMON ---------- */
.section { padding: 64px 32px; }
.section.alt { background: var(--white); }
.section.cream { background: var(--cream); }

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
}
.section-title .accent { color: var(--orange); }
.section-line {
  flex: 1;
  height: 1px;
  background: var(--fog);
}
.section-link {
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.section-link:hover { border-color: var(--orange); color: var(--orange); }

.grid-wrap { max-width: 1440px; margin: 0 auto; }

/* ---------- POST CARD (4-col grid + featured strip) ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--fog);
  border: 1px solid var(--fog);
}
.article-card {
  background: var(--white);
  transition: background .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { background: var(--paper); }
.article-card:hover .card-title { color: var(--orange); }
.card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  display: block;
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.article-card:hover .card-thumb img { transform: scale(1.05); }
.card-thumb-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: grid;
  place-items: center;
  color: var(--orange);
}
.card-thumb-fallback svg { width: 48px; height: 48px; }
.card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: inline-block;
}
.card-title {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color .2s;
}
.card-title a { color: inherit; }
.card-excerpt {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
}
.card-meta .dot { width: 3px; height: 3px; background: var(--mist); border-radius: 50%; flex-shrink: 0; }

/* Featured strip */
.featured-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  background: var(--fog);
  border: 1px solid var(--fog);
}
.featured-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  transition: background .2s;
}
.featured-wide:hover { background: var(--paper); }
.featured-wide:hover .card-title { color: var(--orange); }
.featured-wide .card-thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}
.featured-wide .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}
.featured-wide .card-tag { font-size: 12px; }
.featured-wide .card-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.featured-wide .card-excerpt {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  -webkit-line-clamp: 4;
  margin-bottom: 18px;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--green);
  color: var(--white);
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.newsletter-kicker {
  display: inline-block;
  background: var(--orange);
  padding: 6px 12px;
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.newsletter-headline {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
}
.newsletter-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 16px;
  opacity: 0.85;
  max-width: 480px;
}
.newsletter-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  font-family: var(--ff-cond);
}
.newsletter-stats div {
  border-left: 2px solid var(--orange);
  padding-left: 14px;
}
.newsletter-stats strong {
  display: block;
  font-size: 28px;
  font-family: var(--ff-display);
  color: var(--orange);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.newsletter-stats span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 16px 20px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}
.newsletter-btn {
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  padding: 16px 20px;
  transition: background .2s;
  text-transform: uppercase;
  font-weight: 400;
}
.newsletter-btn:hover { background: var(--orange-dark); }
.newsletter-note {
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}

/* ---------- CLASSEMENTS ---------- */
.rankings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--fog);
  border: 1px solid var(--fog);
  max-width: 1440px;
  margin: 0 auto;
}
.ranking-col {
  background: var(--white);
  padding: 40px 32px;
}
.ranking-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ranking-col-title {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}
.ranking-col-tag {
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ranking-title {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
}
.ranking-badge {
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.18em;
}
.ranking-row {
  display: grid;
  grid-template-columns: 36px 48px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--fog);
}
.ranking-row:last-child { border-bottom: none; }
.ranking-row.podium-1 {
  background: linear-gradient(to right, var(--orange-soft), transparent);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}
.rank-num {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 400;
}
.ranking-row.podium-1 .rank-num { color: var(--orange); }
.ranking-row.podium-2 .rank-num,
.ranking-row.podium-3 .rank-num { color: var(--green); }
.rank-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.rank-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.rank-detail {
  font-family: var(--ff-cond);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.rank-meta {
  display: block;
  font-family: var(--ff-cond);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}
.rank-score {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.03em;
  font-weight: 400;
}
.rank-points {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}
.rank-change {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  min-width: 38px;
  text-align: right;
}
.rank-change.up   { color: var(--green); }
.rank-change.down { color: var(--orange-dark); }
.rank-change.same { color: var(--mist); }
.rank-trend {
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  min-width: 38px;
  text-align: right;
  white-space: nowrap;
}
.rank-trend.trend-up   { color: var(--green); }
.rank-trend.trend-down { color: var(--orange-dark); }
.rank-trend.trend-flat { color: var(--mist); }

/* Francophone highlight on rankings */
.ranking-row.francophone {
  background: linear-gradient(to right, rgba(15, 77, 42, 0.08), transparent 70%);
  border-left: 3px solid var(--green);
  margin: 0 -16px;
  padding-left: 13px;
  padding-right: 16px;
}
.rank-avatar.fr {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 2px var(--orange) inset;
}

.ranking-update-note {
  max-width: 1440px;
  margin: 14px auto 0;
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
}
.ranking-update-note a { color: var(--green); border-bottom: 1px solid var(--green); padding-bottom: 1px; }
.ranking-update-note a:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- VIE DE PRO (cartes portrait, typo corrigée v4) ---------- */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
}
.pro-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  display: block;
}
.pro-card .img-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pro-card:hover .img-bg { transform: scale(1.05); }
.pro-card-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.pro-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.pro-tag {
  align-self: flex-start;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.pro-title {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  color: var(--white);
}
.pro-title em { font-style: italic; font-weight: 700; }
.pro-meta {
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- TESTS MATÉRIEL — fiche technique ---------- */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.gear-card {
  background: var(--white);
  border: 1px solid var(--fog);
  position: relative;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.gear-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.gear-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  text-transform: uppercase;
  z-index: 2;
}
.gear-badge.hot { background: var(--orange); }
.gear-img {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.gear-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gear-card:hover .gear-img img { transform: scale(1.05); }
.gear-img-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 64px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.gear-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gear-brand {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.gear-name {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.gear-name a:hover { color: var(--orange); }
.gear-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}
.gear-stars { font-size: 14px; letter-spacing: 2px; }
.gear-stars .star { color: var(--orange); }
.gear-stars .star.empty { color: var(--fog); }
.gear-rating-num {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.gear-rating-num small {
  font-family: var(--ff-cond);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.06em;
  font-weight: 700;
}
.gear-spec {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--fog);
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gear-spec-label { color: var(--stone); font-weight: 600; }
.gear-spec-bar {
  height: 4px;
  background: var(--fog);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.gear-spec-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  background: var(--orange);
  transform-origin: left;
}
.gear-spec-value { color: var(--ink); font-weight: 700; }
.gear-bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--fog);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.gear-price {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--green);
  font-weight: 400;
}
.gear-cta {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

/* ---------- AMÉLIOREZ VOTRE JEU (overlay orange) ---------- */
.improve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.improve-card {
  position: relative;
  overflow: visible;
  display: block;
}
.improve-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.improve-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.improve-card:hover .improve-img img { transform: scale(1.04); }
.improve-img-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.improve-img .video-icon {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid var(--white);
  display: grid;
  place-items: center;
  color: var(--white);
  z-index: 2;
}
.improve-overlay {
  background: var(--orange);
  color: var(--white);
  padding: 18px 22px 22px;
  margin: -36px 14px 0;
  position: relative;
  z-index: 3;
  transition: background .2s;
}
.improve-card:hover .improve-overlay { background: var(--orange-dark); }
.improve-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 12px;
}
.improve-title {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.improve-meta {
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ---------- VIDÉOS (carrousel sombre + flèches orange) ---------- */
.videos-section {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0;
  position: relative;
}
.videos-section .section-header { padding: 0 88px; }
.videos-section .section-title { color: var(--white); }
.videos-section .section-line { background: rgba(255,255,255,0.15); }
.videos-section .section-link { color: var(--white); }
.videos-section .section-link:hover { color: var(--orange); border-color: var(--orange); }
.videos-carousel {
  position: relative;
  padding: 0 88px;
  max-width: 1600px;
  margin: 0 auto;
}
.videos-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.video-card {
  background: var(--char);
  transition: background .2s;
  display: block;
}
.video-card:hover { background: #222; }
.video-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.video-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--char) 0%, #222 100%);
}
.video-thumb .play-icon {
  position: absolute;
  bottom: 16px; left: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1.5px solid var(--white);
  display: grid;
  place-items: center;
  color: var(--white);
  z-index: 2;
  transition: background .2s, border-color .2s;
}
.video-card:hover .video-thumb .play-icon {
  background: var(--orange);
  border-color: var(--orange);
}
.video-thumb .duration-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  z-index: 2;
}
.video-body { padding: 22px 24px 24px; }
.video-tag {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.video-title {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  transition: color .2s;
}
.video-card:hover .video-title { color: var(--orange); }
.video-meta {
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.videos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 5;
}
.videos-arrow:hover { background: var(--orange-dark); }
.videos-arrow.prev { left: 16px; }
.videos-arrow.next { right: 16px; }

/* ---------- DERNIERS ARTICLES (rétention) ---------- */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--fog);
  border: 1px solid var(--fog);
}
.latest-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  transition: background .2s;
  align-items: start;
}
.latest-row:hover { background: var(--paper); }
.latest-row:hover .latest-title { color: var(--orange); }
.latest-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.latest-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.latest-row:hover .latest-thumb img { transform: scale(1.06); }
.latest-thumb-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
}
.latest-thumb .play-mini {
  position: absolute;
  bottom: 8px; left: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid var(--white);
  display: grid;
  place-items: center;
  color: var(--white);
  z-index: 2;
}
.latest-content {
  min-width: 0;
  padding-top: 4px;
}
.latest-tag {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}
.latest-title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  transition: color .2s;
}
.latest-meta {
  font-family: var(--ff-cond);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.latest-meta .dot { width: 3px; height: 3px; background: var(--mist); border-radius: 50%; flex-shrink: 0; }
.latest-cta-row {
  max-width: 1440px;
  margin: 32px auto 0;
  text-align: center;
}
.latest-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background .2s;
}
.latest-cta:hover { background: var(--orange); color: var(--white); }

/* ---------- POST PAGE ---------- */
.post-full { padding-block: clamp(2rem, 4vw, 3.5rem); }
.post-header {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 0 32px;
}
.post-header__kicker {
  font-family: var(--ff-article-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.post-header__title {
  font-family: var(--ff-article-heading);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.post-header__excerpt {
  font-family: var(--ff-article-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--gray);
  margin-bottom: 1.75rem;
  max-width: 680px;
  margin-inline: auto;
}
.post-header__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--ff-article-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.02em;
}
.post-header__meta-author { font-weight: 700; color: var(--ink); }
.post-header__meta-author a:hover { color: var(--orange); }
.post-header__meta .dot { width: 4px; height: 4px; background: var(--mist); border-radius: 50%; }

.post-feature-image {
  margin: 0 auto 3rem;
  max-width: 1380px;
  padding: 0 32px;
}
.post-feature-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}
.post-feature-image figcaption {
  font-family: var(--ff-article-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  margin-top: 12px;
  letter-spacing: 0;
  font-style: italic;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--ff-article-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  padding: 0 32px;
}
.post-content p { margin-block: 0 1.5em; }
.post-content h2 {
  font-family: var(--ff-article-heading);
  font-size: 28px;
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.post-content h3 {
  font-family: var(--ff-article-heading);
  font-size: 22px;
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.post-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--orange);
  transition: color .2s, background .2s;
}
.post-content a:hover { color: var(--orange); background: var(--orange-soft); }
.post-content blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  font-family: var(--ff-article-body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
}
.post-content ul, .post-content ol { margin: 0 0 1.5em 1.5em; }
.post-content ul { list-style: none; }
.post-content ul > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.post-content ul > li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 0.65em;
}
.post-content ol > li { margin-bottom: 0.5em; padding-left: 0.5em; }
.post-content figure { margin: 2em 0; }
.post-content figcaption {
  font-family: var(--ff-article-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0;
  font-style: italic;
}
.post-content hr {
  border: none;
  border-top: 1px solid var(--fog);
  margin: 3em auto;
  width: 80px;
}

.post-footer {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2.5rem 32px 0;
  border-top: 1px solid var(--fog);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.post-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--cream);
  font-family: var(--ff-article-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
}
.post-tag:hover { background: var(--orange); color: var(--white); }

.post-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2rem 0;
}
.post-share__label {
  font-family: var(--ff-article-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--stone);
  text-transform: uppercase;
}
.post-share__buttons { display: flex; gap: 8px; }
.post-share__btn {
  width: 38px; height: 38px;
  border: 1px solid var(--fog);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.post-share__btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.post-author-bio {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
}
.post-author-bio__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--fog);
}
.post-author-bio__name {
  font-family: var(--ff-article-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.post-author-bio__name a:hover { color: var(--orange); }
.post-author-bio__role {
  font-family: var(--ff-article-heading);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.post-author-bio__desc {
  font-family: var(--ff-article-body);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  transition: transform 60ms linear;
}

/* ---------- TAXONOMY HEADER (tag/author archive) ---------- */
.taxonomy-header {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.taxonomy-header__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 0);
  background-size: 32px 32px;
}
.taxonomy-header__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.taxonomy-header__kicker {
  display: inline-block;
  background: var(--orange);
  padding: 6px 12px;
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.taxonomy-header__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}
.taxonomy-header__desc {
  font-family: var(--ff-serif);
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}
.taxonomy-header__avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  margin: 0 auto 16px;
}

/* ---------- PAGINATION ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-block: 3rem;
  margin-top: 2rem;
  border-top: 1px solid var(--fog);
}
.pagination__link {
  padding: 12px 22px;
  border: 1px solid var(--ink);
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--ink);
  transition: background .2s, color .2s;
}
.pagination__link:hover { background: var(--ink); color: var(--white); }
.pagination__info {
  font-family: var(--ff-cond);
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 64px 32px 28px;
  border-top: 4px solid var(--orange);
}
.site-footer__top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-footer__brand-logo img { height: 56px; width: auto; }
.site-footer__brand-fallback {
  display: flex; align-items: center; gap: 14px;
}
.site-footer__brand-fallback .ball {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}
.site-footer__brand-fallback .ball::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  top: 13px; left: 50%; transform: translateX(-50%);
  box-shadow:
    -13px 5px 0 var(--white),
     13px 5px 0 var(--white),
    -16px 18px 0 var(--white),
     16px 18px 0 var(--white),
      0   18px 0 var(--white),
    -13px 31px 0 var(--white),
     13px 31px 0 var(--white);
}
.site-footer__brand-name {
  display: block;
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.site-footer__brand-tag {
  display: block;
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.5em;
  margin-top: 5px;
}
.site-footer__tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  margin: 22px 0 26px;
  line-height: 1.5;
}
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all .2s;
}
.site-footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.site-footer__col-title {
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.site-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__col-list a {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.site-footer__col-list a:hover { color: var(--orange); }
.site-footer__bottom {
  max-width: 1440px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-cond);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom a:hover { color: var(--orange); }
.site-footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- ERROR PAGE ---------- */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 32px;
}
.error-page__code {
  font-family: var(--ff-display);
  font-size: clamp(96px, 16vw, 192px);
  font-weight: 400;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.error-page__title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 1rem;
}
.error-page__btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.error-page__btn:hover { background: var(--orange); color: var(--white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .site-header__date { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__actions { grid-column: 2; }
  .site-header__logo { grid-column: 1; justify-self: start; }
  .hero { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-wide { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-grid { grid-template-columns: 1fr; }
  .rankings-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .improve-grid { grid-template-columns: 1fr; }
  .videos-track { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }
  .videos-section .section-header,
  .videos-carousel { padding-left: 64px; padding-right: 64px; }
  .videos-arrow { width: 44px; height: 44px; }
  .videos-arrow.prev { left: 8px; }
  .videos-arrow.next { right: 8px; }
}

@media (max-width: 640px) {
  .topbar { font-size: 11px; padding: 7px 12px; }
  .site-header__inner { padding: 16px; }
  .site-header__logo img { height: 44px; }
  .site-header__logo-fallback .ball { width: 44px; height: 44px; }
  .site-header__logo-text .name { font-size: 22px; }
  .site-header__actions .header-pill:not(.cta) { display: none; }
  .site-nav__list,
  .site-nav .nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .site-nav__list::-webkit-scrollbar,
  .site-nav .nav::-webkit-scrollbar { display: none; }
  .site-nav__link,
  .site-nav .nav li a { padding: 14px 16px; font-size: 12px; letter-spacing: 0.12em; white-space: nowrap; }
  .ticker__label { padding: 0 14px; font-size: 11px; letter-spacing: 0.18em; }
  .section { padding: 40px 16px; }
  .section-header { gap: 12px; margin-bottom: 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-content { padding: 28px; }
  .ranking-row { grid-template-columns: 28px 38px 1fr auto auto; gap: 8px; }
  .ranking-col { padding: 28px 20px; }
  .videos-section .section-header,
  .videos-carousel { padding-left: 16px; padding-right: 16px; }
  .videos-arrow { display: none; }
  .improve-overlay { margin: -28px 8px 0; padding: 16px 18px 18px; }
  .latest-row { grid-template-columns: 110px 1fr; gap: 14px; padding: 16px; }
  .post-content { font-size: 17px; padding: 0 20px; }
  .post-content > p:first-of-type::first-letter { font-size: 3.5rem; }
}

/* =====================================================================
   KOENIG EDITOR — required CSS classes (GScan v5)
   ===================================================================== */
.kg-width-wide,
.kg-width-wide figure {
  position: relative;
  width: min(85vw, 1200px);
  margin-inline: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: 85vw;
}
.kg-width-full,
.kg-width-full figure {
  position: relative;
  width: 100vw;
  margin-inline: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: 100vw;
}
.kg-width-full img { width: 100%; max-width: 100%; }

.kg-image-card { margin: 2em 0; }
.kg-gallery-container { display: flex; flex-direction: column; margin: 2em 0; max-width: 1040px; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; }
.kg-gallery-image img { display: block; margin: 0; width: 100%; height: 100%; }
.kg-gallery-row:not(:first-of-type) { margin: 0.75em 0 0; }
.kg-gallery-image:not(:first-of-type) { margin: 0 0 0 0.75em; }

.kg-bookmark-card a.kg-bookmark-container,
.kg-bookmark-card a.kg-bookmark-container:hover {
  display: flex;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--fog);
  text-decoration: none;
  min-height: 148px;
  overflow: hidden;
  transition: border-color .2s;
}
.kg-bookmark-card a.kg-bookmark-container:hover { border-color: var(--orange); }
.kg-bookmark-content { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.kg-bookmark-title { font-family: var(--ff-serif); font-size: 17px; font-weight: 700; color: var(--ink); }
.kg-bookmark-description { font-family: var(--ff-body); font-size: 14px; color: var(--gray); margin-top: 8px; }
.kg-bookmark-metadata { display: flex; align-items: center; margin-top: 12px; font-size: 13px; color: var(--stone); }
.kg-bookmark-icon { width: 20px; height: 20px; margin-right: 6px; }
.kg-bookmark-thumbnail { flex: 0 0 33%; position: relative; min-width: 33%; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.kg-embed-card { display: flex; flex-direction: column; align-items: center; margin: 2em 0; min-width: 100%; }
.kg-video-card, .kg-audio-card { margin: 2em 0; }

.kg-callout-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 2em 0;
  padding: 20px 24px;
}
.kg-callout-emoji { font-size: 20px; flex-shrink: 0; }
.kg-callout-text { font-family: var(--ff-serif); font-size: 16px; line-height: 1.55; }
.kg-callout-card-grey   { background: var(--cream); color: var(--ink); }
.kg-callout-card-white  { background: var(--white); color: var(--ink); border: 1px solid var(--fog); }
.kg-callout-card-blue   { background: #E7F0F8; color: #1B4671; }
.kg-callout-card-green  { background: var(--green-soft); color: var(--green-dark); }
.kg-callout-card-yellow { background: #FFF4D6; color: #8A5A00; }
.kg-callout-card-red    { background: #FBE5DC; color: var(--orange-dark); }
.kg-callout-card-pink   { background: #FCE4EC; color: #AD1457; }
.kg-callout-card-purple { background: #F0E6FA; color: #5E35B1; }
.kg-callout-card-accent { background: var(--orange); color: var(--white); }

.kg-toggle-card {
  margin: 2em 0;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--fog);
}
.kg-toggle-heading { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.kg-toggle-heading-text { font-family: var(--ff-serif); font-size: 18px; font-weight: 700; }
.kg-toggle-card-icon { width: 20px; height: 20px; transition: transform .2s; }
.kg-toggle-card[data-kg-toggle-state="open"] .kg-toggle-card-icon { transform: rotate(180deg); }
.kg-toggle-content { margin-top: 1rem; font-family: var(--ff-serif); color: var(--gray); }

.kg-header-card {
  margin: 2em 0;
  padding: 4rem 2rem;
  background: var(--green);
  color: var(--white);
  text-align: center;
}
.kg-header-card.kg-style-dark { background: var(--ink); }
.kg-header-card.kg-style-light { background: var(--cream); color: var(--ink); }

.kg-button-card { display: flex; margin: 2em 0; }
.kg-button-card.kg-align-center { justify-content: center; }
.kg-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.kg-btn:hover { background: var(--orange-dark); color: var(--white); }
.kg-btn-accent { background: var(--orange); color: var(--white); }

.kg-product-card {
  margin: 2em 0;
  padding: 20px;
  border: 1px solid var(--fog);
  background: var(--white);
}
.kg-product-card-container { display: flex; flex-direction: column; gap: 16px; }
.kg-product-card-image { width: 80px; height: 80px; object-fit: cover; }
.kg-product-card-title { font-family: var(--ff-serif); font-size: 20px; font-weight: 700; }
.kg-product-card-rating-active { color: var(--orange); }
.kg-product-card-button { display: inline-block; padding: 10px 20px; background: var(--orange); color: var(--white); font-weight: 700; }

.kg-audio-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--fog);
  background: var(--paper);
}
.kg-audio-thumbnail { width: 80px; height: 80px; }
.kg-audio-title { font-family: var(--ff-serif); font-weight: 700; margin: 0 0 4px; }

.kg-file-card {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 2em 0;
  padding: 16px 20px;
  border: 1px solid var(--fog);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s;
}
.kg-file-card:hover { border-color: var(--orange); color: var(--ink); }
.kg-file-card-title { font-family: var(--ff-serif); font-weight: 700; margin: 0; }
.kg-file-card-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.kg-nft-card {
  margin: 2em 0;
  border: 1px solid var(--fog);
  overflow: hidden;
}
.kg-nft-card-container { display: flex; flex-direction: column; }
.kg-nft-image { width: 100%; height: auto; }
.kg-nft-metadata { padding: 16px 20px; }
.kg-nft-title { font-family: var(--ff-serif); font-weight: 700; margin: 0; }

.kg-signup-card {
  margin: 2em 0;
  padding: 32px;
  background: var(--green);
  color: var(--white);
}
.kg-signup-card-heading { font-family: var(--ff-display); font-size: 28px; font-weight: 400; color: var(--white); }
.kg-signup-card-subheading { font-family: var(--ff-serif); font-size: 17px; opacity: 0.85; margin-top: 8px; }
.kg-signup-card-form { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.kg-signup-card-input {
  flex: 1; min-width: 200px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.kg-signup-card-button {
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-cond);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kg-signup-card-success { color: var(--orange); }

/* ---------- PRINT ---------- */
@media print {
  .topbar, .site-header, .site-nav, .ticker, .site-footer, .newsletter, .videos-section { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .post-content { max-width: 100%; }
  a { color: #000; text-decoration: underline; }
}

/* ---------- REDUCED MOTION ---------- */
@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;
  }
  .ticker__inner { animation: none; }
}

/* ════════════════════════════════════════════════════════════ */
/* CLASSEMENTS — Architecture B (système dynamique)              */
/* ════════════════════════════════════════════════════════════ */

/* Skeleton loader */
.rankings-loading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0;
}
.rankings-skel {
  height: 60px;
  background: linear-gradient(90deg, var(--cream) 0%, var(--fog) 50%, var(--cream) 100%);
  background-size: 200% 100%;
  animation: pkr-skel 1.5s ease-in-out infinite;
  border-radius: 4px;
}
@keyframes pkr-skel {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Fallback (données manquantes) */
.rk-fallback {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--cream);
  border: 1px dashed var(--mist);
}
.rk-fallback-icon {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.rk-fallback-msg {
  font-family: var(--ff-cond);
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Page /classements/ — onglets + panels */
.rk-source-link {
  display: inline-block;
  font-family: var(--ff-cond);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  font-weight: 700;
}
.rk-source-link:hover { color: var(--orange); border-color: var(--orange); }

.rk-page-tabs-wrap {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}
.rk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.rk-tab {
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: all .2s ease;
}
.rk-tab:hover { background: var(--cream); }
.rk-tab.active {
  background: var(--ink);
  color: var(--white);
}

.rk-panel { animation: pkr-fadein .2s ease-out; }
@keyframes pkr-fadein { from { opacity: 0; } to { opacity: 1; } }

/* Tableau page (différent du tableau home) */
.rk-table {
  background: var(--cream);
  border: 1px solid var(--fog);
  padding: 1rem 1.25rem;
}
.rk-table-head {
  display: grid;
  grid-template-columns: 50px 56px 1fr 60px 50px 110px 50px;
  gap: 12px;
  padding: 10px 12px 12px;
  font-family: var(--ff-cond);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 2px solid var(--ink);
  font-weight: 700;
  align-items: center;
}
.rk-row-page {
  display: grid !important;
  grid-template-columns: 50px 56px 1fr 60px 50px 110px 50px !important;
  gap: 12px !important;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--fog);
}
.rk-row-page:last-child { border-bottom: none; }
.rk-row-page .rank-flag { font-size: 22px; line-height: 1; }
.rk-row-page .rank-age {
  font-family: var(--ff-cond);
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}
.rk-row-page.podium-1 {
  background: linear-gradient(to right, var(--orange-soft), transparent 70%);
}
.rk-row-page.francophone {
  background: linear-gradient(to right, rgba(15, 77, 42, 0.08), transparent 70%);
  border-left: 3px solid var(--green);
  margin-left: -12px;
  padding-left: 9px;
}

.rk-note-fr {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 77, 42, 0.06);
  border-left: 3px solid var(--green);
  font-family: var(--ff-serif);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}
.rk-note-fr strong { color: var(--green); font-style: normal; font-weight: 700; }

/* Responsive */
@media (max-width: 700px) {
  .rk-table-head, .rk-row-page {
    grid-template-columns: 36px 44px 1fr 90px 40px !important;
    gap: 8px !important;
  }
  .rk-table-head .rk-col-flag,
  .rk-table-head > div:nth-child(5),
  .rk-row-page .rank-flag,
  .rk-row-page .rank-age { display: none; }
  .rk-tab { padding: 10px 14px; font-size: 12px; }
  .rk-page-tabs-wrap { padding: 0 0.5rem; }
  .rk-row-page .rank-num { font-size: 22px; }
  .rk-row-page .rank-points { font-size: 18px; }
}

/* ════════════════════════════════════════════════════════════ */
/* CLASSEMENTS — Header dédié page /classements/ (crème élégant) */
/* ════════════════════════════════════════════════════════════ */
.classements-header {
  background: var(--cream);
  color: var(--ink);
  padding-block: clamp(3rem, 6vw, 5rem);
  padding-inline: 1rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}
.classements-header__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(15, 77, 42, 0.12) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.6;
}
.classements-header__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.classements-header__kicker {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 6px 14px;
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.classements-header__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  justify-content: center;
}
.classements-header__title-orange { color: var(--orange); }
.classements-header__title-ink { color: var(--ink); }
.classements-header__desc {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  font-style: italic;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}
.classements-header__desc [data-pkr-update-date] {
  font-style: normal;
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-left: 4px;
}
.classements-header__cta { margin-top: 0.5rem; }

@media (max-width: 700px) {
  .classements-header__title {
    flex-direction: column;
    gap: 0.1em;
  }
  .classements-header__bg {
    background-size: 20px 20px;
  }
}

/* ════════════════════════════════════════════════════════════ */
/* CLASSEMENTS FFT — Layout home 5 podiums (2 + 2 + 1)            */
/* ════════════════════════════════════════════════════════════ */

.rankings-fft-home {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}
.rankings-row {
  display: grid;
  gap: 24px;
}
.rankings-row--2 {
  grid-template-columns: 1fr 1fr;
}
.rankings-row--1 {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}
@media (max-width: 800px) {
  .rankings-row--2 { grid-template-columns: 1fr; }
}

/* Tag FFT vert (différencie du tag PPA vert classique) */
.ranking-col-tag--fft {
  background: var(--green);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════ */
/* CLASSEMENTS FFT — Page publique (tableau étendu Club + Ligue) */
/* ════════════════════════════════════════════════════════════ */

.rk-table-head--fft {
  display: grid !important;
  grid-template-columns: 50px 56px 1fr 130px 100px 80px 50px !important;
  gap: 12px !important;
}
.rk-row-fft {
  display: grid !important;
  grid-template-columns: 50px 56px 1fr 130px 100px 80px 50px !important;
  gap: 12px !important;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--fog);
}
.rk-row-fft:last-child { border-bottom: none; }
.rk-row-fft:hover { background: var(--white); }
.rk-row-fft.podium-1 {
  background: linear-gradient(to right, var(--orange-soft), transparent 70%);
}

.rank-club {
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.2;
}
.rank-ligue {
  font-family: var(--ff-cond);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--stone);
  text-transform: uppercase;
}

/* Catégories d'âge FFT */
.fft-age-50 {
  border-left: 2px solid var(--green);
  margin-left: -2px;
  padding-left: 10px;
}
.fft-age-70 {
  border-left: 2px solid var(--orange);
  margin-left: -2px;
  padding-left: 10px;
}
.rank-avatar.fft-age {
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid var(--mist);
}

/* Lien alt vers classements PPA */
.ranking-alt-note {
  text-align: center;
  margin-top: 18px;
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rk-alt-link-inline,
.rk-alt-link {
  color: var(--stone);
  font-family: var(--ff-cond);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--mist);
  display: inline-block;
}
.rk-alt-link-inline:hover,
.rk-alt-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.classements-header__alt {
  margin-top: 12px;
}

/* Variante header FFT (touche bleu-blanc-rouge subtile) */
.classements-header--fr {
  border-bottom-color: var(--green);
}

/* Responsive page FFT */
@media (max-width: 900px) {
  .rk-table-head--fft, .rk-row-fft {
    grid-template-columns: 40px 44px 1fr 60px 50px !important;
    gap: 8px !important;
  }
  .rk-table-head--fft > div:nth-child(4),
  .rk-row-fft .rank-club,
  .rk-table-head--fft .rk-col-club {
    display: none;
  }
}
@media (max-width: 600px) {
  .rk-table-head--fft, .rk-row-fft {
    grid-template-columns: 36px 1fr 70px 40px !important;
  }
  .rk-row-fft .rank-avatar,
  .rk-table-head--fft > div:nth-child(2),
  .rk-row-fft .rank-ligue,
  .rk-table-head--fft .rk-col-ligue {
    display: none;
  }
}
