/* ─── Votazioni Archive ─── */

.vfa-votazioni-archive .vfa-vote-card {
    display: flex;
    flex-direction: column;
    background: var(--vfa-white);
    border-radius: var(--vfa-radius);
    padding: 24px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .25s, box-shadow .25s;
}

.vfa-votazioni-archive .vfa-vote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.vfa-votazioni-archive .vfa-vote-card__date {
    font-size: .8rem;
    color: var(--vfa-text-secondary);
}

.vfa-votazioni-archive .vfa-vote-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 16px 0;
    background: var(--vfa-dark);
}

.vfa-votazioni-archive .vfa-vote-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.vfa-votazioni-archive .vfa-vote-card__result {
    font-size: .9rem;
    color: var(--vfa-text-secondary);
    margin-bottom: 16px;
}

.vfa-votazioni-archive .vfa-vote-card__result strong {
    color: var(--vfa-orange-deep);
}

.vfa-votazioni-archive .vfa-vote-card__link {
    margin-top: auto;
    font-size: .85rem;
    font-weight: 500;
    color: var(--vfa-text-secondary);
}

.vfa-votazioni-archive .vfa-vote-card:hover .vfa-vote-card__link {
    color: var(--vfa-orange-deep);
}
