/* ============================================================
 * Emplacement publicitaire (façon carte Letterboxd mobile).
 * Carte sobre, contenue, qui RÉSERVE sa hauteur pour éviter le CLS quand la
 * régie injecte (ou non) son unité. Label "Publicité" honnête.
 * ============================================================ */

.ad-slot {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: var(--space-5) auto;
    background: var(--bg-paper);
    border-radius: var(--radius);
    padding: var(--space-2);
    overflow: hidden;
}

.ad-slot__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: var(--space-2);
}

/* Hauteur réservée = un pavé natif standard. La régie remplace le contenu ;
   tant qu'elle n'est pas branchée, le slot reste réservé mais discret. */
.ad-slot__unit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    overflow: hidden;
}

.ad-slot--banner .ad-slot__unit {
    min-height: 100px;
}
