/* =============================================
   ASKIM - Cartes de couples cliquables
   (accueil, page Histoires d'amour, page d'un couple)
   ============================================= */

a.love-story-card,
a.ss-card {
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-user-drag: none;
}

a.love-story-card:hover,
a.ss-card:hover {
    color: inherit;
    text-decoration: none;
}

a.love-story-card:focus-visible,
a.ss-card:focus-visible {
    outline: 3px solid #e74c3c;
    outline-offset: 3px;
}

/* Pastille "Lire leur histoire" */
.story-card-hint {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.92);
    color: #111;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: background 0.2s ease, color 0.2s ease;
    pointer-events: none;
}

.story-card-hint svg {
    width: 13px;
    height: 13px;
    color: #e74c3c;
}

a.love-story-card:hover .story-card-hint,
a.ss-card:hover .story-card-hint {
    background: #e74c3c;
    color: #fff;
}

a.love-story-card:hover .story-card-hint svg,
a.ss-card:hover .story-card-hint svg {
    color: #fff;
}

.love-stories-note {
    margin-top: 1.2rem;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}
