.listCardVertical {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;

    &:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }
}

.listCardImage {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--modulo-primary) 0%, var(--modulo-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-text-on-primary);
    font-size: 60px;
    position: relative;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.listCardAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--brand-text-on-primary);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.listCardContent {
    padding: var(--padding-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listCardTitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 var(--gap-xs) 0;
}

.listCardSubtitle {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0 0 var(--gap-md) 0;
}

.listCardBody {
    flex: 1;
    margin-bottom: var(--gap-md);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
}

.listCardActions {
    display: flex;
    gap: var(--gap-sm);
    margin-top: auto;
    padding-top: var(--padding-md);
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .listCardImage {
        height: 150px;
        font-size: 50px;
    }

    .listCardAvatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .listCardContent {
        padding: var(--padding-md);
    }
}
