/* ============================================================
   GUIDES « COMMENT CHOISIR » ET CLASSEMENTS
   Structure de la maquette « Guides & Classements » (Claude Design),
   couleurs et polices reprises du thème de chaque site.
   ============================================================ */
.gc {
    --gc-deep: var(--secondary);
    --gc-blue: var(--primary);
    --gc-cream: var(--bg-light);
    --gc-ice: var(--band-soft);
    --gc-muted: var(--text-light);
    --gc-body: var(--text);
    --gc-line: rgba(var(--primary-rgb), .14);
    --gc-display: var(--font-heading);
    /* Dégradé de marque, assombri en fin de course pour garder un texte blanc lisible. */
    --gc-grad: linear-gradient(90deg, var(--gradient-from), color-mix(in srgb, var(--gradient-from) 45%, var(--gradient-to)));
    --gc-grad-diag: linear-gradient(135deg, var(--gradient-from), color-mix(in srgb, var(--gradient-from) 45%, var(--gradient-to)));
    --gc-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    --gc-shadow-hover: 0 14px 36px rgba(0, 0, 0, .12);
    color: var(--gc-deep);
    font-family: var(--font-primary);
}
.gc a { color: var(--gc-blue); }
.gc-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gc svg { flex: 0 0 auto; }

/* ----- En-têtes de page ----- */
.gc-hero { padding: 56px 0 64px; background: var(--gc-cream); }
.gc-hero--ice { background: var(--gc-ice); }
.gc-hero--compact { padding: 44px 0 56px; }
.gc-crumbs { margin: 0 0 28px; color: var(--gc-muted); font-size: 13px; }
.gc-crumbs a { color: var(--gc-muted); text-decoration: none; }
.gc-crumbs a:hover { color: var(--gc-deep); text-decoration: underline; }
.gc-crumbs span[aria-current] { color: var(--gc-deep); font-weight: 700; }
.gc-crumbs .gc-sep { padding: 0 8px; }
.gc-eyebrow { display: inline-block; margin-bottom: 16px; color: var(--gc-blue); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gc-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 6px 14px; border-radius: 999px; background: #fff; color: var(--gc-deep); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.gc-pill svg { color: var(--gc-blue); }
.gc-title { max-width: 22ch; margin: 0; color: var(--gc-deep); font-family: var(--gc-display); font-size: clamp(32px, 4.4vw, 52px); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
.gc-lead { max-width: 64ch; margin: 22px 0 0; color: var(--gc-body); font-size: 19px; font-weight: 300; line-height: 1.55; }
.gc-date { margin: 20px 0 0; color: var(--gc-muted); font-size: 13px; }

/* ----- Grilles de cartes (index des guides et des classements) ----- */
.gc-section { padding: 64px 0 24px; }
.gc-section--last { padding-bottom: 96px; }
.gc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.gc-card { display: flex; flex-direction: column; gap: 18px; padding: 32px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--gc-shadow); color: var(--gc-deep); text-decoration: none; transition: box-shadow .2s, transform .2s; }
.gc .gc-card { color: var(--gc-deep); }
.gc-card:hover { box-shadow: var(--gc-shadow-hover); transform: translateY(-2px); }
.gc-card-icon { display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: var(--gc-grad-diag); color: #fff; }
.gc-card h2 { margin: 0; color: var(--gc-deep); font-family: var(--gc-display); font-size: 22px; font-weight: 600; line-height: 1.25; }
.gc-card p { margin: 0; color: var(--gc-body); font-size: 16px; font-weight: 300; line-height: 1.55; }
.gc-more { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: var(--gc-blue); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gc-card:hover .gc-more { text-decoration: underline; }
.gc-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; padding: 40px; border-radius: var(--radius-lg); background: var(--gc-ice); }
.gc-banner > div { flex: 1 1 380px; min-width: 0; }
.gc-banner h2 { margin: 0; color: var(--gc-deep); font-family: var(--gc-display); font-size: 26px; font-weight: 600; line-height: 1.25; }
.gc-banner p { max-width: 56ch; margin: 12px 0 0; color: var(--gc-body); font-size: 17px; font-weight: 300; line-height: 1.55; }
.gc-btn-outline { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 26px; border: 2px solid var(--gc-deep); border-radius: 999px; color: var(--gc-deep); font-size: 14px; font-weight: 700; text-decoration: none; transition: background .2s, color .2s; }
.gc .gc-btn-outline { color: var(--gc-deep); }
.gc .gc-btn-outline:hover { background: var(--gc-deep); color: #fff; }

/* ----- Top 3 dans les cartes de classements ----- */
.gc-top { display: flex; flex-direction: column; gap: 12px; }
.gc-top-row { display: flex; align-items: center; gap: 14px; }
.gc-top-name { min-width: 0; font-size: 16px; font-weight: 700; }
.gc-top-name span { color: var(--gc-muted); font-weight: 300; }
.gc-top-value { margin-left: auto; color: var(--gc-blue); font-size: 15px; font-weight: 700; white-space: nowrap; }
.gc-rank-sm { display: flex; flex: 0 0 26px; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--gc-ice); color: var(--gc-deep); font-family: var(--gc-display); font-size: 12px; font-weight: 700; }
.gc-rank-sm.is-first { background: var(--gc-grad); color: #fff; }

/* ----- Mise en page contenu + colonne latérale ----- */
.gc-layout { display: flex; flex-wrap: wrap; gap: 48px; max-width: 1280px; margin: 0 auto; padding: 56px 24px 96px; }
.gc-main { display: flex; flex: 1 1 560px; flex-direction: column; gap: 48px; min-width: 0; }
.gc-main--list { gap: 18px; }
.gc-aside { position: sticky; top: 100px; display: flex; flex: 1 1 300px; flex-direction: column; gap: 20px; align-self: start; max-width: 340px; min-width: 0; }
.gc-h2 { margin: 0 0 20px; color: var(--gc-deep); font-family: var(--gc-display); font-size: 28px; font-weight: 600; }
.gc-cta { padding: 28px; border-radius: var(--radius-lg); background: var(--gc-grad-diag); color: #fff; }
.gc-cta-title { margin: 0 0 10px; font-family: var(--gc-display); font-size: 21px; font-weight: 600; line-height: 1.25; }
.gc-cta p { margin: 0 0 20px; font-size: 15px; line-height: 1.55; }
.gc .gc-cta-btn { display: flex; align-items: center; justify-content: center; height: 44px; border-radius: 999px; background: var(--secondary); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; transition: filter .2s; }
.gc .gc-cta-btn:hover { filter: brightness(1.25); }
.gc-side-box { padding: 26px; border: 1px solid var(--gc-line); border-radius: var(--radius-lg); }
.gc-side-title { margin: 0 0 16px; color: var(--gc-muted); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gc-side-links { display: flex; flex-direction: column; gap: 2px; }
.gc .gc-side-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gc-line); color: var(--gc-deep); font-size: 16px; text-decoration: none; }
.gc .gc-side-links a:last-child { border-bottom: 0; }
.gc .gc-side-links a:hover { color: var(--gc-blue); }
.gc-side-links svg { color: var(--gc-blue); }
.gc-side-note { margin: 18px 0 0; color: var(--gc-body); font-size: 12px; font-weight: 300; line-height: 1.5; }

/* ----- Guide : verdict, tableau, critères, méthode ----- */
.gc-verdict { display: flex; flex-direction: column; gap: 18px; padding: 32px; border-radius: var(--radius-lg); background: var(--gc-cream); }
.gc-verdict-item { display: flex; align-items: flex-start; gap: 16px; }
.gc-check { display: flex; flex: 0 0 26px; align-items: center; justify-content: center; width: 26px; height: 26px; margin-top: 3px; border-radius: 50%; background: var(--gc-grad); color: #fff; }
.gc-verdict-item p { margin: 0; font-size: 17px; font-weight: 300; line-height: 1.55; }
.gc-compare-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.gc-compare-head .gc-h2 { margin: 0; }
.gc-count { color: var(--gc-muted); font-size: 13px; }
.gc-table-wrap { overflow-x: auto; border: 1px solid var(--gc-line); border-radius: var(--radius-md); background: #fff; }
.gc-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 15px; }
.gc-table thead th { padding: 13px 18px; background: var(--gc-ice); color: var(--gc-deep); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.gc-table tbody tr { border-top: 1px solid var(--gc-line); }
.gc-table tbody tr:nth-child(even) { background: rgba(var(--primary-rgb), .035); }
.gc-table tbody th { padding: 15px 18px; font-size: 15px; font-weight: 700; text-align: left; }
.gc .gc-table tbody th a { color: var(--gc-deep); text-decoration: none; }
.gc .gc-table tbody th a:hover { color: var(--gc-blue); text-decoration: underline; }
.gc-table td { padding: 15px 18px; font-size: 15px; font-weight: 300; font-variant-numeric: tabular-nums; white-space: nowrap; }
.gc-note { margin: 14px 0 0; color: var(--gc-body); font-size: 12px; font-weight: 300; }
.gc-criteria { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.gc-criterion { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border: 1px solid var(--gc-line); border-radius: var(--radius-md); }
.gc-criterion-n { display: flex; flex: 0 0 32px; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--gc-ice); color: var(--gc-deep); font-family: var(--gc-display); font-size: 15px; font-weight: 600; }
.gc-criterion p { margin: 0; font-size: 16px; font-weight: 300; line-height: 1.55; }
.gc-method { padding: 32px; border-radius: var(--radius-lg); background: var(--gc-ice); }
.gc-method--cream { background: var(--gc-cream); }
.gc-method h2 { margin: 0 0 14px; color: var(--gc-deep); font-family: var(--gc-display); font-size: 22px; font-weight: 600; }
.gc-method p { margin: 0; color: var(--gc-body); font-size: 16px; font-weight: 300; line-height: 1.6; }
.gc-method p + p { margin-top: 12px; }
.gc-method strong { color: var(--gc-deep); font-weight: 700; }

/* ----- Classement : en-tête photo et lignes ----- */
.gc-photo-hero { position: relative; overflow: hidden; background: var(--gc-deep); }
.gc-photo-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gc-photo-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .3) 45%, rgba(0, 0, 0, .8) 100%); }
.gc-photo-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; max-width: 1280px; margin: 0 auto; padding: 44px 24px 56px; }
.gc-photo-hero .gc-crumbs { margin-bottom: auto; color: rgba(255, 255, 255, .72); }
.gc-photo-hero .gc-crumbs a { color: rgba(255, 255, 255, .72); }
.gc-photo-hero .gc-crumbs span[aria-current] { color: #fff; }
.gc-badge { display: inline-flex; align-self: flex-start; margin: 40px 0 18px; padding: 6px 14px; border-radius: 999px; background: var(--gc-grad); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.gc-photo-hero .gc-title { max-width: 26ch; color: #fff; }
.gc-photo-hero .gc-lead { max-width: 66ch; margin-top: 20px; color: #fff; font-size: 18px; }
.gc-venue { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; padding: 22px; border: 1px solid var(--gc-line); border-radius: var(--radius-lg); background: #fff; }
.gc-venue.is-first { box-shadow: var(--gc-shadow); }
.gc-rank { display: flex; flex: 0 0 52px; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--gc-ice); color: var(--gc-deep); font-family: var(--gc-display); font-size: 20px; font-weight: 700; }
.gc-rank.is-podium { background: var(--gc-grad); color: #fff; }
.gc-venue-photo { flex: 0 0 200px; height: 136px; overflow: hidden; border-radius: var(--radius-md); background: var(--gc-ice); }
.gc-venue-photo img { width: 100%; height: 100%; object-fit: cover; }
.gc-venue-body { flex: 1 1 280px; min-width: 0; }
.gc-venue-body h2 { margin: 0; font-family: var(--gc-display); font-size: 21px; font-weight: 600; line-height: 1.25; }
.gc .gc-venue-body h2 a { color: var(--gc-deep); text-decoration: none; }
.gc .gc-venue-body h2 a:hover { color: var(--gc-blue); }
.gc-stars { color: #f5b301; font-size: 15px; letter-spacing: .05em; }
.gc-venue-city { margin: 6px 0 0; color: var(--gc-muted); font-size: 15px; font-weight: 300; }
.gc-venue-value { display: flex; align-items: baseline; gap: 9px; margin: 12px 0 0; }
.gc-venue-value strong { background: var(--gc-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--gc-display); font-size: 30px; font-weight: 700; line-height: 1; }
.gc-venue-value span { font-size: 15px; }
.gc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.gc-chip { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px; background: var(--gc-cream); font-size: 13px; }
.gc-chip svg { color: var(--gc-blue); }
.gc .gc-venue-link { display: inline-flex; flex: 0 0 auto; align-self: flex-end; align-items: center; gap: 9px; color: var(--gc-blue); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.gc .gc-venue-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .gc-aside { position: static; max-width: none; }
    .gc-hero { padding: 40px 0 48px; }
    .gc-lead { font-size: 17px; }
    .gc-card, .gc-banner, .gc-verdict, .gc-method { padding: 24px; }
    .gc-venue-photo { flex-basis: 100%; height: 180px; }
    .gc-venue-link { align-self: flex-start; }
}
.gc-cards--2 { grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); }
@media (max-width: 900px) { .gc-cards--2 { grid-template-columns: 1fr; } }

/* ----- Budget, baromètre : chiffres clés, barres, FAQ ----- */
.gc-keyfigs { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.gc-keyfig { display: flex; flex-direction: column; gap: 8px; padding: 22px; border-radius: var(--radius-lg); background: var(--gc-cream); }
.gc-keyfig-value { background: var(--gc-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--gc-display); font-size: 30px; font-weight: 700; line-height: 1.1; }
.gc-keyfig-label { color: var(--gc-body); font-size: 14px; font-weight: 300; line-height: 1.45; }
.gc-text { max-width: 72ch; margin: 0 0 18px; color: var(--gc-body); font-size: 17px; font-weight: 300; line-height: 1.6; }
.gc-table td.gc-wrap-cell { white-space: normal; min-width: 180px; }
.gc-top--list { padding: 24px; border: 1px solid var(--gc-line); border-radius: var(--radius-lg); }
.gc-top--list .gc-top-name a { color: var(--gc-deep); text-decoration: none; }
.gc-top--list .gc-top-name a:hover { color: var(--gc-blue); text-decoration: underline; }
.gc-bars { display: flex; flex-direction: column; gap: 12px; }
.gc-bar { display: grid; grid-template-columns: minmax(120px, 200px) 1fr auto; align-items: center; gap: 14px; }
.gc-bar-label { font-size: 15px; }
.gc-bar-track { height: 10px; overflow: hidden; border-radius: 999px; background: var(--gc-ice); }
.gc-bar-fill { display: block; height: 100%; border-radius: 999px; background: var(--gc-grad); }
.gc-bar-value { font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.gc-bar-value small { color: var(--gc-muted); font-weight: 300; }
.gc-faq { display: flex; flex-direction: column; gap: 10px; }
.gc-faq details { padding: 18px 22px; border: 1px solid var(--gc-line); border-radius: var(--radius-md); background: #fff; }
.gc-faq summary { cursor: pointer; color: var(--gc-deep); font-size: 17px; font-weight: 700; line-height: 1.4; }
.gc-faq details p { margin: 12px 0 0; color: var(--gc-body); font-size: 16px; font-weight: 300; line-height: 1.6; }
@media (max-width: 600px) {
    .gc-bar { grid-template-columns: 1fr auto; }
    .gc-bar-track { grid-column: 1 / -1; grid-row: 2; }
}
