/* ============================================================
   MinuteTech — thème « zine » (60 secondes)
   Papier crème + encre profonde + un accent (réglable).
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Zilla+Slab:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root, .mz {
    --c-ink: #16140f;
    --c-paper: #f4f0e7;
    --c-accent: #2330e8;     /* Cobalt par défaut */
    --c-muted: #6b6457;
    --c-faint: #9b9384;
    --c-line: #e3ddd0;
    --c-soft: #cdc6b6;
    --c-soft-ink: #57513f;
    --c-star: #d8a52e;
    --c-pro: #1f8a5b;
    --c-con: #d40032;
    --font-display: 'Zilla Slab', 'Roboto Slab', Georgia, serif;
    --font-body: 'Archivo', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
.mz[data-pal="Cobalt"] { --c-accent: #2330e8; }
.mz[data-pal="Ember"]  { --c-accent: #e6541f; }
.mz[data-pal="Rouge"]  { --c-accent: #d40032; }
.mz[data-pal="Violet"] { --c-accent: #5a23d6; }
.mz[data-pal="Teal"]   { --c-accent: #0d7c6a; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--c-paper); color: var(--c-ink); font-family: var(--font-body); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 40px; }
.mono { font-family: var(--font-mono); }
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 18px; }

/* reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* ---------------- Masthead ---------------- */
.masthead { position: sticky; top: 0; z-index: 30; background: var(--c-paper); border-bottom: 1px solid var(--c-ink); }
.mast-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; gap: 20px; }
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--c-ink); }
.wordmark .accent { color: var(--c-accent); }
.wordmark.sm { font-size: 18px; }
.mast-nav { flex: 1; }
.mast-nav .nav { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.mast-nav .nav li a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); transition: color .15s; }
.mast-nav .nav li a:hover, .mast-nav .nav li.nav-current a { color: var(--c-accent); }
.mast-date { font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); white-space: nowrap; }
.mast-tools { display: flex; align-items: center; gap: 14px; }
.mast-search { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--c-muted); background: none; border: 1px solid var(--c-soft); padding: 7px 13px; cursor: pointer; transition: border-color .15s, color .15s; }
.mast-search:hover { border-color: var(--c-accent); color: var(--c-accent); }
.mast-search svg { flex-shrink: 0; }
.auth-btn { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; padding: 8px 14px; transition: all .15s; }
.auth-in { color: var(--c-ink); }
.auth-in:hover { color: var(--c-accent); }
.auth-up { color: #fff; background: var(--c-accent); }
.auth-up:hover { background: var(--c-ink); }
.mob-search, .mob-auth { display: none; }
.mast-burger { display: none; background: none; border: none; font-size: 26px; line-height: 1; color: var(--c-ink); cursor: pointer; }
.mast-mobile { display: none; }

/* ---------------- Section heads ---------------- */
.section { margin-top: 56px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; border-top: 3px solid var(--c-ink); padding-top: 16px; margin-bottom: 18px; }
.sec-title { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0; }
.sec-note { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-faint); }

/* ---------------- Hero ---------------- */
.hero { padding-top: 60px; }
.feature-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 6.2vw, 84px); line-height: 0.99; letter-spacing: -0.025em; margin: 0 0 22px; max-width: 16ch; text-wrap: pretty; transition: color .15s; }
.feature-link:hover .feature-title { color: var(--c-accent); }
.feature-meta { display: flex; align-items: center; gap: 18px; }
.feature-meta .rule { width: 88px; height: 3px; background: var(--c-accent); }
.feature-meta .mono { font-size: 13px; color: var(--c-muted); }
.feature-num { text-align: right; line-height: 0.8; }
.hero-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(80px, 12vw, 180px); color: var(--c-accent); letter-spacing: -0.04em; }
.hero-num span { font-size: 0.4em; vertical-align: super; }
.hero-num-lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-faint); margin-top: 8px; }
.lede { font-family: var(--font-body); font-size: 20px; line-height: 1.5; color: var(--c-muted); font-weight: 500; max-width: 54ch; margin: 32px 0 0; }
.feature-photo { position: relative; overflow: hidden; margin-top: 36px; aspect-ratio: 16 / 7; background: var(--c-ink); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- Bichromie (duo) ---------------- */
.duo { position: relative; overflow: hidden; }
.duo img { position: relative; z-index: 0; }
.duo-rule { position: absolute; left: 0; bottom: 0; height: 6px; width: 40%; background: var(--c-accent); z-index: 2; }
.duo-on .feature-photo.duo img, .duo-on .review-photo.duo img { filter: grayscale(100%) contrast(1.04); transition: filter .4s var(--ease); }
.duo-on .feature-photo.duo::after, .duo-on .review-photo.duo::after { content: ""; position: absolute; inset: 0; background: var(--c-accent); mix-blend-mode: color; opacity: 0.92; z-index: 1; pointer-events: none; transition: opacity .4s var(--ease); }
/* Survol : photo en couleurs d'origine */
.duo-on .feature-photo.duo:hover img, .duo-on .review-photo.duo:hover img { filter: none; }
.duo-on .feature-photo.duo:hover::after, .duo-on .review-photo.duo:hover::after { opacity: 0; }
.ph-lbl { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-soft-ink); }

