/* ============================================================
   mobile_home.css — Style éditorial mobile (inspiré Vogue)
   Toutes les règles sont préfixées "mv-" pour ne pas
   interférer avec le CSS de la version bureau.
   ============================================================ */

/* ──────────────────────────────────────────────
   TOKENS & VARIABLES
────────────────────────────────────────────── */
.mv-shell {
    --mv-ink:      #0a0a0a;
    --mv-cream:    #f5f0e8;
    --mv-white:    #fafafa;
    --mv-gold:     #b89a5e;
    --mv-gold-lt:  #d4b97a;
    --mv-muted:    #6b6560;
    --mv-border:   #d8d0c4;

    --mv-serif:    'Playfair Display', 'Georgia', serif;
    --mv-body:     'Cormorant Garamond', 'Garamond', serif;
    --mv-sans:     'Montserrat', 'Helvetica Neue', sans-serif;

    --mv-header-h: 56px;
    --mv-cat-h:    42px;

    font-family: var(--mv-body);
    background: var(--mv-white);
    color: var(--mv-ink);
}

/* ──────────────────────────────────────────────
   RESET PARTIEL (dans la coquille mv-)
────────────────────────────────────────────── */
.mv-shell *, .mv-shell *::before, .mv-shell *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.mv-shell a { text-decoration: none; color: inherit; }
.mv-shell ul { list-style: none; }
.mv-shell button { background: none; border: none; cursor: pointer; font-family: inherit; }
.mv-shell img { display: block; max-width: 100%; }

/* ──────────────────────────────────────────────
   STICKY HEADER
────────────────────────────────────────────── */
.mv-header {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--mv-header-h);
    background: var(--mv-ink);
    padding: 0 14px;
    transition: box-shadow .25s;
}
.mv-header.mv-header-scrolled {
    box-shadow: 0 2px 18px rgba(0,0,0,.45);
}

/* Hamburger */
.mv-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mv-ham-bar {
    display: block;
    height: 2px;
    background: var(--mv-white);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

/* Logo */
.mv-logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.mv-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

/* Icons droite */
.mv-header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mv-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mv-white);
    padding: 4px;
    position: relative;
}
.mv-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--mv-gold);
    color: var(--mv-ink);
    font-family: var(--mv-sans);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ──────────────────────────────────────────────
   SEARCH OVERLAY
────────────────────────────────────────────── */
.mv-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--mv-ink);
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.mv-search-overlay.mv-search-open {
    opacity: 1;
    pointer-events: all;
}
.mv-search-inner {
    width: 100%;
    padding: 0 24px;
}
.mv-search-close {
    color: var(--mv-white);
    margin-bottom: 24px;
    opacity: .7;
}
.mv-search-label {
    font-family: var(--mv-sans);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mv-gold);
    margin-bottom: 10px;
}
.mv-search-field-wrap {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 10px;
}
.mv-search-input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--mv-white);
    font-family: var(--mv-serif);
    font-size: 26px;
    font-style: italic;
    padding-right: 40px;
}
.mv-search-input::placeholder { color: rgba(255,255,255,.3); }
.mv-search-go {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: var(--mv-gold);
}

/* ──────────────────────────────────────────────
   OFF-CANVAS DRAWER
────────────────────────────────────────────── */
.mv-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0,0,0,.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.mv-drawer-backdrop.mv-backdrop-visible {
    opacity: 1;
    pointer-events: all;
}
.mv-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 960;
    width: 82vw;
    max-width: 320px;
    background: var(--mv-ink);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}
.mv-drawer.mv-drawer-open {
    transform: translateX(0);
}
.mv-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mv-drawer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}
.mv-drawer-close {
    color: rgba(255,255,255,.6);
    padding: 4px;
}

/* User zone */
.mv-drawer-user {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: var(--mv-sans);
    font-size: 12px;
    color: rgba(255,255,255,.7);
}
.mv-drawer-login-btn {
    display: inline-block;
    border: 1px solid var(--mv-gold);
    color: var(--mv-gold);
    font-family: var(--mv-sans);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 2px;
}

