/* =============================================================================
   ouviepo-watchlist.css — Watchlist de l'art contemporain
   ============================================================================= */

.watchlist-page {
    padding: clamp(20px, 4vw, 40px) 0 40px;
}

/* En-tete d'archive : styles partages dans base.css */

/* Grille 2 colonnes */
.watchlist-wrap {
    columns: 2;
    column-gap: 40px;
}

/* Section par artiste */
.watchlist-artiste {
    margin-bottom: 2.5rem;
    border-top: 3px solid var(--noir);
    padding-top: 1.2rem;
    break-inside: avoid;
}

.watchlist-artiste-nom {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem 0;
}

.watchlist-artiste-nom a {
    color: var(--noir);
    text-decoration: none;
    border-bottom: 2px solid var(--noir);
}

.watchlist-artiste-nom a:hover {
    background: var(--noir);
    color: var(--blanc);
    padding: 0 3px;
}

/* Liste des livres */
.watchlist-livres {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.watchlist-livre {
    margin: 0;
    padding: 0;
}

/* Lien livre */
.watchlist-lien {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gris-clair);
    text-decoration: none;
    color: var(--noir);
    transition: border-color 0.15s, background 0.15s;
}

.watchlist-lien:hover {
    border-color: var(--noir);
    background: var(--blanc);
}

.watchlist-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.watchlist-titre {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.watchlist-cta {
    font-size: 0.78rem;
    color: var(--gris-texte);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.watchlist-lien:hover .watchlist-cta {
    color: var(--noir);
}

/* Mention affiliée */
.watchlist-mention {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--gris-texte);
    font-style: italic;
    text-align: center;
    border-top: 1px solid var(--gris-clair);
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .watchlist-wrap {
        columns: 1;
    }
}

@media (max-width: 600px) {
    .watchlist-lien {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .watchlist-cta {
        width: 100%;
        text-align: right;
    }
}