/* ---------------- Sommaire rows ---------------- */
.som-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 28px; align-items: center; padding: 22px 0; border-top: 1px solid var(--c-line); transition: padding-left .2s var(--ease); }
.som-row:hover { padding-left: 8px; }
.som-num { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; color: var(--c-soft); letter-spacing: -0.02em; transition: color .15s; }
.som-num.small { font-size: 24px; color: var(--c-accent); }
.som-row:hover .som-num { color: var(--c-accent); }
.som-cat { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px; }
.som-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.3vw, 29px); line-height: 1.12; letter-spacing: -0.015em; text-wrap: pretty; transition: color .15s; }
.som-row:hover .som-title { color: var(--c-accent); }
.som-time { font-family: var(--font-mono); font-size: 13px; color: var(--c-faint); white-space: nowrap; }
.card-row { grid-template-columns: 120px 1fr auto; }
.card-row .som-cat { margin: 0; }
.card-row .som-title { font-size: 19px; }
/* Rangée avec vignette (Autres essais) */
.som-thumbed { grid-template-columns: 64px 1fr auto; }
.som-thumb { width: 60px; height: 60px; object-fit: cover; background: var(--c-ink); display: block; }
.duo-on .som-thumb { filter: grayscale(100%) contrast(1.04); transition: filter .3s var(--ease); }
.duo-on .som-thumbed:hover .som-thumb { filter: none; }

/* ---------------- Rubriques tiles ---------------- */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--c-line); border: 1px solid var(--c-line); }
.tile { position: relative; aspect-ratio: 4 / 5; background: var(--c-ink) center/cover no-repeat; display: flex; align-items: flex-end; padding: 22px; transition: transform .2s var(--ease); overflow: hidden; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,20,15,0.05) 0%, rgba(22,20,15,0) 38%, rgba(22,20,15,0.72) 100%); z-index: 0; transition: background .2s var(--ease); }
.tile:hover { transform: translateY(-4px); }
.tile:hover::after { background: linear-gradient(180deg, rgba(22,20,15,0.05) 0%, rgba(22,20,15,0) 38%, rgba(22,20,15,0.82) 100%); }
.tile-label { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.tile-rule { position: absolute; left: 0; bottom: 0; height: 4px; width: 42%; background: var(--c-accent); z-index: 1; }

/* ---------------- Manifesto ---------------- */
.manifesto { background: var(--c-accent); margin-top: 72px; }
.manifesto-link { display: block; padding: 72px 0; }
.manifesto-eyebrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.manifesto-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.8vw, 64px); line-height: 1.03; letter-spacing: -0.025em; color: #fff; margin: 0; max-width: 18ch; text-wrap: balance; }
.manifesto-cta { display: inline-block; margin-top: 32px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; border-bottom: 2px solid #fff; padding-bottom: 4px; }

/* ---------------- Review feature ---------------- */
.review-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.review-photo { position: relative; aspect-ratio: 4 / 3; background: var(--c-ink); overflow: hidden; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 18px; text-wrap: balance; transition: color .15s; }
.review-feature:hover .review-title { color: var(--c-accent); }
.review-lede { font-size: 18px; line-height: 1.5; color: var(--c-muted); margin: 0 0 22px; }
.text-cta { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink); border-bottom: 2px solid var(--c-accent); padding-bottom: 4px; }