/* Nav list */
.mv-drawer-nav {
    flex: 1;
    padding: 8px 0;
}
.mv-dn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-family: var(--mv-sans)!important;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--mv-white);
    border-bottom: 1px solid rgba(255,255,255,.06);
    width: 100%;
    text-align: left;
}
.mv-dn-link:hover { color: var(--mv-gold-lt); }
.mv-dn-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform .25s;
    color: rgba(255,255,255,.4);
}
.mv-dn-sub {
    display: none;
    background: rgba(255,255,255,.04);
    padding: 4px 0;
}
.mv-dn-sub.mv-sub-open { display: block; }
.mv-dn-sub li a {
    display: block;
    padding: 11px 28px;
    font-family: var(--mv-sans);
    font-size: 12px;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.04);
    letter-spacing: .04em;
}
.mv-dn-sub li a:hover { color: var(--mv-gold-lt); }

/* Drawer footer */
.mv-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.mv-drawer-cta {
    display: block;
    text-align: center;
    padding: 11px;
    font-family: var(--mv-sans);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--mv-gold);
    color: var(--mv-ink);
    font-weight: 600;
    border-radius: 2px;
}
.mv-drawer-cta-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.75);
}

/* ──────────────────────────────────────────────
   CATEGORY STRIP
────────────────────────────────────────────── */
.mv-cat-strip {
    position: sticky;
    top: var(--mv-header-h);
    z-index: 800;
    background: var(--mv-white);
    border-bottom: 1px solid var(--mv-border);
    height: var(--mv-cat-h);
}
.mv-cat-scroll {
    display: flex;
    align-items: center;
    overflow-x: auto;
    height: 100%;
    padding: 0 12px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.mv-cat-scroll::-webkit-scrollbar { display: none; }

.mv-cat-pill {
    flex-shrink: 0;
    font-family: var(--mv-sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mv-muted);
    padding: 5px 12px;
    border: 1px solid transparent;
    border-radius: 20px;
    white-space: nowrap;
    transition: all .2s;
}
.mv-cat-pill:hover, .mv-cat-pill.mv-cat-active {
    border-color: var(--mv-ink);
    background: var(--mv-ink);
    color: var(--mv-white);
}
 

/* ──────────────────────────────────────────────
   SECTION WRAPPER
────────────────────────────────────────────── */
.mv-section {
    padding: 32px 0 24px;
    background: var(--mv-white);
} 

/* Section header with ornamental lines */
.mv-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    margin-bottom: 22px;
}
.mv-section-rule {
    flex: 1;
    height: 1px;
    background: var(--mv-border);
}
.mv-rule-gold { background: var(--mv-gold); opacity: .6; }
.mv-section-title {
    font-family: var(--mv-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--mv-ink);
    white-space: nowrap;
}
.mv-title-cream { color: var(--mv-cream); }

/* ──────────────────────────────────────────────
   ARTICLE CARDS — Horizontal (image + texte)
────────────────────────────────────────────── */
.mv-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mv-card {
    border-bottom: 1px solid var(--mv-border);
    padding-bottom: 5px;
    padding-top: 5px;
}
.mv-card:last-child { border-bottom: none; }
.mv-card-horiz .mv-card-link {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 110px;
}
.mv-card-thumb {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    padding-right: 16px;
}
.mv-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.mv-card-horiz:hover .mv-card-img { transform: scale(1.06); }

.mv-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
}
.mv-card-eyebrow {
    display: block;
    font-family: var(--mv-sans);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mv-gold);
    margin-bottom: 7px;
}
.mv-card-title {
    font-family: var(--mv-serif);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.28;
    color: var(--mv-ink);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.mv-card-read {
    font-family: var(--mv-sans);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mv-muted);
}

/* ──────────────────────────────────────────────
   "Voir plus" BUTTON
────────────────────────────────────────────── */
.mv-more-wrap {
    padding: 20px 18px 4px;
    display: flex;
    justify-content: center;
}
.mv-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mv-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mv-ink);
    border-bottom: 2px solid var(--mv-ink);
    padding-bottom: 3px;
    transition: color .2s, border-color .2s;
}
.mv-more-btn:hover { color: var(--mv-gold); border-color: var(--mv-gold); }
.mv-more-btn-light {
    color: var(--mv-cream);
    border-color: var(--mv-gold);
}
.mv-more-btn-light:hover { color: var(--mv-gold-lt); }