/* ---------------- Article ---------------- */
.art-top { padding-top: 40px; }
.back { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent); }
.back.light { color: rgba(255,255,255,0.85); display: inline-block; margin-bottom: 22px; }
.back.light:hover { color: #fff; }

/* En-tête couverture (titre + lead sur la photo) */
.art-cover { position: relative; min-height: 58vh; display: flex; align-items: flex-end; background-color: var(--c-ink); background-size: cover; background-position: center; }
.art-cover-inner { position: relative; z-index: 1; width: 100%; padding-top: 64px; padding-bottom: 52px; animation: mzUp .5s var(--ease); }
.art-cover .kicker { color: #fff; opacity: 0.92; margin-bottom: 16px; }
.art-cover .art-title { color: #fff; margin: 0 0 18px; max-width: 22ch; }
.art-cover .lede { color: rgba(255,255,255,0.92); margin: 0 0 28px; }
.cover-caption { font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); margin: 12px auto 0; text-align: right; }

.art-head { padding-top: 26px; animation: mzUp .5s var(--ease); }
.art-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5.2vw, 62px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 22px; max-width: 20ch; text-wrap: pretty; }
.art-byline { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--c-line); padding-top: 18px; margin-top: 4px; flex-wrap: wrap; }
.byline-id { display: flex; align-items: center; gap: 12px; }
.byline-avatar { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; background: var(--c-soft); flex-shrink: 0; }
.byline-avatar.noimg { display: flex; align-items: center; justify-content: center; color: var(--c-faint); }
.byline-text { display: flex; flex-direction: column; gap: 2px; }
.byline-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--c-ink); }
.byline-date { font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); }
.art-cover .art-byline { border-top-color: rgba(255,255,255,0.22); }
.art-cover .byline-avatar { border: 2px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.1); }
.art-cover .byline-avatar.noimg { color: rgba(255,255,255,0.8); }
.art-cover .byline-name { color: #fff; }
.art-cover .byline-date { color: rgba(255,255,255,0.72); }
.art-cover .share { color: #fff; border-color: rgba(255,255,255,0.5); }
.art-cover .share:hover { background: #fff; color: var(--c-ink); }
.share { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink); border: 1px solid var(--c-ink); padding: 7px 14px; cursor: pointer; transition: background .15s, color .15s; }
.share:hover { background: var(--c-ink); color: var(--c-paper); }
.share.share-done { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.art-cover .share.share-done { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.art-photo { position: relative; overflow: hidden; margin: 32px 0 0; aspect-ratio: 16 / 8; background: var(--c-ink); }
.art-photo img { width: 100%; height: 100%; object-fit: cover; }
.art-photo figcaption { position: absolute; left: 0; right: 0; bottom: -28px; font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); text-align: center; }
@keyframes mzUp { from { transform: translateY(12px); } to { transform: none; } }

/* ---------------- Koenig content (essentiel, citations) ---------------- */
.gh-content { margin-top: 44px; font-size: 18px; line-height: 1.7; color: var(--c-ink); }
.gh-content > * { margin: 0 0 24px; }
.gh-content h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 36px 0 14px; }
.gh-content h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 28px 0 12px; }
.gh-content a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
.gh-content ul, .gh-content ol { list-style: none; padding: 0; margin: 0 0 28px; }
.gh-content ul li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid var(--c-line); }
.gh-content ul li::before { content: ""; position: absolute; left: 0; top: 21px; width: 9px; height: 9px; background: var(--c-accent); }
.gh-content ol { counter-reset: mz; }
.gh-content ol li { counter-increment: mz; position: relative; padding: 13px 0 13px 46px; border-top: 1px solid var(--c-line); }
.gh-content ol li::before { content: counter(mz, decimal-leading-zero); position: absolute; left: 0; top: 11px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--c-accent); }
.gh-content blockquote { border-left: 5px solid var(--c-accent); padding: 4px 0 4px 28px; margin: 12px 0 30px; font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.02em; }
.gh-content blockquote p { margin: 0; }
.gh-content img, .gh-content .kg-card { border-radius: 0; }
/* Images dans le corps d'article : toujours en couleurs (jamais de bichromie) */
.duo-on .gh-content img { filter: none; }
.gh-content .kg-width-wide { width: min(1040px, 90vw); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.gh-content .kg-width-full { width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }

/* ---------------- Version complète / rappel 60 s ---------------- */
.full-banner { display: block; background: var(--c-accent); padding: 30px 36px; margin-top: 48px; }
.full-eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.full-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.full-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.2vw, 36px); line-height: 1.05; letter-spacing: -0.02em; color: #fff; }
.full-arrow { font-family: var(--font-display); color: #fff; font-size: 30px; }
.brief-reminder { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--c-accent); padding: 12px 16px; margin-top: 22px; transition: background .15s; }
.brief-reminder:hover { background: rgba(0,0,0,0.03); }
.brief-badge { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--c-accent); padding: 4px 9px; white-space: nowrap; }
.brief-text { font-family: var(--font-mono); font-size: 13px; color: var(--c-ink); }

/* ---------------- Review snippet (à coller dans un test) ---------------- */
.mt-verdict { display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--c-line); border-left: 5px solid var(--c-accent); padding: 20px 24px; margin: 0 0 28px; }
.mt-verdict-label { margin: 0; font-family: var(--font-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); }
.mt-verdict-value { margin: 6px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.mt-stars { letter-spacing: 2px; color: var(--c-star); font-size: 24px; text-align: right; }
.mt-stars .empty { color: var(--c-soft); }
.mt-score { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--c-muted); text-align: right; margin-top: 4px; }
.verdict-pill { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-accent); border: 1.5px solid var(--c-accent); padding: 4px 11px; border-radius: 999px; }

/* ---------------- Bande Alerte / Événement (tag #alerte ou #evenement) ---------------- */
.alert-band { display: flex; align-items: center; gap: 20px; margin: 22px auto 0; max-width: 1280px; padding: 16px 24px; background: var(--c-accent); color: #fff; }
.alert-band.is-alerte { background: #d40032; }
.alert-flag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; background: rgba(0,0,0,0.22); flex-shrink: 0; }
.alert-flag::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: #fff; animation: mzPulse 1.4s infinite; }
@keyframes mzPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.alert-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 2vw, 22px); line-height: 1.2; letter-spacing: -0.01em; flex: 1; text-wrap: balance; }
.alert-cta { font-family: var(--font-mono); font-size: 13px; white-space: nowrap; flex-shrink: 0; opacity: 0.9; }
.alert-band:hover .alert-cta { opacity: 1; }

/* ---------------- Emplacements publicitaires ---------------- */
.ad-slot { max-width: 1280px; margin: 48px auto 0; padding: 0 40px; text-align: center; }
.ad-tag { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-faint); margin-bottom: 8px; }
.ad-fill { display: flex; align-items: center; justify-content: center; min-height: 96px; border: 1px dashed var(--c-soft); background: repeating-linear-gradient(135deg, transparent, transparent 11px, rgba(0,0,0,0.025) 11px, rgba(0,0,0,0.025) 12px); color: var(--c-faint); font-family: var(--font-mono); font-size: 12px; }
.ad-fill img { display: block; max-width: 100%; height: auto; }
.ad-leaderboard .ad-fill { min-height: 120px; }
.ad-infeed { grid-column: 1 / -1; margin: 8px 0; padding: 0; }
.ad-infeed .ad-fill { min-height: 110px; }