/* ──────────────────────────────────────────────
   ORNAMENTAL DIVIDER
────────────────────────────────────────────── */
.mv-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background: var(--mv-cream);
    border-top: 1px solid var(--mv-border);
    border-bottom: 1px solid var(--mv-border);
}
.mv-divider-ornament {
    font-size: 13px;
    color: var(--mv-gold);
    letter-spacing: 8px;
}

/* ──────────────────────────────────────────────
   REVUES — Scroll horizontal
────────────────────────────────────────────── */
.mv-revues-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 10px;
}
.mv-revues-scroll-wrap::-webkit-scrollbar { display: none; }

.mv-revues-track {
    display: flex;
    gap: 14px;
    width: max-content;
}

.mv-revue-card {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mv-revue-img-link { display: block; border-radius: 3px; overflow: hidden; }
.mv-revue-cover {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform .35s;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.mv-revue-img-link:hover .mv-revue-cover { transform: scale(1.03); }

.mv-revue-label {
    font-family: var(--mv-sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(245,240,232,.75);
    text-align: center;
}
.mv-revue-btns {
    display: flex;
    gap: 6px;
}
.mv-revue-btn {
    flex: 1;
    text-align: center;
    padding: 7px 4px;
    font-family: var(--mv-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--mv-gold);
    color: var(--mv-ink);
    border-radius: 2px;
    transition: background .2s;
}
.mv-revue-btn:hover { background: var(--mv-gold-lt); }
.mv-revue-btn-ghost {
    background: transparent;
    border: 1px solid #000000;;
    color: #000000!important;
}
.mv-revue-btn-ghost:hover { border-color: var(--mv-gold); color: var(--mv-gold-lt); background: transparent; }

/* ──────────────────────────────────────────────
   LIVRES GRID — 2 colonnes
────────────────────────────────────────────── */
.mv-livres-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--mv-border);
    border-top: 1px solid var(--mv-border);
    border-bottom: 1px solid var(--mv-border);
}
.mv-livre-card {
    background: var(--mv-white);
    overflow: hidden;
}
.mv-livre-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mv-livre-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
}
.mv-livre-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.mv-livre-link:hover .mv-livre-cover { transform: scale(1.05); }
.mv-livre-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--mv-gold);
    color: var(--mv-ink);
    font-family: var(--mv-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 3px 7px;
    border-radius: 1px;
}
.mv-livre-info {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.mv-livre-cat {
    font-family: var(--mv-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mv-gold);
}
.mv-livre-title {
    font-family: var(--mv-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--mv-ink);
    flex: 1;
}
.mv-livre-dl {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mv-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mv-ink);
    border-bottom: 1px solid var(--mv-ink);
    padding-bottom: 2px;
    width: fit-content;
}

/* ──────────────────────────────────────────────
   NEWSLETTER
────────────────────────────────────────────── */
.mv-newsletter { 
    border-top: 1px solid var(--mv-border);
    border-bottom: 1px solid var(--mv-border);
}
.mv-newsletter-inner {
    padding: 40px 24px 44px;
    text-align: center;
}
.mv-newsletter-ornament {
    font-size: 11px;
    letter-spacing: 10px;
    color: var(--mv-gold);
    margin-bottom: 16px;
}
.mv-newsletter-title {
    font-family: var(--mv-serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--mv-ink);
    margin-bottom: 12px;
    letter-spacing: -.01em;
}
.mv-newsletter-sub {
    font-family: var(--mv-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--mv-muted);
    margin-bottom: 26px;
    line-height: 1.5;
}
.mv-newsletter-btn {
    display: inline-block;
    background: var(--mv-gold)!important;
    color: var(--mv-ink)!important;
    font-family: var(--mv-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s;
}
.mv-newsletter-btn:hover { background: #2a2a2a; }

/* ──────────────────────────────────────────────
   MINI FOOTER MOBILE
────────────────────────────────────────────── */
.mv-footer {
    background: var(--mv-ink);
    padding: 32px 20px 48px;
    text-align: center;
}
.mv-footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.mv-footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: .85;
}
.mv-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
    margin-bottom: 20px;
}
.mv-footer-nav a {
    font-family: var(--mv-sans);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245,240,232,.55);
    transition: color .2s;
}
.mv-footer-nav a:hover { color: var(--mv-gold-lt); }
.mv-footer-copy {
    font-family: var(--mv-sans);
    font-size: 10px;
    color: rgba(245,240,232,.3);
    letter-spacing: .06em;
}