/* ---------------- Le fil (feed infini) ---------------- */
.feed-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.feed-item { display: grid; grid-template-columns: 92px 1fr; gap: 18px; align-items: start; padding: 20px 0; border-top: 1px solid var(--c-line); transition: padding-left .2s var(--ease); }
.feed-item:hover { padding-left: 6px; }
.feed-thumb { width: 92px; height: 70px; object-fit: cover; background: var(--c-ink); display: block; }
.feed-thumb.noimg { background: var(--c-soft); }
.duo-on .feed-thumb { filter: grayscale(100%) contrast(1.04); transition: filter .3s var(--ease); }
.duo-on .feed-item:hover .feed-thumb { filter: none; }
.feed-cat { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 6px; }
.feed-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.18; letter-spacing: -0.01em; text-wrap: pretty; transition: color .15s; }
.feed-item:hover .feed-title { color: var(--c-accent); }
.feed-meta { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--c-faint); margin-top: 7px; }
.feed-item.is-new { animation: mzUp .45s var(--ease); }
.feed-tail { text-align: center; margin-top: 36px; }
.feed-more { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink); background: none; border: 1.5px solid var(--c-ink); padding: 14px 26px; cursor: pointer; transition: all .15s; }
.feed-more:hover { color: #fff; background: var(--c-ink); }
.feed-end { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-faint); padding: 14px 0; }
.feed-loading { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); }
.feed-loading::before { content: ""; width: 13px; height: 13px; border: 2px solid var(--c-soft); border-top-color: var(--c-accent); border-radius: 999px; animation: mzSpin .7s linear infinite; }
@keyframes mzSpin { to { transform: rotate(360deg); } }
@media (max-width: 720px) {
    .feed-list { grid-template-columns: 1fr; gap: 0; }
    .alert-band { flex-wrap: wrap; gap: 12px; }
    .alert-cta { width: 100%; }
}

/* ---------------- Encadré test complet (.mt-review) ---------------- */
.mt-review { border: 1px solid var(--c-line); background: var(--c-paper); margin: 8px 0 34px; overflow: hidden; }
.mt-review-hero { position: relative; background: var(--c-ink); background-size: cover; background-position: center; padding: 26px 28px 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; min-height: 158px; }
.mt-review-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.6)); }
.mt-review-hero > * { position: relative; z-index: 1; }
.mt-review-verdict { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); line-height: 1; letter-spacing: -0.02em; color: #fff; margin: 0; max-width: 14ch; text-wrap: balance; }
.mt-review-scorebox { text-align: right; flex-shrink: 0; }
.mt-review-scorebox .mt-stars-wrap { font-size: 19px; }
.mt-review-rec { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin: 9px 0 2px; }
.mt-review-big { font-family: var(--font-display); font-weight: 700; font-size: 42px; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.mt-review-criteria { padding: 22px 28px; display: grid; gap: 17px; }
.mt-crit { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; }
.mt-crit-head { border-left: 3px solid var(--c-accent); padding-left: 12px; }
.mt-crit-label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--c-ink); }
.mt-crit-val { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); margin-top: 3px; }
.mt-crit .mt-stars-wrap { font-size: 18px; }
.mt-review-likes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 22px 28px 24px; border-top: 1px dashed var(--c-soft); }
.mt-like-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 0 0 14px; }
.mt-like-list { list-style: none; margin: 0; padding: 0; }
.mt-like-list li { position: relative; padding: 0 0 11px 20px; font-size: 15px; line-height: 1.45; color: var(--c-soft-ink); }
.mt-like-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 999px; }
.mt-pros li::before { background: var(--c-pro); }
.mt-cons li::before { background: var(--c-con); }
.mt-review-summary { padding: 22px 28px 26px; border-top: 1px solid var(--c-line); }
.mt-review-summary h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 12px; }
.mt-review-summary p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--c-soft-ink); }
@media (max-width: 600px) {
    .mt-review-likes { grid-template-columns: 1fr; gap: 18px; }
    .mt-crit { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------------- Note en étoiles (tag interne #note-XX) ---------------- */
.mt-rating { display: inline-flex; align-items: center; gap: 12px; }
.mt-stars-wrap { position: relative; display: inline-block; font-size: 22px; line-height: 1; letter-spacing: 2px; white-space: nowrap; }
.mt-stars-base { color: var(--c-soft); }
.mt-stars-fill { position: absolute; left: 0; top: 0; overflow: hidden; color: var(--c-star); }
.mt-rating .mt-score { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--c-muted); }
.review-rating { margin: 0 0 18px; }
.art-cover .art-rating { margin-top: 18px; }
.art-rating { margin-top: 16px; }
.art-cover .mt-rating .mt-score { color: rgba(255,255,255,0.85); }
.art-cover .mt-stars-base { color: rgba(255,255,255,0.35); }
.art-rating:empty { display: none; }
.review-rating:empty { display: none; }
.som-rating .mt-stars-wrap { font-size: 16px; letter-spacing: 1px; }
.som-rating .mt-score { display: none; }

/* ---------------- 60 s → Dossier (repli dans un seul article) ---------------- */
.art-body .mt-more { display: none; }
.art-body .mt-more ~ * { display: none; }       /* masqué avant le JS, zéro flash */
.mt-more-host { margin: 14px 0 8px; }
.mt-more-eyebrow { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-faint); margin-bottom: 14px; }
.mt-more-btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--c-accent); border: none; padding: 14px 22px; cursor: pointer; transition: background .15s; }
.mt-more-btn:hover { background: var(--c-ink); }
.mt-more-arrow { font-family: var(--font-display); font-size: 18px; }
.mt-dossier { display: none; }
.mt-dossier.open { display: block; animation: mzUp .45s var(--ease); }