/* ──────────────────────────────────────────────
   ANIMATIONS D'ENTRÉE
────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .mv-hero,
    .mv-card,
    .mv-revue-card,
    .mv-livre-card {
        animation: mvFadeUp .5s ease both;
    }
    .mv-card:nth-child(2) { animation-delay: .1s; }
    .mv-revue-card:nth-child(2) { animation-delay: .07s; }
    .mv-revue-card:nth-child(3) { animation-delay: .14s; }
    .mv-revue-card:nth-child(4) { animation-delay: .21s; }
}
@keyframes mvFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────
   S'ASSURER QUE LA COQUILLE MOBILE EST CACHÉE
   sur desktop (sécurité supplémentaire)
────────────────────────────────────────────── */
@media (min-width: 850px) {
    .mv-shell { display: none !important; } 
}


/* Hero — image seule, plus d'overlay */
.mv-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--mv-border);
}
.mv-hero-link {
    display: block;
}
.mv-hero-media {
    width: 60%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    place-self: center;
}
.mv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease;
    display: block;
}
.mv-hero:hover .mv-hero-img {
    transform: scale(1.03);
}

/* Bloc texte centré sous l'image */
.mv-hero-caption {
    padding: 16px 20px 24px;
    text-align: center;
    background: var(--mv-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mv-hero-eyebrow {
    font-family: var(--mv-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mv-gold);
}
.mv-hero-caption a {
    text-decoration: none;
}
.mv-hero-title {
    font-family: var(--mv-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--mv-ink);
    letter-spacing: -.01em;
    margin: 0;
}
.mv-hero-caption a:hover .mv-hero-title {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.mv-hero-sub {
    font-family: var(--mv-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--mv-muted);
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
}
.mv-hero-author {
    font-family: var(--mv-sans);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mv-muted);
    opacity: .7;
}

.mv-social-section {
    padding: 14px 12px 22px;
    background: var(--mv-white);
}

.mv-social-card {
    border: 1px solid #222;
    border-radius: 4px;
    background: #f2f2f2;
    padding: 18px 12px 16px;
    text-align: center;
}

.mv-social-title {
    font-family: var(--mv-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--mv-ink);
    margin-bottom: 16px;
}

.mv-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mv-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    color: #fff;
}
 


.mv-abonnement-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 60px;
    padding: 10px 16px;
    background: #dfe89b;
    border: 1px solid #b8c46a;
    border-radius: 4px;
    color: #1f1f1f;
    text-decoration: none;
    font-family: var(--mv-sans);
    font-weight: 700;
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.mv-abonnement-btn:hover {
    background: #d6e08b;
    color: #111;
}

.mv-abonnement-text {
    flex: 1;
    text-align: center;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
}

.mv-abonnement-icon {
    font-size: 18px;
    flex-shrink: 0;
}


/* Utilisation de ta classe de section sombre */
.mv-section-ink { 
    padding: 40px 0;
}

/* Titre de section avec ligne dorée */
.mv-title-cream {
    color: var(--mv-cream);
}

.mv-rule-gold {
    background: var(--mv-gold);
    opacity: .6;
}

/* Bouton "Voir plus" version claire */
.mv-more-btn-light {
    color: var(--mv-cream);
    border-color: var(--mv-gold);
}

.mv-more-btn-light:hover {
    color: var(--mv-gold-lt);
    border-color: var(--mv-gold-lt);
}

/* Ajuster l'iframe pour qu'il remplisse bien le thumb */
.mv-card-thumb .ratio {
    height: 100%;
    width: 100%;
}

/* Forcer la couleur blanche pour les titres en mode sombre */
.mv-card-horiz .mv-card-title {
    color: var(--mv-ink);
    font-size: 15px;
    margin-bottom: 4px;
}

/* Optionnel : ajouter une bordure sombre entre les vidéos */
.mv-section-ink .mv-card {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}