/* ---------------- Archive / error ---------------- */
.archive-head { padding-top: 56px; }
.author-id { display: flex; align-items: center; gap: 22px; }
.author-avatar { width: 84px; height: 84px; border-radius: 999px; object-fit: cover; background: var(--c-soft); flex-shrink: 0; border: 1px solid var(--c-line); }
.archive-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.025em; margin: 10px 0 8px; }
.archive-desc { font-size: 18px; color: var(--c-muted); max-width: 60ch; }
.error-page { text-align: center; padding: 110px 40px; }
.error-code { font-family: var(--font-display); font-weight: 700; font-size: 84px; color: var(--c-accent); }
.error-title { font-family: var(--font-display); font-size: 28px; margin: 8px 0 6px; }
.error-msg { color: var(--c-muted); margin-bottom: 24px; }

/* ---------------- Pagination ---------------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 48px 0 8px; font-family: var(--font-mono); font-size: 13px; }
.page-link { text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-ink); }
.page-link:hover { color: var(--c-accent); }
.page-off { color: var(--c-soft); }
.page-number { color: var(--c-faint); }

/* ---------------- Footer ---------------- */
.site-footer { margin-top: 80px; border-top: 1px solid var(--c-ink); }
.footer-rule { display: none; }
.footer-inner { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-top: 36px; padding-bottom: 36px; }
.footer-note { font-family: var(--font-mono); font-size: 12px; color: var(--c-faint); max-width: 40ch; text-align: right; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
    .wrap, .wrap-narrow { padding-left: 24px; padding-right: 24px; }
    .feature-grid { grid-template-columns: 1fr; gap: 22px; }
    .review-feature { grid-template-columns: 1fr; gap: 26px; }
    .tiles { grid-template-columns: repeat(3, 1fr); }
    .mast-nav { display: none; }
    .mast-tools { display: none; }
    .mast-burger { display: block; }
    .mast-date { display: none; }
    .mast-mobile.open { display: block; border-top: 1px solid var(--c-line); }
    .mast-mobile .nav { list-style: none; margin: 0; padding: 8px 24px 0; display: flex; flex-direction: column; gap: 0; }
    .mast-mobile.open .mob-search { display: block; width: calc(100% - 48px); margin: 12px 24px 4px; text-align: left; font-family: var(--font-mono); font-size: 13px; color: var(--c-muted); background: none; border: 1px solid var(--c-soft); padding: 12px 14px; cursor: pointer; }
    .mast-mobile.open .mob-auth { display: block; margin: 8px 24px; padding: 12px 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-accent); }
    .mast-mobile.open .mob-auth.up { color: #fff; background: var(--c-accent); text-align: center; }
    .mast-mobile .nav li a { display: block; padding: 12px 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink); border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 600px) {
    body { font-size: 16px; }
    .tiles { grid-template-columns: 1fr 1fr; }
    .som-row { grid-template-columns: 40px 1fr; }
    .som-time { display: none; }
    .full-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer-inner { flex-direction: column; }
    .footer-note { text-align: left; }
}
